@@ -71,7 +71,7 @@ |
||
71 | 71 | * @param \ComponentManager\Project\ProjectLockFile $projectLockFile |
72 | 72 | * @param \ComponentManager\PackageRepository\PackageRepositoryFactory $packageRepositoryFactory |
73 | 73 | * @param \ComponentManager\PackageSource\PackageSourceFactory $packageSourceFactory |
74 | - * @param \ComponentManager\PackageSource\PackageFormatFactory $packageFormatFactory |
|
74 | + * @param PackageFormatFactory $packageFormatFactory |
|
75 | 75 | */ |
76 | 76 | public function __construct(ProjectFile $projectFile, |
77 | 77 | ProjectLockFile $projectLockFile, |
@@ -23,6 +23,7 @@ |
||
23 | 23 | * Initialiser. |
24 | 24 | * |
25 | 25 | * @param \Symfony\Component\Filesystem\Filesystem $filesystem |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function __construct(Filesystem $filesystem); |
28 | 29 |
@@ -31,6 +31,7 @@ |
||
31 | 31 | * @param HttpClient $httpClient |
32 | 32 | * @param \ComponentManager\Platform\Platform $platform |
33 | 33 | * @param \stdClass $options |
34 | + * @return void |
|
34 | 35 | */ |
35 | 36 | public function __construct(Filesystem $filesystem, HttpClient $httpClient, |
36 | 37 | Platform $platform, stdClass $options); |
@@ -14,8 +14,8 @@ |
||
14 | 14 | use ComponentManager\ComponentVersion; |
15 | 15 | use ComponentManager\HttpClient; |
16 | 16 | use ComponentManager\Platform\Platform; |
17 | -use stdClass; |
|
18 | 17 | use Symfony\Component\Filesystem\Filesystem; |
18 | +use stdClass; |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Package repository interface. |
@@ -18,8 +18,8 @@ |
||
18 | 18 | use DateTime; |
19 | 19 | use OutOfBoundsException; |
20 | 20 | use Psr\Log\LoggerInterface; |
21 | -use stdClass; |
|
22 | 21 | use Symfony\Component\HttpFoundation\Request; |
22 | +use stdClass; |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * Atlassian Stash project package repository. |
@@ -62,7 +62,7 @@ |
||
62 | 62 | /** |
63 | 63 | * Get a ready-to-run Process instance. |
64 | 64 | * |
65 | - * @param mixed[] $arguments Arguments to pass to the Git binary. |
|
65 | + * @param string[] $arguments Arguments to pass to the Git binary. |
|
66 | 66 | * |
67 | 67 | * @return \Symfony\Component\Process\Process |
68 | 68 | */ |
@@ -16,8 +16,8 @@ |
||
16 | 16 | use ComponentManager\VersionControl\Git\Command\Command; |
17 | 17 | use ComponentManager\VersionControl\Git\Command\FetchCommand; |
18 | 18 | use ComponentManager\VersionControl\Git\Command\InitCommand; |
19 | -use ComponentManager\VersionControl\Git\Command\RevParseCommand; |
|
20 | 19 | use ComponentManager\VersionControl\Git\Command\RemoteAddCommand; |
20 | +use ComponentManager\VersionControl\Git\Command\RevParseCommand; |
|
21 | 21 | use Symfony\Component\Process\Process; |
22 | 22 | use Symfony\Component\Process\ProcessBuilder; |
23 | 23 |