Passed
Push — 12.x ( 6b7e0c...776830 )
by Tim
03:36
created
RoboFile.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -57,9 +57,9 @@  discard block
 block discarded – undo
57 57
     {
58 58
         // optimize autoloader with custom path
59 59
         $this->taskComposerInstall()
60
-             ->preferDist()
61
-             ->optimizeAutoloader()
62
-             ->run();
60
+                ->preferDist()
61
+                ->optimizeAutoloader()
62
+                ->run();
63 63
     }
64 64
 
65 65
     /**
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
     {
72 72
         // optimize autoloader with custom path
73 73
         $this->taskComposerUpdate()
74
-             ->preferDist()
75
-             ->optimizeAutoloader()
76
-             ->run();
74
+                ->preferDist()
75
+                ->optimizeAutoloader()
76
+                ->run();
77 77
     }
78 78
 
79 79
     /**
@@ -94,10 +94,10 @@  discard block
 block discarded – undo
94 94
     public function prepare()
95 95
     {
96 96
         $this->taskFileSystemStack()
97
-             ->mkdir($this->properties['dist.dir'])
98
-             ->mkdir($this->properties['target.dir'])
99
-             ->mkdir(sprintf('%s/reports', $this->properties['target.dir']))
100
-             ->run();
97
+                ->mkdir($this->properties['dist.dir'])
98
+                ->mkdir($this->properties['target.dir'])
99
+                ->mkdir(sprintf('%s/reports', $this->properties['target.dir']))
100
+                ->run();
101 101
     }
102 102
 
103 103
     /**
@@ -167,8 +167,8 @@  discard block
 block discarded – undo
167 167
 
168 168
         // run PHPUnit
169 169
         $this->taskPHPUnit(sprintf('%s/bin/phpunit', $this->properties['vendor.dir']))
170
-             ->configFile('phpunit.xml')
171
-             ->run();
170
+                ->configFile('phpunit.xml')
171
+                ->run();
172 172
     }
173 173
 
174 174
     /**
Please login to merge, or discard this patch.
src/Subjects/BunchSubject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
         }
148 148
 
149 149
         // load the entity type code from the configuration
150
-        $entityTypeCode =  $entityType ? $entityType[MemberNames::ENTITY_TYPE_CODE] : $this->getConfiguration()->getConfiguration()->getEntityTypeCode();
150
+        $entityTypeCode = $entityType ? $entityType[MemberNames::ENTITY_TYPE_CODE] : $this->getConfiguration()->getConfiguration()->getEntityTypeCode();
151 151
 
152 152
         // try to map the entity type code
153 153
         if (isset($this->entityTypeCodeToAttributeSetMappings[$entityTypeCode])) {
Please login to merge, or discard this patch.