Passed
Push — master ( 6ee383...2da01e )
by Adam
48s queued 10s
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/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/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.
src/IPub/Packages/Repository/Repository.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           30.05.15
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\Repository;
18 18
 
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
 		$this->packages = [];
229 229
 
230 230
 		foreach ($this->paths as $path) {
231
-			$files = glob($path . DIRECTORY_SEPARATOR . '*' . DIRECTORY_SEPARATOR . '*' . DIRECTORY_SEPARATOR . 'composer.json', GLOB_NOSORT) ?: [];
231
+			$files = glob($path.DIRECTORY_SEPARATOR.'*'.DIRECTORY_SEPARATOR.'*'.DIRECTORY_SEPARATOR.'composer.json', GLOB_NOSORT) ?: [];
232 232
 
233 233
 			foreach ($files as $file) {
234 234
 				/** @var Entities\IPackage $package */
Please login to merge, or discard this patch.
src/IPub/Packages/Repository/IRepository.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         30.05.15
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\Repository;
18 18
 
Please login to merge, or discard this patch.