@@ -13,8 +13,8 @@ |
||
| 13 | 13 | use ComponentManager\ComponentSpecification; |
| 14 | 14 | use ComponentManager\ComponentVersion; |
| 15 | 15 | use ComponentManager\Platform\Platform; |
| 16 | -use stdClass; |
|
| 17 | 16 | use Symfony\Component\Filesystem\Filesystem; |
| 17 | +use stdClass; |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * Package repository interface. |
@@ -11,7 +11,6 @@ |
||
| 11 | 11 | namespace ComponentManager\Platform; |
| 12 | 12 | |
| 13 | 13 | use ComponentManager\Exception\PlatformException; |
| 14 | -use Symfony\Component\DependencyInjection\Definition; |
|
| 15 | 14 | |
| 16 | 15 | class PlatformFactory { |
| 17 | 16 | /** |
@@ -53,7 +53,7 @@ |
||
| 53 | 53 | * @param string|null $tagName |
| 54 | 54 | * @param string|null $appId |
| 55 | 55 | */ |
| 56 | - public function __construct($tagName=null, $appId=null) { |
|
| 56 | + public function __construct($tagName = null, $appId = null) { |
|
| 57 | 57 | $this->tagName = ($tagName === null) ? 'console.command' : $tagName; |
| 58 | 58 | $this->appId = ($appId === null) ? 'console.application' : $appId; |
| 59 | 59 | } |