Completed
Push — master ( e659d7...84abc4 )
by Adam
04:50 queued 01:03
created
src/IPub/Packages/Exceptions/InvalidMetadataSourceDefinitionException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
  * @date           13.07.16
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\Exceptions;
18 18
 
Please login to merge, or discard this patch.
src/IPub/Packages/IPackagesManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
  * @date           13.03.16
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages;
18 18
 
Please login to merge, or discard this patch.
src/IPub/Packages/Commands/ListCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  * @date           19.07.16
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\Commands;
18 18
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
 			foreach ($packages as $package) {
72 72
 				$output->writeln(sprintf(
73
-					'<info>%'. $maxLength .'s</info> | status: <comment>%-12s</comment> | version: <comment>%s</comment>',
73
+					'<info>%'.$maxLength.'s</info> | status: <comment>%-12s</comment> | version: <comment>%s</comment>',
74 74
 					$package->getName(),
75 75
 					$this->packageManager->getStatus($package),
76 76
 					$this->packageManager->getVersion($package)
Please login to merge, or discard this patch.
src/IPub/Packages/Entities/IPackage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
  * @date           27.09.14
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\Entities;
18 18
 
Please login to merge, or discard this patch.
src/IPub/Packages/Entities/VirtualPackage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
  * @date           21.06.16
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\Entities;
18 18
 
Please login to merge, or discard this patch.
src/IPub/Packages/Entities/Package.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  * @date           27.09.14
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\Entities;
18 18
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 		$this->composerData = $composerData;
50 50
 
51 51
 		if (!isset($composerData['name'])) {
52
-			throw new Exceptions\UnexpectedValueException('Unknown package, has no name defined (' . json_encode($composerData) . ').');
52
+			throw new Exceptions\UnexpectedValueException('Unknown package, has no name defined ('.json_encode($composerData).').');
53 53
 		}
54 54
 	}
55 55
 
Please login to merge, or discard this patch.
src/IPub/Packages/Scripts/ConfigurationScript.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  * @date           25.06.16
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\Scripts;
18 18
 
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
 	 */
185 185
 	private function getConfigPath() : string
186 186
 	{
187
-		return $this->configDir . DIRECTORY_SEPARATOR . $this->configFile;
187
+		return $this->configDir.DIRECTORY_SEPARATOR.$this->configFile;
188 188
 	}
189 189
 
190 190
 	/**
Please login to merge, or discard this patch.
src/IPub/Packages/Scripts/IScript.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
  * @date           25.06.16
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\Scripts;
18 18
 
Please login to merge, or discard this patch.
src/IPub/Packages/Installers/IInstaller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
  * @date           25.06.16
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\Installers;
18 18
 
Please login to merge, or discard this patch.