Failed Conditions
Pull Request — develop (#6600)
by Mike
62:56
created
lib/Doctrine/ORM/Mapping/Exporter/ManyToOneAssociationMetadataExporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Mapping\Exporter;
7 7
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/ToOneAssociationMetadataExporter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Mapping\Exporter;
7 7
 
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
         /** @var ToOneAssociationMetadata $value */
18 18
         $joinColumnExporter = new JoinColumnMetadataExporter();
19 19
         $indentation        = str_repeat(self::INDENTATION, $indentationLevel);
20
-        $objectReference    = $indentation . static::VARIABLE;
20
+        $objectReference    = $indentation.static::VARIABLE;
21 21
         $lines              = [];
22 22
 
23 23
         $lines[] = parent::export($value, $indentationLevel);
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
             $lines[] = null;
27 27
             $lines[] = $joinColumnExporter->export($joinColumn, $indentationLevel);
28 28
             $lines[] = null;
29
-            $lines[] = $objectReference . '->addJoinColumn(' . $joinColumnExporter::VARIABLE . ');';
29
+            $lines[] = $objectReference.'->addJoinColumn('.$joinColumnExporter::VARIABLE.');';
30 30
         }
31 31
 
32 32
         return implode(PHP_EOL, $lines);
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/OneToOneAssociationMetadataExporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Mapping\Exporter;
7 7
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/LocalColumnMetadataExporter.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Mapping\Exporter;
7 7
 
@@ -16,18 +16,18 @@  discard block
 block discarded – undo
16 16
     {
17 17
         /** @var LocalColumnMetadata $value */
18 18
         $indentation      = str_repeat(self::INDENTATION, $indentationLevel);
19
-        $objectReference  = $indentation . static::VARIABLE;
19
+        $objectReference  = $indentation.static::VARIABLE;
20 20
         $lines            = [];
21 21
 
22 22
         $lines[] = parent::export($value, $indentationLevel);
23 23
 
24
-        $lines[] = $objectReference . '->setLength(' . $value->getLength() . ');';
25
-        $lines[] = $objectReference . '->setScale(' . $value->getScale() . ');';
26
-        $lines[] = $objectReference . '->setPrecision(' . $value->getPrecision() . ');';
24
+        $lines[] = $objectReference.'->setLength('.$value->getLength().');';
25
+        $lines[] = $objectReference.'->setScale('.$value->getScale().');';
26
+        $lines[] = $objectReference.'->setPrecision('.$value->getPrecision().');';
27 27
 
28 28
         if ($value->hasValueGenerator()) {
29 29
             $lines[] = sprintf(
30
-                $objectReference . '->setValueGenerator(new ValueGenerator(%s, %s));',
30
+                $objectReference.'->setValueGenerator(new ValueGenerator(%s, %s));',
31 31
                 var_export($value->getValueGenerator()->getType(), true),
32 32
                 var_export($value->getValueGenerator()->getDefinition(), true)
33 33
             );
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/OneToManyAssociationMetadataExporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Mapping\Exporter;
7 7
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/CacheMetadataExporter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Mapping\Exporter;
7 7
 
@@ -18,10 +18,10 @@  discard block
 block discarded – undo
18 18
     {
19 19
         /** @var CacheMetadata $value */
20 20
         $indentation     = str_repeat(self::INDENTATION, $indentationLevel);
21
-        $objectReference = $indentation . static::VARIABLE;
21
+        $objectReference = $indentation.static::VARIABLE;
22 22
         $lines           = [];
23 23
 
24
-        $lines[] = $objectReference . ' = ' . $this->exportInstantiation($value);
24
+        $lines[] = $objectReference.' = '.$this->exportInstantiation($value);
25 25
 
26 26
         return implode(PHP_EOL, $lines);
27 27
     }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/ManyToManyAssociationMetadataExporter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Mapping\Exporter;
7 7
 
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     {
17 17
         /** @var ManyToManyAssociationMetadata $value */
18 18
         $indentation      = str_repeat(self::INDENTATION, $indentationLevel);
19
-        $objectReference  = $indentation . static::VARIABLE;
19
+        $objectReference  = $indentation.static::VARIABLE;
20 20
         $lines            = [];
21 21
 
22 22
         $lines[] = parent::export($value, $indentationLevel);
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
             $lines[] = null;
28 28
             $lines[] = $joinTableExporter->export($value->getJoinTable(), $indentationLevel);
29 29
             $lines[] = null;
30
-            $lines[] = $objectReference . '->setJoinTable(' . $joinTableExporter::VARIABLE . ');';
30
+            $lines[] = $objectReference.'->setJoinTable('.$joinTableExporter::VARIABLE.');';
31 31
         }
32 32
 
33 33
         return implode(PHP_EOL, $lines);
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/FieldMetadataExporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Mapping\Exporter;
7 7
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/JoinTableMetadataExporter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Mapping\Exporter;
7 7
 
@@ -19,19 +19,19 @@  discard block
 block discarded – undo
19 19
         /** @var JoinTableMetadata $value */
20 20
         $joinColumnExporter = new JoinColumnMetadataExporter();
21 21
         $indentation        = str_repeat(self::INDENTATION, $indentationLevel);
22
-        $objectReference    = $indentation . static::VARIABLE;
22
+        $objectReference    = $indentation.static::VARIABLE;
23 23
         $lines              = [];
24 24
 
25 25
         $lines[] = parent::export($value, $indentationLevel);
26 26
 
27 27
         foreach ($value->getJoinColumns() as $joinColumn) {
28 28
             $lines[] = $joinColumnExporter->export($joinColumn, $indentationLevel);
29
-            $lines[] = $objectReference . '->addJoinColumn(' . $joinColumnExporter::VARIABLE . ');';
29
+            $lines[] = $objectReference.'->addJoinColumn('.$joinColumnExporter::VARIABLE.');';
30 30
         }
31 31
 
32 32
         foreach ($value->getInverseJoinColumns() as $inverseJoinColumn) {
33 33
             $lines[] = $joinColumnExporter->export($inverseJoinColumn, $indentationLevel);
34
-            $lines[] = $objectReference . '->addInverseJoinColumn(' . $joinColumnExporter::VARIABLE . ');';
34
+            $lines[] = $objectReference.'->addInverseJoinColumn('.$joinColumnExporter::VARIABLE.');';
35 35
         }
36 36
 
37 37
         return implode(PHP_EOL, $lines);
Please login to merge, or discard this patch.