Passed
Pull Request — develop (#6909)
by
unknown
26:42
created
tests/Doctrine/Tests/Models/Company/CompanyFlexUltraContractListener.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\Company;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Company/CompanyFlexUltraContract.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\Company;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Company/CompanyEvent.php 2 patches
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\Company;
6 6
 
Please login to merge, or discard this patch.
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -13,28 +13,28 @@
 block discarded – undo
13 13
  * @ORM\DiscriminatorMap({"auction"="CompanyAuction", "raffle"="CompanyRaffle"})
14 14
  */
15 15
 abstract class CompanyEvent {
16
-   /**
17
-    * @ORM\Id @ORM\Column(type="integer")
18
-    * @ORM\GeneratedValue
19
-    */
16
+    /**
17
+     * @ORM\Id @ORM\Column(type="integer")
18
+     * @ORM\GeneratedValue
19
+     */
20 20
     private $id;
21 21
 
22 22
     /**
23 23
      * @ORM\ManyToOne(targetEntity="CompanyOrganization", inversedBy="events", cascade={"persist"})
24 24
      * @ORM\JoinColumn(name="org_id", referencedColumnName="id")
25 25
      */
26
-     private $organization;
26
+        private $organization;
27 27
 
28
-     public function getId() {
29
-         return $this->id;
30
-     }
28
+        public function getId() {
29
+            return $this->id;
30
+        }
31 31
 
32
-     public function getOrganization() {
33
-         return $this->organization;
34
-     }
32
+        public function getOrganization() {
33
+            return $this->organization;
34
+        }
35 35
 
36
-     public function setOrganization(CompanyOrganization $org) {
37
-         $this->organization = $org;
38
-     }
36
+        public function setOrganization(CompanyOrganization $org) {
37
+            $this->organization = $org;
38
+        }
39 39
 
40 40
 }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Company/CompanyEmployee.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\Company;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Company/CompanyAuction.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\Company;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Company/CompanyContract.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\Company;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Company/CompanyContractListener.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\Company;
6 6
 
Please login to merge, or discard this patch.
Models/ValueConversionType/InversedOneToManyCompositeIdForeignKeyEntity.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\ValueConversionType;
6 6
 
Please login to merge, or discard this patch.
Doctrine/Tests/Models/ValueConversionType/InversedManyToManyEntity.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\ValueConversionType;
6 6
 
Please login to merge, or discard this patch.