Renamed domain MapManagement to Map

This commit is contained in:
Kevin Frantz 2019-05-30 16:20:42 +02:00
parent fd4093f270
commit a5801ec6e8
7 changed files with 8 additions and 8 deletions

View File

@ -4,7 +4,7 @@ namespace Infinito\Domain\Layer;
use Infinito\DBAL\Types\Meta\Right\LayerType;
use Infinito\DBAL\Types\ActionType;
use Infinito\Domain\MapManagement\AbstractMap;
use Infinito\Domain\Map\AbstractMap;
/**
* @author kevinfrantz

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\MapManagement;
namespace Infinito\Domain\Map;
/**
* This class offers the basic functions for managing an 2 dimensional map.

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\MapManagement;
namespace Infinito\Domain\Map;
use Infinito\DBAL\Types\ActionType;
use Symfony\Component\HttpFoundation\Request;

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\MapManagement;
namespace Infinito\Domain\Map;
/**
* This class offers a map for ActionTypes to HttpMethods.

View File

@ -1,6 +1,6 @@
<?php
namespace Infinito\Domain\MapManagement;
namespace Infinito\Domain\Map;
/**
* @author kevinfrantz

View File

@ -8,7 +8,7 @@ use Infinito\DBAL\Types\RESTResponseType;
use Symfony\Component\HttpFoundation\Request;
use Infinito\Domain\Layer\LayerActionMap;
use Infinito\DBAL\Types\ActionType;
use Infinito\Domain\MapManagement\ActionHttpMethodMap;
use Infinito\Domain\Map\ActionHttpMethodMap;
use Symfony\Component\HttpFoundation\Response;
/**

View File

@ -1,10 +1,10 @@
<?php
namespace tests\Unit\Domain\MapManagement;
namespace tests\Unit\Domain\Map;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Request;
use Infinito\Domain\MapManagement\ActionHttpMethodMap;
use Infinito\Domain\Map\ActionHttpMethodMap;
use Infinito\DBAL\Types\ActionType;
/**