Skip to content

Commit 638fa16

Browse files
committed
Fix namespaces
1 parent 8a0f318 commit 638fa16

12 files changed

+22
-18
lines changed

src/Business/UuidExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Micro\Plugin\Uuid\Business\Uuid;
3+
namespace Micro\Plugin\Uuid\Business;
44

55
use Ramsey\Uuid\Uuid;
66

src/Business/UuidExtractorFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Micro\Plugin\Uuid\Business\Uuid;
3+
namespace Micro\Plugin\Uuid\Business;
44

55
class UuidExtractorFactory implements UuidExtractorFactoryInterface
66
{

src/Business/UuidExtractorFactoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Micro\Plugin\Uuid\Business\Uuid;
3+
namespace Micro\Plugin\Uuid\Business;
44

55
interface UuidExtractorFactoryInterface
66
{

src/Business/UuidExtractorInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Micro\Plugin\Uuid\Business\Uuid;
3+
namespace Micro\Plugin\Uuid\Business;
44

55
interface UuidExtractorInterface
66
{

src/Business/UuidGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Micro\Plugin\Uuid\Business\Uuid;
3+
namespace Micro\Plugin\Uuid\Business;
44

55
use Ramsey\Uuid\Uuid;
66

src/Business/UuidGeneratorFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Micro\Plugin\Uuid\Business\Uuid;
3+
namespace Micro\Plugin\Uuid\Business;
44

55
class UuidGeneratorFactory implements UuidGeneratorFactoryInterface
66
{

src/Business/UuidGeneratorFactoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Micro\Plugin\Uuid\Business\Uuid;
3+
namespace Micro\Plugin\Uuid\Business;
44

55
interface UuidGeneratorFactoryInterface
66
{

src/Business/UuidGeneratorInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Micro\Plugin\Uuid\Business\Uuid;
3+
namespace Micro\Plugin\Uuid\Business;
44

55
interface UuidGeneratorInterface
66
{

src/UuidFacade.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
namespace Micro\Plugin\Uuid;
44

5-
use Micro\Plugin\Uuid\Business\Uuid\UuidExtractorFactoryInterface;
6-
use Micro\Plugin\Uuid\Business\Uuid\UuidGeneratorFactoryInterface;
5+
6+
7+
use Micro\Plugin\Uuid\Business\UuidExtractorFactoryInterface;
8+
use Micro\Plugin\Uuid\Business\UuidGeneratorFactoryInterface;
79

810
class UuidFacade implements UuidFacadeInterface
911
{

src/UuidFacadeFactory.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
namespace Micro\Plugin\Uuid;
44

55

6-
use Micro\Plugin\Uuid\Business\Uuid\UuidExtractorFactoryInterface;
7-
use Micro\Plugin\Uuid\Business\Uuid\UuidGeneratorFactoryInterface;
6+
use Micro\Plugin\Uuid\Business\UuidExtractorFactoryInterface;
7+
use Micro\Plugin\Uuid\Business\UuidGeneratorFactoryInterface;
88

99
class UuidFacadeFactory implements UuidFacadeFactoryInterface
1010
{
1111
/**
1212
* @param UuidGeneratorFactoryInterface $generatorFactory
13+
* @param UuidExtractorFactoryInterface $extractorFactory
1314
*/
1415
public function __construct(
1516
private UuidGeneratorFactoryInterface $generatorFactory,

0 commit comments

Comments
 (0)