Failed Conditions
Pull Request — develop (#6599)
by Michael
131:05 queued 63:47
created
tests/Doctrine/Tests/Models/DDC889/DDC889Class.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 Doctrine\Tests\Models\DDC889;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Cache/City.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -34,16 +34,16 @@
 block discarded – undo
34 34
      */
35 35
     protected $state;
36 36
 
37
-     /**
38
-     * @ORM\ManyToMany(targetEntity="Travel", mappedBy="visitedCities")
39
-     */
37
+        /**
38
+         * @ORM\ManyToMany(targetEntity="Travel", mappedBy="visitedCities")
39
+         */
40 40
     public $travels;
41 41
 
42
-     /**
43
-     * @ORM\Cache
44
-     * @ORM\OrderBy({"name" = "ASC"})
45
-     * @ORM\OneToMany(targetEntity="Attraction", mappedBy="city")
46
-     */
42
+        /**
43
+         * @ORM\Cache
44
+         * @ORM\OrderBy({"name" = "ASC"})
45
+         * @ORM\OneToMany(targetEntity="Attraction", mappedBy="city")
46
+         */
47 47
     public $attractions;
48 48
 
49 49
     public function __construct($name, State $state = null)
Please login to merge, or discard this 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 Doctrine\Tests\Models\Cache;
6 6
 
@@ -106,6 +106,6 @@  discard block
 block discarded – undo
106 106
 
107 107
     public static function loadMetadata(Mapping\ClassMetadata $metadata)
108 108
     {
109
-        include __DIR__ . '/../../ORM/Mapping/php/Doctrine.Tests.Models.Cache.City.php';
109
+        include __DIR__.'/../../ORM/Mapping/php/Doctrine.Tests.Models.Cache.City.php';
110 110
     }
111 111
 }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Cache/State.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 Doctrine\Tests\Models\Cache;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Cache/Traveler.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      * @ORM\Cache
39 39
      * @ORM\OneToOne(targetEntity="TravelerProfile")
40 40
      */
41
-     protected $profile;
41
+        protected $profile;
42 42
 
43 43
     /**
44 44
      * @param string $name
Please login to merge, or discard this 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 Doctrine\Tests\Models\Cache;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Pagination/Company.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 Doctrine\Tests\Models\Pagination;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/Cat.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 Doctrine\Tests\Models\OneToOneSingleTableInheritance;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/DDC3899/DDC3899FixContract.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 Doctrine\Tests\Models\DDC3899;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Taxi/Ride.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 Doctrine\Tests\Models\Taxi;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/GeoNames/City.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 Doctrine\Tests\Models\GeoNames;
6 6
 
Please login to merge, or discard this patch.