Completed
Branch master (d11b01)
by Daniel
11:56
created
src/Metadata/ClassMetadata.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@
 block discarded – undo
10 10
 {
11 11
     private $roles = [];
12 12
 
13
+    /**
14
+     * @param string $name
15
+     */
13 16
     public function __construct(
14 17
         $name
15 18
     ) {
Please login to merge, or discard this patch.
src/Storage/Doctrine/PhpcrOdm/CollectionIdentifierUpdater.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\Util\ClassUtils;
6 6
 use Doctrine\ODM\PHPCR\DocumentManagerInterface;
7
-use Doctrine\ODM\PHPCR\Event;
8
-use Metadata\MetadataFactory;
9 7
 use Metadata\MetadataFactoryInterface;
10 8
 
11 9
 /**
Please login to merge, or discard this patch.
src/Storage/Mapping/ConfiguredType.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\Storage\Mapping;
6 6
 
Please login to merge, or discard this patch.
src/Storage/Mapping/TypeFactory.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\Storage\Mapping;
6 6
 
Please login to merge, or discard this patch.
src/Storage/Doctrine/PhpcrOdm/PropertyEncoder.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\Storage\Doctrine\PhpcrOdm;
6 6
 
Please login to merge, or discard this patch.
src/Storage/Doctrine/PhpcrOdm/NodeTypeRegistrator.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\Storage\Doctrine\PhpcrOdm;
6 6
 
Please login to merge, or discard this patch.
src/Storage/Doctrine/PhpcrOdm/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\Storage\Doctrine\PhpcrOdm;
6 6
 
Please login to merge, or discard this patch.
src/Field/CollectionField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 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\Field;
6 6
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         ]);
43 43
         $options->setDefault('field_options', []);
44 44
 
45
-        $options->setFormMapper(function ($options) {
45
+        $options->setFormMapper(function($options) {
46 46
             $field = $this->registry->get($options['field']);
47 47
             $resolver = new FieldOptionsResolver();
48 48
             $field->configureOptions($resolver);
Please login to merge, or discard this patch.
src/Field/IntegerField.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\Field;
6 6
 
Please login to merge, or discard this patch.