Passed
Push — master ( de60ff...3807db )
by Pavel
09:53
created
Tests/KernelProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,11 +17,11 @@
 block discarded – undo
17 17
     public static function getClass()
18 18
     {
19 19
         if (false === ($alias = getenv(self::ENV_VAR))) {
20
-            throw new \LogicException('Cannot obtain kernel alias from "' . self::ENV_VAR . '"" ENV variable');
20
+            throw new \LogicException('Cannot obtain kernel alias from "'.self::ENV_VAR.'"" ENV variable');
21 21
         }
22 22
 
23 23
         if (!array_key_exists($alias, self::$map)) {
24
-            throw new \LogicException('Invalid kernel alias: ' . $alias);
24
+            throw new \LogicException('Invalid kernel alias: '.$alias);
25 25
         }
26 26
 
27 27
         return self::$map[$alias];
Please login to merge, or discard this patch.
Tests/Unit/Processor/FormProcessorTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use ScayTrase\Api\Cruds\Exception\EntityProcessingException;
8 8
 use ScayTrase\Api\Cruds\PublicPropertyMapper;
9 9
 use ScayTrase\Api\Cruds\Tests\AbstractCrudsWebTest;
10
-use ScayTrase\Api\Cruds\Tests\Fixtures\SymfonySerializer\SymfonyTestKernel;
11 10
 use ScayTrase\Api\Cruds\Tests\StaticKernelTestTrait;
12 11
 use Symfony\Component\Form\AbstractType;
13 12
 use Symfony\Component\Form\Extension\Core\Type\CollectionType;
Please login to merge, or discard this patch.