mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-18 19:09:20 +02:00
Changed App namespace to Infinito namespace
This commit is contained in:
parent
bf5d11a318
commit
493471df5f
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env php
|
#!/usr/bin/env php
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
use App\Kernel;
|
use Infinito\Kernel;
|
||||||
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
||||||
use Symfony\Component\Console\Input\ArgvInput;
|
use Symfony\Component\Console\Input\ArgvInput;
|
||||||
use Symfony\Component\Debug\Debug;
|
use Symfony\Component\Debug\Debug;
|
||||||
|
@ -1,95 +1,83 @@
|
|||||||
{
|
{
|
||||||
"type": "project",
|
"type" : "project",
|
||||||
"license": "AGPL-3.0-or-later",
|
"license" : "AGPL-3.0-or-later",
|
||||||
"require": {
|
"require" : {
|
||||||
"php": "^7.1.3",
|
"php" : "^7.1.3",
|
||||||
"ext-ctype": "*",
|
"ext-ctype" : "*",
|
||||||
"ext-iconv": "*",
|
"ext-iconv" : "*",
|
||||||
"fresh/doctrine-enum-bundle": "~6.2",
|
"fresh/doctrine-enum-bundle" : "~6.2",
|
||||||
"friendsofsymfony/rest-bundle": "^2.4",
|
"friendsofsymfony/rest-bundle" : "^2.4",
|
||||||
"friendsofsymfony/user-bundle": "~2.1",
|
"friendsofsymfony/user-bundle" : "~2.1",
|
||||||
"haydenpierce/class-finder": "^0.2.0",
|
"haydenpierce/class-finder" : "^0.2.0",
|
||||||
"jms/serializer-bundle": "^2.4",
|
"jms/serializer-bundle" : "^2.4",
|
||||||
"knplabs/knp-menu-bundle": "^2.0",
|
"knplabs/knp-menu-bundle" : "^2.0",
|
||||||
"sensio/framework-extra-bundle": "^5.1",
|
"sensio/framework-extra-bundle" : "^5.1",
|
||||||
"simplethings/entity-audit-bundle": "^1.0",
|
"simplethings/entity-audit-bundle" : "^1.0",
|
||||||
"symfony/asset": "*",
|
"symfony/asset" : "*",
|
||||||
"symfony/console": "*",
|
"symfony/console" : "*",
|
||||||
"symfony/expression-language": "*",
|
"symfony/expression-language" : "*",
|
||||||
"symfony/flex": "^1.1",
|
"symfony/flex" : "^1.1",
|
||||||
"symfony/form": "*",
|
"symfony/form" : "*",
|
||||||
"symfony/framework-bundle": "*",
|
"symfony/framework-bundle" : "*",
|
||||||
"symfony/monolog-bundle": "^3.1",
|
"symfony/monolog-bundle" : "^3.1",
|
||||||
"symfony/orm-pack": "*",
|
"symfony/orm-pack" : "*",
|
||||||
"symfony/process": "*",
|
"symfony/process" : "*",
|
||||||
"symfony/security-bundle": "*",
|
"symfony/security-bundle" : "*",
|
||||||
"symfony/serializer": "*",
|
"symfony/serializer" : "*",
|
||||||
"symfony/serializer-pack": "*",
|
"symfony/serializer-pack" : "*",
|
||||||
"symfony/swiftmailer-bundle": "^3.1",
|
"symfony/swiftmailer-bundle" : "^3.1",
|
||||||
"symfony/translation": "*",
|
"symfony/translation" : "*",
|
||||||
"symfony/twig-bundle": "*",
|
"symfony/twig-bundle" : "*",
|
||||||
"symfony/validator": "*",
|
"symfony/validator" : "*",
|
||||||
"symfony/web-link": "*",
|
"symfony/web-link" : "*",
|
||||||
"symfony/yaml": "*"
|
"symfony/yaml" : "*"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev" : {
|
||||||
"doctrine/doctrine-fixtures-bundle": "^3.0",
|
"doctrine/doctrine-fixtures-bundle" : "^3.0",
|
||||||
"friendsofphp/php-cs-fixer": "^2.13",
|
"friendsofphp/php-cs-fixer" : "^2.13",
|
||||||
"phpunit/phpunit": "^7",
|
"phpunit/phpunit" : "^7",
|
||||||
"symfony/browser-kit": "*",
|
"symfony/browser-kit" : "*",
|
||||||
"symfony/css-selector": "*",
|
"symfony/css-selector" : "*",
|
||||||
"symfony/debug-pack": "*",
|
"symfony/debug-pack" : "*",
|
||||||
"symfony/dotenv": "*",
|
"symfony/dotenv" : "*",
|
||||||
"symfony/maker-bundle": "^1.0",
|
"symfony/maker-bundle" : "^1.0",
|
||||||
"symfony/phpunit-bridge": "*",
|
"symfony/phpunit-bridge" : "*",
|
||||||
"symfony/profiler-pack": "*",
|
"symfony/profiler-pack" : "*",
|
||||||
"symfony/test-pack": "*",
|
"symfony/test-pack" : "*",
|
||||||
"symfony/var-dumper": "*",
|
"symfony/var-dumper" : "*",
|
||||||
"symfony/web-server-bundle": "*"
|
"symfony/web-server-bundle" : "*"
|
||||||
},
|
},
|
||||||
"config": {
|
"config" : {
|
||||||
"preferred-install": {
|
"preferred-install" : {
|
||||||
"*": "dist"
|
"*" : "dist"
|
||||||
},
|
},
|
||||||
"sort-packages": true
|
"sort-packages" : true
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload" : {
|
||||||
"psr-4": {
|
"psr-4" : {
|
||||||
"App\\": "src/"
|
"Infinito\\" : "src/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload-dev": {
|
"autoload-dev" : {
|
||||||
"psr-4": {
|
"psr-4" : {
|
||||||
"App\\Tests\\": "tests/"
|
"Tests\\" : "tests/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"replace": {
|
"replace" : {
|
||||||
"paragonie/random_compat": "*",
|
"paragonie/random_compat" : "*",
|
||||||
"symfony/polyfill-ctype": "*",
|
"symfony/polyfill-ctype" : "*",
|
||||||
"symfony/polyfill-iconv": "*",
|
"symfony/polyfill-iconv" : "*",
|
||||||
"symfony/polyfill-php71": "*",
|
"symfony/polyfill-php71" : "*",
|
||||||
"symfony/polyfill-php70": "*",
|
"symfony/polyfill-php70" : "*",
|
||||||
"symfony/polyfill-php56": "*"
|
"symfony/polyfill-php56" : "*"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"conflict" : {
|
||||||
"auto-scripts": {
|
"symfony/symfony" : "*"
|
||||||
"cache:clear": "symfony-cmd",
|
},
|
||||||
"assets:install %PUBLIC_DIR%": "symfony-cmd"
|
"extra" : {
|
||||||
},
|
"symfony" : {
|
||||||
"post-install-cmd": [
|
"allow-contrib" : false,
|
||||||
"@auto-scripts"
|
"require" : "4.1.*"
|
||||||
],
|
}
|
||||||
"post-update-cmd": [
|
}
|
||||||
"@auto-scripts"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"conflict": {
|
|
||||||
"symfony/symfony": "*"
|
|
||||||
},
|
|
||||||
"extra": {
|
|
||||||
"symfony": {
|
|
||||||
"allow-contrib": false,
|
|
||||||
"require": "4.1.*"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
@ -16,8 +16,8 @@ doctrine:
|
|||||||
collate: utf8mb4_unicode_ci
|
collate: utf8mb4_unicode_ci
|
||||||
url: '%env(resolve:DATABASE_URL)%'
|
url: '%env(resolve:DATABASE_URL)%'
|
||||||
types:
|
types:
|
||||||
CRUDType: App\DBAL\Types\Meta\Right\CRUDType
|
CRUDType: Infinito\DBAL\Types\Meta\Right\CRUDType
|
||||||
LayerType: App\DBAL\Types\Meta\Right\LayerType
|
LayerType: Infinito\DBAL\Types\Meta\Right\LayerType
|
||||||
orm:
|
orm:
|
||||||
auto_generate_proxy_classes: '%kernel.debug%'
|
auto_generate_proxy_classes: '%kernel.debug%'
|
||||||
naming_strategy: doctrine.orm.naming_strategy.underscore
|
naming_strategy: doctrine.orm.naming_strategy.underscore
|
||||||
@ -27,7 +27,7 @@ doctrine:
|
|||||||
is_bundle: false
|
is_bundle: false
|
||||||
type: annotation
|
type: annotation
|
||||||
dir: '%kernel.project_dir%/src/Entity'
|
dir: '%kernel.project_dir%/src/Entity'
|
||||||
prefix: 'App\Entity'
|
prefix: 'Infinito\Entity'
|
||||||
alias: App
|
alias: App
|
||||||
#resolve_target_entities:
|
#resolve_target_entities:
|
||||||
# App\Domain\RequestManagement\Right\RequestedRightServiceInterface: App\Domain\RequestManagement\Right\RequestedRightService2
|
# Infinito\Domain\RequestManagement\Right\RequestedRightServiceInterface: Infinito\Domain\RequestManagement\Right\RequestedRightService2
|
@ -1,5 +1,5 @@
|
|||||||
doctrine_migrations:
|
doctrine_migrations:
|
||||||
dir_name: '%kernel.project_dir%/src/Migrations'
|
dir_name: '%kernel.project_dir%/src/Migrations'
|
||||||
# namespace is arbitrary but should be different from App\Migrations
|
# namespace is arbitrary but should be different from Infinito\Migrations
|
||||||
# as migrations classes should NOT be autoloaded
|
# as migrations classes should NOT be autoloaded
|
||||||
namespace: DoctrineMigrations
|
namespace: DoctrineMigrations
|
||||||
|
@ -7,9 +7,9 @@ fos_rest: ~
|
|||||||
# view_response_listener: true
|
# view_response_listener: true
|
||||||
# exception:
|
# exception:
|
||||||
# codes:
|
# codes:
|
||||||
# App\Exception\MyException: 403
|
# Infinito\Exception\MyException: 403
|
||||||
# messages:
|
# messages:
|
||||||
# App\Exception\MyException: Forbidden area.
|
# Infinito\Exception\MyException: Forbidden area.
|
||||||
# format_listener:
|
# format_listener:
|
||||||
# rules:
|
# rules:
|
||||||
# - { path: ^/api, prefer_extension: true, fallback_format: json, priorities: [ json, html ] }
|
# - { path: ^/api, prefer_extension: true, fallback_format: json, priorities: [ json, html ] }
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
fos_user:
|
fos_user:
|
||||||
db_driver: orm # other valid values are 'mongodb' and 'couchdb'
|
db_driver: orm # other valid values are 'mongodb' and 'couchdb'
|
||||||
firewall_name: main
|
firewall_name: main
|
||||||
user_class: App\Entity\User
|
user_class: Infinito\Entity\User
|
||||||
from_email:
|
from_email:
|
||||||
address: "%env(MAILER_SENDER)%"
|
address: "%env(MAILER_SENDER)%"
|
||||||
sender_name: "%env(MAILER_USER)%"
|
sender_name: "%env(MAILER_USER)%"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
simple_things_entity_audit:
|
simple_things_entity_audit:
|
||||||
audited_entities:
|
audited_entities:
|
||||||
#- App\Entity\AbstractSource
|
#- Infinito\Entity\AbstractSource
|
||||||
- App\Entity\NameSource
|
- Infinito\Entity\NameSource
|
||||||
- App\Entity\UserSource
|
- Infinito\Entity\UserSource
|
||||||
|
@ -14,7 +14,7 @@ services:
|
|||||||
# fetching services directly from the container via $container->get() won't work.
|
# fetching services directly from the container via $container->get() won't work.
|
||||||
# The best practice is to be explicit about your dependencies anyway.
|
# The best practice is to be explicit about your dependencies anyway.
|
||||||
app.menu_builder:
|
app.menu_builder:
|
||||||
class: App\Menu\Menu
|
class: Infinito\Menu\Menu
|
||||||
app.menu.usertopbar:
|
app.menu.usertopbar:
|
||||||
class: Knp\Menu\MenuItem
|
class: Knp\Menu\MenuItem
|
||||||
factory: ['@app.menu_builder', 'userTopbar']
|
factory: ['@app.menu_builder', 'userTopbar']
|
||||||
@ -32,12 +32,12 @@ services:
|
|||||||
- { name: knp_menu.menu, alias: nodeSubbar }
|
- { name: knp_menu.menu, alias: nodeSubbar }
|
||||||
# makes classes in src/ available to be used as services
|
# makes classes in src/ available to be used as services
|
||||||
# this creates a service per class whose id is the fully-qualified class name
|
# this creates a service per class whose id is the fully-qualified class name
|
||||||
App\:
|
Infinito\:
|
||||||
resource: '../src/*'
|
resource: '../src/*'
|
||||||
exclude: '../src/{DependencyInjection,Entity,Migrations,Tests,Exception,Kernel.php}'
|
exclude: '../src/{DependencyInjection,Entity,Migrations,Tests,Exception,Kernel.php}'
|
||||||
# controllers are imported separately to make sure services can be injected
|
# controllers are imported separately to make sure services can be injected
|
||||||
# as action arguments even if you don't extend any base controller class
|
# as action arguments even if you don't extend any base controller class
|
||||||
App\Controller\:
|
Infinito\Controller\:
|
||||||
resource: '../src/Controller'
|
resource: '../src/Controller'
|
||||||
tags: ['controller.service_arguments']
|
tags: ['controller.service_arguments']
|
||||||
|
|
||||||
@ -45,22 +45,22 @@ services:
|
|||||||
# please note that last definitions always *replace* previous ones
|
# please note that last definitions always *replace* previous ones
|
||||||
|
|
||||||
# Needed for integration tests
|
# Needed for integration tests
|
||||||
App\Domain\RequestManagement\Entity\RequestedEntityService:
|
Infinito\Domain\RequestManagement\Entity\RequestedEntityService:
|
||||||
public: true
|
public: true
|
||||||
App\Domain\RequestManagement\Right\RequestedRightService:
|
Infinito\Domain\RequestManagement\Right\RequestedRightService:
|
||||||
public: true
|
public: true
|
||||||
App\Domain\UserManagement\UserSourceDirectorService:
|
Infinito\Domain\UserManagement\UserSourceDirectorService:
|
||||||
public: true
|
public: true
|
||||||
App\Domain\RequestManagement\User\RequestedUserService:
|
Infinito\Domain\RequestManagement\User\RequestedUserService:
|
||||||
public: true
|
public: true
|
||||||
App\Domain\RequestManagement\Action\RequestedActionService:
|
Infinito\Domain\RequestManagement\Action\RequestedActionService:
|
||||||
public: true
|
public: true
|
||||||
App\Domain\FormManagement\RequestedActionFormBuilderService:
|
Infinito\Domain\FormManagement\RequestedActionFormBuilderService:
|
||||||
public: true
|
public: true
|
||||||
App\Domain\SecureManagement\SecureRequestedRightCheckerService:
|
Infinito\Domain\SecureManagement\SecureRequestedRightCheckerService:
|
||||||
public: true
|
public: true
|
||||||
App\Domain\ActionManagement\ActionService:
|
Infinito\Domain\ActionManagement\ActionService:
|
||||||
public: true
|
public: true
|
||||||
App\Domain\ActionManagement\ActionHandlerService:
|
Infinito\Domain\ActionManagement\ActionHandlerService:
|
||||||
public: true
|
public: true
|
||||||
|
|
@ -9,7 +9,7 @@
|
|||||||
>
|
>
|
||||||
<php>
|
<php>
|
||||||
<ini name="error_reporting" value="-1" />
|
<ini name="error_reporting" value="-1" />
|
||||||
<env name="KERNEL_CLASS" value="App\Kernel" />
|
<env name="KERNEL_CLASS" value="Infinito\Kernel" />
|
||||||
<env name="APP_ENV" value="test" />
|
<env name="APP_ENV" value="test" />
|
||||||
<env name="APP_DEBUG" value="1" />
|
<env name="APP_DEBUG" value="1" />
|
||||||
<env name="APP_SECRET" value="s$cretf0rt3st" />
|
<env name="APP_SECRET" value="s$cretf0rt3st" />
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
use App\Kernel;
|
use Infinito\Kernel;
|
||||||
use Symfony\Component\Debug\Debug;
|
use Symfony\Component\Debug\Debug;
|
||||||
use Symfony\Component\Dotenv\Dotenv;
|
use Symfony\Component\Dotenv\Dotenv;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Exception\NoValidChoiceException;
|
use Infinito\Exception\NoValidChoiceException;
|
||||||
use App\DBAL\Types\ActionType;
|
use Infinito\DBAL\Types\ActionType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\DBAL\Types\ActionType;
|
use Infinito\DBAL\Types\ActionType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Logic\Operation\OperationInterface;
|
use Infinito\Logic\Operation\OperationInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Logic\Operation\OperationInterface;
|
use Infinito\Logic\Operation\OperationInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\Relation\Parent\CreatorRelationInterface;
|
use Infinito\Entity\Meta\Relation\Parent\CreatorRelationInterface;
|
||||||
|
|
||||||
trait CreatorRelationAttribut
|
trait CreatorRelationAttribut
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\Relation\Parent\CreatorRelationInterface;
|
use Infinito\Entity\Meta\Relation\Parent\CreatorRelationInterface;
|
||||||
|
|
||||||
interface CreatorRelationAttributInterface
|
interface CreatorRelationAttributInterface
|
||||||
{
|
{
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Exception\NoValidChoiceException;
|
use Infinito\Exception\NoValidChoiceException;
|
||||||
use App\DBAL\Types\Meta\Right\CRUDType;
|
use Infinito\DBAL\Types\Meta\Right\CRUDType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\Primitive\Name\FirstNameSourceInterface;
|
use Infinito\Entity\Source\Primitive\Name\FirstNameSourceInterface;
|
||||||
|
|
||||||
trait FirstNameSourceAttribut
|
trait FirstNameSourceAttribut
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\Primitive\Name\FirstNameSourceInterface;
|
use Infinito\Entity\Source\Primitive\Name\FirstNameSourceInterface;
|
||||||
|
|
||||||
interface FirstNameSourceAttributInterface
|
interface FirstNameSourceAttributInterface
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\Complex\FullPersonNameSourceInterface;
|
use Infinito\Entity\Source\Complex\FullPersonNameSourceInterface;
|
||||||
|
|
||||||
trait FullPersonNameSourceAttribut
|
trait FullPersonNameSourceAttribut
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\Complex\FullPersonNameSourceInterface;
|
use Infinito\Entity\Source\Complex\FullPersonNameSourceInterface;
|
||||||
|
|
||||||
interface FullPersonNameSourceAttributInterface
|
interface FullPersonNameSourceAttributInterface
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\LawInterface;
|
use Infinito\Entity\Meta\LawInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\LawInterface;
|
use Infinito\Entity\Meta\LawInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\DBAL\Types\Meta\Right\LayerType;
|
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
||||||
use App\Exception\NoValidChoiceException;
|
use Infinito\Exception\NoValidChoiceException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\Relation\Member\MemberRelationInterface;
|
use Infinito\Entity\Meta\Relation\Member\MemberRelationInterface;
|
||||||
|
|
||||||
trait MemberRelationAttribut
|
trait MemberRelationAttribut
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\Relation\Member\MemberRelationInterface;
|
use Infinito\Entity\Meta\Relation\Member\MemberRelationInterface;
|
||||||
|
|
||||||
interface MemberRelationAttributInterface
|
interface MemberRelationAttributInterface
|
||||||
{
|
{
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
use App\Entity\Meta\Relation\Member\MemberRelationInterface;
|
use Infinito\Entity\Meta\Relation\Member\MemberRelationInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
use App\Entity\Meta\Relation\Member\MemberRelationInterface;
|
use Infinito\Entity\Meta\Relation\Member\MemberRelationInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
use App\Entity\Meta\Relation\Member\MemberRelationInterface;
|
use Infinito\Entity\Meta\Relation\Member\MemberRelationInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
use App\Entity\Meta\Relation\Member\MemberRelationInterface;
|
use Infinito\Entity\Meta\Relation\Member\MemberRelationInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\Primitive\Name\NameSourceInterface;
|
use Infinito\Entity\Source\Primitive\Name\NameSourceInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\Primitive\Name\NameSourceInterface;
|
use Infinito\Entity\Source\Primitive\Name\NameSourceInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\Relation\Parent\ParentRelationInterface;
|
use Infinito\Entity\Meta\Relation\Parent\ParentRelationInterface;
|
||||||
|
|
||||||
trait ParentRelationAttribut
|
trait ParentRelationAttribut
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\Relation\Parent\ParentRelationInterface;
|
use Infinito\Entity\Meta\Relation\Parent\ParentRelationInterface;
|
||||||
|
|
||||||
interface ParentRelationAttributInterface
|
interface ParentRelationAttributInterface
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\Complex\PersonIdentitySourceInterface;
|
use Infinito\Entity\Source\Complex\PersonIdentitySourceInterface;
|
||||||
|
|
||||||
trait PersonIdentitySourceAttribut
|
trait PersonIdentitySourceAttribut
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\Complex\PersonIdentitySourceInterface;
|
use Infinito\Entity\Source\Complex\PersonIdentitySourceInterface;
|
||||||
|
|
||||||
interface PersonIdentitySourceAttributInterface
|
interface PersonIdentitySourceAttributInterface
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
trait PriorityAttribut
|
trait PriorityAttribut
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
interface PriorityAttributInterface
|
interface PriorityAttributInterface
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\SourceInterface;
|
use Infinito\Entity\Source\SourceInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\SourceInterface;
|
use Infinito\Entity\Source\SourceInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\Relation\RelationInterface;
|
use Infinito\Entity\Meta\Relation\RelationInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\Relation\RelationInterface;
|
use Infinito\Entity\Meta\Relation\RelationInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Domain\RequestManagement\Entity\RequestedEntityInterface;
|
use Infinito\Domain\RequestManagement\Entity\RequestedEntityInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Domain\RequestManagement\Entity\RequestedEntityInterface;
|
use Infinito\Domain\RequestManagement\Entity\RequestedEntityInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Domain\RequestManagement\Right\RequestedRightInterface;
|
use Infinito\Domain\RequestManagement\Right\RequestedRightInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Domain\RequestManagement\Right\RequestedRightInterface;
|
use Infinito\Domain\RequestManagement\Right\RequestedRightInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\RightInterface;
|
use Infinito\Entity\Meta\RightInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Meta\RightInterface;
|
use Infinito\Entity\Meta\RightInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use Doctrine\Common\Collections\Collection;
|
use Doctrine\Common\Collections\Collection;
|
||||||
use App\Entity\Meta\RightInterface;
|
use Infinito\Entity\Meta\RightInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Exception\UnvalidValueException;
|
use Infinito\Exception\UnvalidValueException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\SourceInterface;
|
use Infinito\Entity\Source\SourceInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\SourceInterface;
|
use Infinito\Entity\Source\SourceInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\Primitive\Name\SurnameSourceInterface;
|
use Infinito\Entity\Source\Primitive\Name\SurnameSourceInterface;
|
||||||
|
|
||||||
trait SurnameSourceAttribut
|
trait SurnameSourceAttribut
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\Source\Primitive\Name\SurnameSourceInterface;
|
use Infinito\Entity\Source\Primitive\Name\SurnameSourceInterface;
|
||||||
|
|
||||||
interface SurnameSourceAttributInterface
|
interface SurnameSourceAttributInterface
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
trait TextAttribut
|
trait TextAttribut
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
interface TextAttributInterface
|
interface TextAttributInterface
|
||||||
{
|
{
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\User;
|
use Infinito\Entity\User;
|
||||||
use App\Entity\UserInterface;
|
use Infinito\Entity\UserInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
use App\Entity\UserInterface;
|
use Infinito\Entity\UserInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Attribut;
|
namespace Infinito\Attribut;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Entities which implement this interface can lock stuff on an optimistic base.
|
* Entities which implement this interface can lock stuff on an optimistic base.
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controller\API;
|
namespace Infinito\Controller\API;
|
||||||
|
|
||||||
use App\Controller\AbstractController;
|
use Infinito\Controller\AbstractController;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controller\API\Meta;
|
namespace Infinito\Controller\API\Meta;
|
||||||
|
|
||||||
use App\Controller\API\AbstractAPIController;
|
use Infinito\Controller\API\AbstractAPIController;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controller\API\Meta;
|
namespace Infinito\Controller\API\Meta;
|
||||||
|
|
||||||
use App\Controller\API\AbstractAPIController;
|
use Infinito\Controller\API\AbstractAPIController;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controller\API\Meta;
|
namespace Infinito\Controller\API\Meta;
|
||||||
|
|
||||||
use App\Controller\API\AbstractAPIController;
|
use Infinito\Controller\API\AbstractAPIController;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controller\API\Meta;
|
namespace Infinito\Controller\API\Meta;
|
||||||
|
|
||||||
use App\Controller\API\AbstractAPIController;
|
use Infinito\Controller\API\AbstractAPIController;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controller\API\Source;
|
namespace Infinito\Controller\API\Source;
|
||||||
|
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
use Symfony\Component\Routing\Annotation\Route;
|
use Symfony\Component\Routing\Annotation\Route;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use App\Controller\API\AbstractAPIController;
|
use Infinito\Controller\API\AbstractAPIController;
|
||||||
use App\Domain\RequestManagement\Action\RequestedActionServiceInterface;
|
use Infinito\Domain\RequestManagement\Action\RequestedActionServiceInterface;
|
||||||
use App\Domain\MVCManagement\MVCRoutineServiceInterface;
|
use Infinito\Domain\MVCManagement\MVCRoutineServiceInterface;
|
||||||
use App\DBAL\Types\ActionType;
|
use Infinito\DBAL\Types\ActionType;
|
||||||
use App\DBAL\Types\Meta\Right\LayerType;
|
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
@ -25,7 +25,7 @@ class SourceApiController extends AbstractAPIController
|
|||||||
* )
|
* )
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \App\Controller\API\AbstractAPIController::read()
|
* @see \Infinito\Controller\API\AbstractAPIController::read()
|
||||||
*/
|
*/
|
||||||
public function read(MVCRoutineServiceInterface $mvcRoutineService, RequestedActionServiceInterface $requestedActionService, $identifier): Response
|
public function read(MVCRoutineServiceInterface $mvcRoutineService, RequestedActionServiceInterface $requestedActionService, $identifier): Response
|
||||||
{
|
{
|
||||||
@ -44,7 +44,7 @@ class SourceApiController extends AbstractAPIController
|
|||||||
* )
|
* )
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \App\Controller\API\AbstractAPIController::update()
|
* @see \Infinito\Controller\API\AbstractAPIController::update()
|
||||||
*/
|
*/
|
||||||
public function update(Request $request, $identifier): Response
|
public function update(Request $request, $identifier): Response
|
||||||
{
|
{
|
||||||
@ -57,7 +57,7 @@ class SourceApiController extends AbstractAPIController
|
|||||||
* )
|
* )
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \App\Controller\API\AbstractAPIController::list()
|
* @see \Infinito\Controller\API\AbstractAPIController::list()
|
||||||
*/
|
*/
|
||||||
public function list(Request $request): Response
|
public function list(Request $request): Response
|
||||||
{
|
{
|
||||||
@ -70,7 +70,7 @@ class SourceApiController extends AbstractAPIController
|
|||||||
* )
|
* )
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*
|
*
|
||||||
* @see \App\Controller\API\AbstractAPIController::delete()
|
* @see \Infinito\Controller\API\AbstractAPIController::delete()
|
||||||
*/
|
*/
|
||||||
public function delete(Request $request, $identifier): Response
|
public function delete(Request $request, $identifier): Response
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controller;
|
namespace Infinito\Controller;
|
||||||
|
|
||||||
use FOS\RestBundle\Controller\AbstractFOSRestController;
|
use FOS\RestBundle\Controller\AbstractFOSRestController;
|
||||||
|
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controller;
|
namespace Infinito\Controller;
|
||||||
|
|
||||||
use Symfony\Component\Routing\Annotation\Route;
|
use Symfony\Component\Routing\Annotation\Route;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
use App\Domain\MVCManagement\MVCRoutineServiceInterface;
|
use Infinito\Domain\MVCManagement\MVCRoutineServiceInterface;
|
||||||
use App\Domain\RequestManagement\Action\RequestedActionServiceInterface;
|
use Infinito\Domain\RequestManagement\Action\RequestedActionServiceInterface;
|
||||||
use App\DBAL\Types\ActionType;
|
use Infinito\DBAL\Types\ActionType;
|
||||||
use App\Domain\FixtureManagement\FixtureSource\ImpressumFixtureSource;
|
use Infinito\Domain\FixtureManagement\FixtureSource\ImpressumFixtureSource;
|
||||||
use App\DBAL\Types\Meta\Right\LayerType;
|
use Infinito\DBAL\Types\Meta\Right\LayerType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This controller offers the standart routes for the template.
|
* This controller offers the standart routes for the template.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controller;
|
namespace Infinito\Controller;
|
||||||
|
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controller;
|
namespace Infinito\Controller;
|
||||||
|
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
use Symfony\Component\HttpFoundation\RedirectResponse;
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\DBAL\Types;
|
namespace Infinito\DBAL\Types;
|
||||||
|
|
||||||
use App\DBAL\Types\Meta\Right\CRUDType;
|
use Infinito\DBAL\Types\Meta\Right\CRUDType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Containes all actions which can be done.
|
* Containes all actions which can be done.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\DBAL\Types;
|
namespace Infinito\DBAL\Types;
|
||||||
|
|
||||||
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\DBAL\Types;
|
namespace Infinito\DBAL\Types;
|
||||||
|
|
||||||
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\DBAL\Types\Meta\Right;
|
namespace Infinito\DBAL\Types\Meta\Right;
|
||||||
|
|
||||||
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\DBAL\Types\Meta\Right;
|
namespace Infinito\DBAL\Types\Meta\Right;
|
||||||
|
|
||||||
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\DBAL\Types;
|
namespace Infinito\DBAL\Types;
|
||||||
|
|
||||||
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\DBAL\Types;
|
namespace Infinito\DBAL\Types;
|
||||||
|
|
||||||
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
use Fresh\DoctrineEnumBundle\DBAL\Types\AbstractEnumType;
|
||||||
use App\Domain\FixtureManagement\FixtureSource\ImpressumFixtureSource;
|
use Infinito\Domain\FixtureManagement\FixtureSource\ImpressumFixtureSource;
|
||||||
use App\Domain\FixtureManagement\FixtureSource\GuestUserFixtureSource;
|
use Infinito\Domain\FixtureManagement\FixtureSource\GuestUserFixtureSource;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Containes the system slugs.
|
* Containes the system slugs.
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\DataFixtures;
|
namespace Infinito\DataFixtures;
|
||||||
|
|
||||||
use Doctrine\Bundle\FixturesBundle\Fixture;
|
use Doctrine\Bundle\FixturesBundle\Fixture;
|
||||||
use Doctrine\Common\Persistence\ObjectManager;
|
use Doctrine\Common\Persistence\ObjectManager;
|
||||||
use App\Entity\User;
|
use Infinito\Entity\User;
|
||||||
use FOS\UserBundle\Doctrine\UserManager;
|
use FOS\UserBundle\Doctrine\UserManager;
|
||||||
use App\Entity\UserInterface;
|
use Infinito\Entity\UserInterface;
|
||||||
use Symfony\Component\DependencyInjection\ContainerInterface;
|
use Symfony\Component\DependencyInjection\ContainerInterface;
|
||||||
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
|
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user