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