AutoDiscovery and AutoPrefix in separate namespaces

2.x
Julien Rosset 2 years ago
parent 1f5216a340
commit 29f429d458

@ -1,9 +1,10 @@
<?php <?php
namespace jrosset\CliProgram; namespace jrosset\CliProgram\AutoDiscovery;
use FilesystemIterator; use FilesystemIterator;
use jrosset\BetterPhpToken\BetterPhpToken; use jrosset\BetterPhpToken\BetterPhpToken;
use jrosset\CliProgram\AutoPrefix\TAutoPrefixManagement;
use ReflectionClass; use ReflectionClass;
use ReflectionException; use ReflectionException;
use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\Command;

@ -1,6 +1,6 @@
<?php <?php
namespace jrosset\CliProgram; namespace jrosset\CliProgram\AutoDiscovery;
use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\Command;

@ -1,6 +1,6 @@
<?php <?php
namespace jrosset\CliProgram; namespace jrosset\CliProgram\AutoDiscovery;
use jrosset\Collections\Collection; use jrosset\Collections\Collection;
use jrosset\Collections\ICollection; use jrosset\Collections\ICollection;

@ -1,6 +1,6 @@
<?php <?php
namespace jrosset\CliProgram; namespace jrosset\CliProgram\AutoPrefix;
use ReflectionClass; use ReflectionClass;
use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\Command;

@ -1,6 +1,6 @@
<?php <?php
namespace jrosset\CliProgram; namespace jrosset\CliProgram\AutoPrefix;
use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\Command;

@ -1,6 +1,6 @@
<?php <?php
namespace jrosset\CliProgram; namespace jrosset\CliProgram\AutoPrefix;
use jrosset\Collections\Collection; use jrosset\Collections\Collection;
use jrosset\Collections\ICollection; use jrosset\Collections\ICollection;

@ -2,9 +2,9 @@
namespace jrosset\Tests; namespace jrosset\Tests;
use jrosset\CliProgram\TAutoDiscoveryApplication; use jrosset\CliProgram\AutoDiscovery\AutoDiscoveryDirectory;
use jrosset\CliProgram\AutoDiscoveryDirectory; use jrosset\CliProgram\AutoDiscovery\TAutoDiscoveryApplication;
use jrosset\CliProgram\AutoPrefixNamespaceManager; use jrosset\CliProgram\AutoPrefix\AutoPrefixNamespaceManager;
class Application extends \Symfony\Component\Console\Application { class Application extends \Symfony\Component\Console\Application {
use TAutoDiscoveryApplication; use TAutoDiscoveryApplication;

Loading…
Cancel
Save