Renamed domain PathManagement to Path

This commit is contained in:
Kevin Frantz 2019-05-30 16:43:40 +02:00
parent 2e4c105578
commit c5256b5d4e
3 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
<?php <?php
namespace Infinito\Domain\PathManagement; namespace Infinito\Domain\Path;
/** /**
* @todo Be carefull with the case sensivity. Solve this! * @todo Be carefull with the case sensivity. Solve this!
@ -27,7 +27,7 @@ final class NamespacePathMap implements NamespacePathMapInterface
/** /**
* {@inheritdoc} * {@inheritdoc}
* *
* @see \Infinito\Domain\PathManagement\NamespacePathMapInterface::getNamespace() * @see \Infinito\Domain\Path\NamespacePathMapInterface::getNamespace()
*/ */
public function getNamespace(): string public function getNamespace(): string
{ {
@ -37,7 +37,7 @@ final class NamespacePathMap implements NamespacePathMapInterface
/** /**
* {@inheritdoc} * {@inheritdoc}
* *
* @see \Infinito\Domain\PathManagement\NamespacePathMapInterface::getPath() * @see \Infinito\Domain\Path\NamespacePathMapInterface::getPath()
*/ */
public function getPath(): string public function getPath(): string
{ {
@ -47,7 +47,7 @@ final class NamespacePathMap implements NamespacePathMapInterface
/** /**
* {@inheritdoc} * {@inheritdoc}
* *
* @see \Infinito\Domain\PathManagement\NamespacePathMapInterface::setPath() * @see \Infinito\Domain\Path\NamespacePathMapInterface::setPath()
*/ */
public function setPath(string $path): void public function setPath(string $path): void
{ {
@ -57,7 +57,7 @@ final class NamespacePathMap implements NamespacePathMapInterface
/** /**
* {@inheritdoc} * {@inheritdoc}
* *
* @see \Infinito\Domain\PathManagement\NamespacePathMapInterface::setNamespace() * @see \Infinito\Domain\Path\NamespacePathMapInterface::setNamespace()
*/ */
public function setNamespace(string $namespace): void public function setNamespace(string $namespace): void
{ {
@ -68,7 +68,7 @@ final class NamespacePathMap implements NamespacePathMapInterface
* The strtolower function could lead to conflicts in other contextes * The strtolower function could lead to conflicts in other contextes
* {@inheritdoc} * {@inheritdoc}
* *
* @see \Infinito\Domain\PathManagement\NamespacePathMapInterface::setFolderArray() * @see \Infinito\Domain\Path\NamespacePathMapInterface::setFolderArray()
*/ */
public function setFolders(array $folders): void public function setFolders(array $folders): void
{ {
@ -83,7 +83,7 @@ final class NamespacePathMap implements NamespacePathMapInterface
/** /**
* {@inheritdoc} * {@inheritdoc}
* *
* @see \Infinito\Domain\PathManagement\NamespacePathMapInterface::getFolders() * @see \Infinito\Domain\Path\NamespacePathMapInterface::getFolders()
*/ */
public function getFolders(): array public function getFolders(): array
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace Infinito\Domain\PathManagement; namespace Infinito\Domain\Path;
/** /**
* Allows to map a path to an namespace. * Allows to map a path to an namespace.

View File

@ -1,10 +1,10 @@
<?php <?php
namespace tests\Unit\Domain\PathManagement; namespace tests\Unit\Domain\Path;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
use Infinito\Domain\PathManagement\NamespacePathMapInterface; use Infinito\Domain\Path\NamespacePathMapInterface;
use Infinito\Domain\PathManagement\NamespacePathMap; use Infinito\Domain\Path\NamespacePathMap;
/** /**
* @author kevinfrantz * @author kevinfrantz