Changed App namespace to Infinito namespace

This commit is contained in:
Kevin Frantz 2019-02-17 14:33:19 +01:00
parent bf5d11a318
commit 493471df5f
424 changed files with 1488 additions and 1500 deletions

View File

@ -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;

View File

@ -55,12 +55,12 @@
}, },
"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" : {
@ -71,18 +71,6 @@
"symfony/polyfill-php70" : "*", "symfony/polyfill-php70" : "*",
"symfony/polyfill-php56" : "*" "symfony/polyfill-php56" : "*"
}, },
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict" : { "conflict" : {
"symfony/symfony" : "*" "symfony/symfony" : "*"
}, },

View File

@ -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

View File

@ -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

View File

@ -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 ] }

View File

@ -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)%"

View File

@ -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

View File

@ -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

View File

@ -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" />

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;

View File

@ -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

View File

@ -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

View File

@ -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
{ {

View File

@ -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
{ {

View File

@ -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

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -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
{ {

View File

@ -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
{ {

View File

@ -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
{ {

View File

@ -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
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -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

View File

@ -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

View File

@ -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
{ {

View File

@ -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
{ {

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -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

View File

@ -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

View File

@ -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
{ {

View File

@ -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
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;

View File

@ -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
{ {

View File

@ -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
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
trait PriorityAttribut trait PriorityAttribut
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
interface PriorityAttributInterface interface PriorityAttributInterface
{ {

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;

View File

@ -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

View File

@ -1,8 +1,8 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use App\Exception\UnvalidValueException; use Infinito\Exception\UnvalidValueException;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -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

View File

@ -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

View File

@ -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
{ {

View File

@ -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
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
trait TextAttribut trait TextAttribut
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
interface TextAttributInterface interface TextAttributInterface
{ {

View File

@ -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

View File

@ -1,8 +1,8 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
use App\Entity\UserInterface; use Infinito\Entity\UserInterface;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Attribut; namespace Infinito\Attribut;
/** /**
* @author kevinfrantz * @author kevinfrantz

View File

@ -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.

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Controller; namespace Infinito\Controller;
use FOS\RestBundle\Controller\AbstractFOSRestController; use FOS\RestBundle\Controller\AbstractFOSRestController;

View File

@ -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.

View File

@ -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;

View File

@ -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;

View File

@ -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.

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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.

View File

@ -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