Skip to content
This repository was archived by the owner on Feb 6, 2020. It is now read-only.

Commit fae349c

Browse files
committed
Alphabetical order of use statements
1 parent 591a00d commit fae349c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

benchmarks/BenchAsset/AbstractFactoryFoo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
namespace ZendBench\ServiceManager\BenchAsset;
99

10-
use Zend\ServiceManager\Factory\AbstractFactoryInterface;
1110
use Interop\Container\ContainerInterface;
11+
use Zend\ServiceManager\Factory\AbstractFactoryInterface;
1212

1313
class AbstractFactoryFoo implements AbstractFactoryInterface
1414
{

benchmarks/BenchAsset/FactoryFoo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
namespace ZendBench\ServiceManager\BenchAsset;
99

10-
use Zend\ServiceManager\Factory\FactoryInterface;
1110
use Interop\Container\ContainerInterface;
11+
use Zend\ServiceManager\Factory\FactoryInterface;
1212

1313
class FactoryFoo implements FactoryInterface
1414
{

src/ServiceLocatorInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
namespace Zend\ServiceManager;
99

10-
use Psr\Container\ContainerInterface as PsrContainerInterface;
11-
use Psr\Container\ContainerExceptionInterface;
1210
use Interop\Container\ContainerInterface as InteropContainerInterface;
11+
use Psr\Container\ContainerExceptionInterface;
12+
use Psr\Container\ContainerInterface as PsrContainerInterface;
1313

1414
/**
1515
* Interface for service locator

test/CommonServiceLocatorBehaviorsTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
use Zend\ServiceManager\ServiceLocatorInterface;
2222
use ZendTest\ServiceManager\TestAsset\CallTimesAbstractFactory;
2323
use ZendTest\ServiceManager\TestAsset\FailingAbstractFactory;
24-
use ZendTest\ServiceManager\TestAsset\FailingFactory;
2524
use ZendTest\ServiceManager\TestAsset\FailingExceptionWithStringAsCodeFactory;
25+
use ZendTest\ServiceManager\TestAsset\FailingFactory;
2626
use ZendTest\ServiceManager\TestAsset\InvokableObject;
2727
use ZendTest\ServiceManager\TestAsset\SimpleAbstractFactory;
2828

test/Proxy/LazyServiceFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
namespace ZendTest\ServiceManager\Proxy;
99

1010
use Interop\Container\ContainerInterface;
11-
use PHPUnit_Framework_MockObject_MockObject as MockObject;
1211
use PHPUnit\Framework\TestCase;
12+
use PHPUnit_Framework_MockObject_MockObject as MockObject;
1313
use ProxyManager\Factory\LazyLoadingValueHolderFactory;
1414
use ProxyManager\Proxy\LazyLoadingInterface;
1515
use ProxyManager\Proxy\VirtualProxyInterface;

0 commit comments

Comments
 (0)