Completed
Push — master ( 98c39c...c8155d )
by Pavel
16:50
created
src/DependencyInjection/Compiler/DoctrineOrmCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             return;
22 22
         }
23 23
 
24
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../../Resources/config'));
24
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../../Resources/config'));
25 25
         $loader->load('doctrine.yml');
26 26
 
27 27
         $factory = $container->getDefinition('cruds.factory.reflection');
Please login to merge, or discard this patch.
src/Adaptors/DoctrineOrm/EntityToIdNormalizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         $manager = $this->registry->getManagerForClass($class);
54 54
 
55 55
         if (null === $manager) {
56
-            throw new \RuntimeException('Not supported class ' . $class);
56
+            throw new \RuntimeException('Not supported class '.$class);
57 57
         }
58 58
 
59 59
         if ($manager instanceof EntityManagerInterface) {
Please login to merge, or discard this patch.
src/Exception/EntityProcessingException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         }
35 35
 
36 36
         return new static(
37
-            'Invalid data submitted for entity: ' . PHP_EOL .
37
+            'Invalid data submitted for entity: '.PHP_EOL.
38 38
             Yaml::dump($errors)
39 39
         );
40 40
     }
Please login to merge, or discard this patch.
bin/dump_reference.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 use ScayTrase\Api\Cruds\DependencyInjection\Configuration;
4 4
 use Symfony\Component\Config\Definition\Dumper\YamlReferenceDumper;
5 5
 
6
-require_once __DIR__ . '/../vendor/autoload.php';
6
+require_once __DIR__.'/../vendor/autoload.php';
7 7
 
8 8
 $config = new Configuration();
9 9
 $dumper = new YamlReferenceDumper();
Please login to merge, or discard this patch.