Passed
Push — master ( 25aa03...6ee383 )
by Adam
35s
created
src/IPub/Packages/DependencyResolver/Job.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.06.16
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\DependencyResolver;
18 18
 
Please login to merge, or discard this patch.
src/IPub/Packages/Loaders/ILoader.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.09.14
13 13
  */
14 14
 
15
-declare(strict_types = 1);
15
+declare(strict_types=1);
16 16
 
17 17
 namespace IPub\Packages\Loaders;
18 18
 
Please login to merge, or discard this patch.
src/IPub/Packages/Loaders/Loader.php 1 patch
Spacing   +6 added lines, -6 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\Loaders;
18 18
 
@@ -117,10 +117,10 @@  discard block
 block discarded – undo
117 117
 		}
118 118
 
119 119
 		foreach ($this->packageFiles as $packageFile) {
120
-			if (is_file($path . DIRECTORY_SEPARATOR . $packageFile)) {
121
-				$class = $this->getPackageClassByFile($path . DIRECTORY_SEPARATOR . $packageFile);
120
+			if (is_file($path.DIRECTORY_SEPARATOR.$packageFile)) {
121
+				$class = $this->getPackageClassByFile($path.DIRECTORY_SEPARATOR.$packageFile);
122 122
 
123
-				include_once $path . DIRECTORY_SEPARATOR . $packageFile;
123
+				include_once $path.DIRECTORY_SEPARATOR.$packageFile;
124 124
 
125 125
 				$package = $this->container->createInstance($class, [$data]);
126 126
 
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
 				}
238 238
 
239 239
 				if (isset($tokens[$i][1])) {
240
-					$namespace = $namespace ? $namespace . "\\" . $tokens[$i][1] : $tokens[$i][1];
240
+					$namespace = $namespace ? $namespace."\\".$tokens[$i][1] : $tokens[$i][1];
241 241
 					$dlm = TRUE;
242 242
 				}
243 243
 
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 				$class_name = $tokens[$i][1];
252 252
 
253 253
 
254
-				$classes[] = $namespace . '\\' . $class_name;
254
+				$classes[] = $namespace.'\\'.$class_name;
255 255
 			}
256 256
 		}
257 257
 
Please login to merge, or discard this patch.
src/IPub/Packages/Exceptions/InvalidJobActionException.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           12.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/Exceptions/InvalidStateException.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\Exceptions;
18 18
 
Please login to merge, or discard this patch.
src/IPub/Packages/Exceptions/IException.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.03.15
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/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/DisableCommand.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           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
 
Please login to merge, or discard this patch.