Skip to content

Commit

Permalink
Fix ordering of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kocsismate committed Mar 5, 2019
1 parent 6d339ba commit 0d1f65b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Container/Builder/FileSystemContainerBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
use WoohooLabs\Zen\Container\Compiler;
use WoohooLabs\Zen\Container\DependencyResolver;
use WoohooLabs\Zen\Exception\ContainerException;
use const DIRECTORY_SEPARATOR;
use function dirname;
use function file_exists;
use function file_put_contents;
use function mkdir;
use function rmdir;
use function unlink;
use const DIRECTORY_SEPARATOR;

class FileSystemContainerBuilder implements ContainerBuilderInterface
{
Expand Down
12 changes: 6 additions & 6 deletions src/Utils/FileSystemUtil.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@
use RecursiveIteratorIterator;
use ReflectionClass;
use Throwable;
use const T_ABSTRACT;
use const T_CLASS;
use const T_INTERFACE;
use const T_NS_SEPARATOR;
use const T_STRING;
use const T_WHITESPACE;
use function count;
use function file_get_contents;
use function in_array;
Expand All @@ -24,6 +18,12 @@
use function substr;
use function substr_compare;
use function token_get_all;
use const T_ABSTRACT;
use const T_CLASS;
use const T_INTERFACE;
use const T_NS_SEPARATOR;
use const T_STRING;
use const T_WHITESPACE;

class FileSystemUtil
{
Expand Down
2 changes: 1 addition & 1 deletion src/Utils/NamespaceUtil.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
use ReflectionClass;
use ReflectionException;
use WoohooLabs\Zen\Exception\ContainerException;
use const DIRECTORY_SEPARATOR;
use function file_exists;
use function str_replace;
use function strlen;
use function substr;
use function substr_compare;
use const DIRECTORY_SEPARATOR;

class NamespaceUtil
{
Expand Down

0 comments on commit 0d1f65b

Please sign in to comment.