@@ -21,7 +21,7 @@ |
||
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'); |
@@ -53,7 +53,7 @@ |
||
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) { |
@@ -34,7 +34,7 @@ |
||
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 | } |
@@ -3,7 +3,7 @@ |
||
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(); |