Completed
Pull Request — master (#42)
by Daniel
04:17
created
bridge/doctrine-orm/tests/Functional/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,11 +22,11 @@
 block discarded – undo
22 22
 
23 23
     private function loadOrm()
24 24
     {
25
-        $this['psi_content_type.storage.doctrine.orm.field_mapper'] = function ($container) {
25
+        $this['psi_content_type.storage.doctrine.orm.field_mapper'] = function($container) {
26 26
             return new FieldMapper(
27 27
             );
28 28
         };
29
-        $this['doctrine.entity_manager'] = function ($container) {
29
+        $this['doctrine.entity_manager'] = function($container) {
30 30
             $dbParams = [
31 31
                 'driver'    => 'pdo_sqlite',
32 32
                 'path' => $this['config']['db_path'],
Please login to merge, or discard this patch.
bridge/doctrine-orm/src/FieldMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\ContentType\View;
6 6
 
Please login to merge, or discard this patch.
bridge/doctrine-phpcr-odm/tests/Functional/CollectionType/ObjectTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Psi\Bridge\ContentType\Doctrine\PhpcrOdm\Tests\Functional;
4 4
 
5
-use Doctrine\ODM\PHPCR\ChildrenCollection;
6 5
 use Psi\Bridge\ContentType\Doctrine\PhpcrOdm\Tests\Functional\Example\ArticleWithRestrictedChildren;
7
-use Psi\Bridge\ContentType\Doctrine\PhpcrOdm\Tests\Functional\Example\Image;
8 6
 use Psi\Bridge\ContentType\Doctrine\PhpcrOdm\Tests\Functional\Example\ImageNotAssignedGenerator;
9 7
 use Psi\Component\ContentType\Tests\Functional\Example\Model\Article;
10 8
 
Please login to merge, or discard this patch.