@@ -12,7 +12,7 @@ |
||
12 | 12 | /** @var string $itemName */ |
13 | 13 | protected $itemName; |
14 | 14 | |
15 | - /** |
|
15 | + /** |
|
16 | 16 | * @return int |
17 | 17 | */ |
18 | 18 | abstract public function getType(); |
@@ -18,7 +18,7 @@ |
||
18 | 18 | * @return $this |
19 | 19 | */ |
20 | 20 | public function put($key, $value) { |
21 | - if(!$value instanceof Package) { |
|
21 | + if (!$value instanceof Package) { |
|
22 | 22 | throw new InvalidArgumentException('PackageCollection accepts only elements of "Package" type.'); |
23 | 23 | } |
24 | 24 |
@@ -18,7 +18,7 @@ |
||
18 | 18 | * @return $this |
19 | 19 | */ |
20 | 20 | public function put($key, $value) { |
21 | - if(!$value instanceof Repository) { |
|
21 | + if (!$value instanceof Repository) { |
|
22 | 22 | throw new InvalidArgumentException('RepositoryCollection accepts only elements of "Repository" type.'); |
23 | 23 | } |
24 | 24 |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function getOutputRedirection($logFile); |
14 | 14 | |
15 | - /** |
|
15 | + /** |
|
16 | 16 | * @return string |
17 | 17 | */ |
18 | 18 | public function getShouldUnlockOnCompletion(); |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | /** @var bool $asyncMode */ |
21 | 21 | protected $asyncMode = true; |
22 | 22 | |
23 | - /** |
|
23 | + /** |
|
24 | 24 | * ConfigBuilder constructor. |
25 | 25 | * @param \App\Satis\ConfigPersister $configPersister |
26 | 26 | */ |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | return $this; |
49 | 49 | } |
50 | 50 | |
51 | - /** |
|
51 | + /** |
|
52 | 52 | * @return bool|null |
53 | 53 | * @throws \App\Satis\Exceptions\PackageBuildFailedException |
54 | 54 | */ |
@@ -66,10 +66,10 @@ |
||
66 | 66 | $output = null; |
67 | 67 | try { |
68 | 68 | $output = $command->withCd(base_path())->run($this->asyncMode); |
69 | - } catch(PackageBuildFailedException $e) { |
|
69 | + } catch (PackageBuildFailedException $e) { |
|
70 | 70 | $output = $e->getMessage(); |
71 | 71 | } finally { |
72 | - if($this->asyncMode === false) { |
|
72 | + if ($this->asyncMode === false) { |
|
73 | 73 | $this->configPersister->unlock($this->buildContext->getItemId()); |
74 | 74 | } |
75 | 75 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | /** @var \App\Satis\Model\ConfigLock */ |
15 | 15 | protected $serializer; |
16 | 16 | |
17 | - /** |
|
17 | + /** |
|
18 | 18 | * ConfigMirror constructor. |
19 | 19 | * @param \JMS\Serializer\Serializer $serializer |
20 | 20 | */ |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | $this->serializer = $serializer; |
23 | 23 | } |
24 | 24 | |
25 | - /** |
|
25 | + /** |
|
26 | 26 | * @param string $config |
27 | 27 | * @return string |
28 | 28 | */ |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | */ |
12 | 12 | class ConfigPersister { |
13 | 13 | /** @var \Illuminate\Filesystem\Filesystem $filesystem */ |
14 | - protected $filesystem; |
|
14 | + protected $filesystem; |
|
15 | 15 | /** @var \App\Satis\Model\ConfigLock */ |
16 | 16 | protected $configLock; |
17 | 17 | /** @var \App\Satis\ConfigMirror */ |
@@ -56,14 +56,14 @@ discard block |
||
56 | 56 | public function __construct(Filesystem $filesystem, ConfigLock $configLock, ConfigMirror $configMirror, |
57 | 57 | Serializer $serializer |
58 | 58 | ) { |
59 | - $this->filesystem = $filesystem; |
|
59 | + $this->filesystem = $filesystem; |
|
60 | 60 | $this->configLock = $configLock; |
61 | 61 | $this->configMirror = $configMirror; |
62 | 62 | $this->serializer = $serializer; |
63 | 63 | |
64 | 64 | $this->lockFilename = config('satis.lock'); |
65 | 65 | $this->configFile = config('satis.config'); |
66 | - } |
|
66 | + } |
|
67 | 67 | |
68 | 68 | /** |
69 | 69 | * @return bool |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * @throws \Illuminate\Contracts\Filesystem\FileNotFoundException |
27 | 27 | */ |
28 | 28 | protected function getLockFile() { |
29 | - if($this->filesystem->exists($this->lockFilename)) { |
|
29 | + if ($this->filesystem->exists($this->lockFilename)) { |
|
30 | 30 | $configLock = $this->serializer->deserialize( |
31 | 31 | $this->filesystem->get($this->lockFilename), |
32 | 32 | 'App\Satis\Model\ConfigLock', |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | public function lock($repositoryId) { |
79 | 79 | $lockedRepositories = $this->getLockedRepositories(); |
80 | 80 | |
81 | - if(!is_null($repositoryId) && !$lockedRepositories->contains($repositoryId)) { |
|
81 | + if (!is_null($repositoryId) && !$lockedRepositories->contains($repositoryId)) { |
|
82 | 82 | $lockedRepositories->push($repositoryId); |
83 | 83 | } |
84 | 84 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | public function unlock($repositoryId = null) { |
100 | 100 | $lockedRepositories = $this->getLockedRepositories(); |
101 | 101 | |
102 | - if($repositoryId !== null && $lockedRepositories->contains($repositoryId)) { |
|
102 | + if ($repositoryId !== null && $lockedRepositories->contains($repositoryId)) { |
|
103 | 103 | $lockedRepositories = $lockedRepositories->filter(function($id) use($repositoryId) { |
104 | 104 | return $id !== $repositoryId; |
105 | 105 | }); |
@@ -19,7 +19,7 @@ |
||
19 | 19 | return '&> ' . escapeshellarg($logFile); |
20 | 20 | } |
21 | 21 | |
22 | - /** |
|
22 | + /** |
|
23 | 23 | * @return string |
24 | 24 | */ |
25 | 25 | public function getShouldUnlockOnCompletion() { |
@@ -9,14 +9,14 @@ |
||
9 | 9 | * @author Lukas Homza <[email protected]> |
10 | 10 | */ |
11 | 11 | class PrivateRepository extends BuildContext { |
12 | - /** |
|
12 | + /** |
|
13 | 13 | * @return int |
14 | 14 | */ |
15 | 15 | public function getType() { |
16 | 16 | return ConfigBuilder::PRIVATE_REPOSITORY; |
17 | 17 | } |
18 | 18 | |
19 | - /** |
|
19 | + /** |
|
20 | 20 | * @return string |
21 | 21 | */ |
22 | 22 | public function getConfigFile() { |