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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Controller;
namespace Infinito\Controller;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\RedirectResponse;