Passed
Push — master ( 430c98...5aa9a6 )
by Sebastian
02:51
created
src/Mailcode/Parser/Safeguard/Formatter.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@  discard block
 block discarded – undo
24 24
  */
25 25
 abstract class Mailcode_Parser_Safeguard_Formatter
26 26
 {
27
-   /**
28
-    * @var Mailcode_Parser_Safeguard
29
-    */
27
+    /**
28
+     * @var Mailcode_Parser_Safeguard
29
+     */
30 30
     protected $safeguard;
31 31
     
32 32
     public function __construct(Mailcode_Parser_Safeguard $safeguard)
@@ -88,12 +88,12 @@  discard block
 block discarded – undo
88 88
         return $locator->getSubjectString();
89 89
     }
90 90
     
91
-   /**
92
-    * Resolves the newline character used in the string.
93
-    * 
94
-    * @param string $subject
95
-    * @return string
96
-    */
91
+    /**
92
+     * Resolves the newline character used in the string.
93
+     * 
94
+     * @param string $subject
95
+     * @return string
96
+     */
97 97
     protected function resolveNewlineChar(string $subject) : string
98 98
     {
99 99
         $eol = ConvertHelper::detectEOLCharacter($subject);
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
         return PHP_EOL;
107 107
     }
108 108
     
109
-   /**
110
-    * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
111
-    */
109
+    /**
110
+     * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
111
+     */
112 112
     protected function filterPlaceholders()
113 113
     {
114 114
         return $this->safeguard->getPlaceholders();
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         
63 63
         $total = count($placeholders);
64 64
         
65
-        for($i=0; $i < $total; $i++)
65
+        for ($i = 0; $i < $total; $i++)
66 66
         {
67 67
             $subject = $this->process($placeholders[$i], $subject);
68 68
         }
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
         $locator = $placeholder->createLocator($subject);
76 76
         $positions = $locator->getLocations();
77 77
         
78
-        foreach($positions as $position)
78
+        foreach ($positions as $position)
79 79
         {
80 80
             $replace = $this->resolveReplacementText($position);
81 81
             
82
-            if($replace !== $position->getPlaceholderString())
82
+            if ($replace !== $position->getPlaceholderString())
83 83
             {
84 84
                 $locator->replaceWith($position, $replace);
85 85
             }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     {
99 99
         $eol = ConvertHelper::detectEOLCharacter($subject);
100 100
         
101
-        if($eol)
101
+        if ($eol)
102 102
         {
103 103
             return $eol->getCharacter();
104 104
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Placeholder/Locator/Replacer.php 2 patches
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -29,49 +29,49 @@  discard block
 block discarded – undo
29 29
     const ERROR_PLACEHOLDER_STRING_MISSING = 63501;
30 30
     const ERROR_COULD_NOT_FIND_PLACEHOLDER_TEXT = 63502;
31 31
     
32
-   /**
33
-    * @var string
34
-    */
32
+    /**
33
+     * @var string
34
+     */
35 35
     private $replacementText;
36 36
     
37
-   /**
38
-    * @var Mailcode_Parser_Safeguard_Placeholder_Locator
39
-    */
37
+    /**
38
+     * @var Mailcode_Parser_Safeguard_Placeholder_Locator
39
+     */
40 40
     private $locator;
41 41
     
42
-   /**
43
-    * @var Mailcode_Parser_Safeguard_Placeholder_Locator_Location
44
-    */
42
+    /**
43
+     * @var Mailcode_Parser_Safeguard_Placeholder_Locator_Location
44
+     */
45 45
     private $origin;
46 46
     
47
-   /**
48
-    * @var string
49
-    */
47
+    /**
48
+     * @var string
49
+     */
50 50
     private $placeholderText;
51 51
     
52
-   /**
53
-    * @var integer
54
-    */
52
+    /**
53
+     * @var integer
54
+     */
55 55
     private $offset = 0;
56 56
     
57
-   /**
58
-    * @var string
59
-    */
57
+    /**
58
+     * @var string
59
+     */
60 60
     private $subject;
61 61
     
62
-   /**
63
-    * @var integer
64
-    */
62
+    /**
63
+     * @var integer
64
+     */
65 65
     private $prefixLength = 0;
66 66
 
67
-   /**
68
-    * @var integer
69
-    */
67
+    /**
68
+     * @var integer
69
+     */
70 70
     private $placeholderLength = 0;
71 71
 
72
-   /**
73
-    * @var integer
74
-    */
72
+    /**
73
+     * @var integer
74
+     */
75 75
     private $lengthDifference = 0;
76 76
     
77 77
     public function __construct(Mailcode_Parser_Safeguard_Placeholder_Locator_Location $origin, string $replacementText, string $subject)
@@ -91,11 +91,11 @@  discard block
 block discarded – undo
91 91
         return $this->subject;
92 92
     }
93 93
     
94
-   /**
95
-    * Adjusts the positions of all locations that come after 
96
-    * this one, to account for the added string length of the
97
-    * placeholder that has been replaced.
98
-    */
94
+    /**
95
+     * Adjusts the positions of all locations that come after 
96
+     * this one, to account for the added string length of the
97
+     * placeholder that has been replaced.
98
+     */
99 99
     private function adjustPositions() : void
100 100
     {
101 101
         $locations = $this->origin->getNextAll();
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
         $locations = $this->origin->getNextAll();
102 102
         $offset = $this->lengthDifference;
103 103
         
104
-        foreach($locations as $location)
104
+        foreach ($locations as $location)
105 105
         {
106 106
             $location->updatePositionByOffset($offset);
107 107
             
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     {
114 114
         $length = mb_strpos($this->replacementText, $this->placeholderText);
115 115
         
116
-        if($length === false)
116
+        if ($length === false)
117 117
         {
118 118
             throw new Mailcode_Exception(
119 119
                 'Replacement text does not contain placeholder string.',
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Placeholder/Locator/Location.php 2 patches
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -23,29 +23,29 @@  discard block
 block discarded – undo
23 23
  */
24 24
 class Mailcode_Parser_Safeguard_Placeholder_Locator_Location
25 25
 {
26
-   /**
27
-    * @var Mailcode_Parser_Safeguard_Placeholder
28
-    */
26
+    /**
27
+     * @var Mailcode_Parser_Safeguard_Placeholder
28
+     */
29 29
     private $placeholder;
30 30
     
31
-   /**
32
-    * @var int
33
-    */
31
+    /**
32
+     * @var int
33
+     */
34 34
     private $startPos;
35 35
     
36
-   /**
37
-    * @var int
38
-    */
36
+    /**
37
+     * @var int
38
+     */
39 39
     private $length;
40 40
     
41
-   /**
42
-    * @var int
43
-    */
41
+    /**
42
+     * @var int
43
+     */
44 44
     private $index;
45 45
     
46
-   /**
47
-    * @var Mailcode_Parser_Safeguard_Placeholder_Locator
48
-    */
46
+    /**
47
+     * @var Mailcode_Parser_Safeguard_Placeholder_Locator
48
+     */
49 49
     private $locator;
50 50
     
51 51
     public function __construct(Mailcode_Parser_Safeguard_Placeholder_Locator $locator, Mailcode_Parser_Safeguard_Placeholder $placeholder, int $index, int $startPos, int $length)
@@ -112,31 +112,31 @@  discard block
 block discarded – undo
112 112
         return $this->getPrevious() !== null;
113 113
     }
114 114
     
115
-   /**
116
-    * Retrieves the placeholder location right after this one, if any.
117
-    * 
118
-    * @return Mailcode_Parser_Safeguard_Placeholder_Locator_Location|NULL
119
-    */
115
+    /**
116
+     * Retrieves the placeholder location right after this one, if any.
117
+     * 
118
+     * @return Mailcode_Parser_Safeguard_Placeholder_Locator_Location|NULL
119
+     */
120 120
     public function getNext() : ?Mailcode_Parser_Safeguard_Placeholder_Locator_Location
121 121
     {
122 122
         return $this->locator->getLocationByIndex(($this->index-1));
123 123
     }
124 124
     
125
-   /**
126
-    * Retrieves the placeholder location right before this one, if any.
127
-    * 
128
-    * @return Mailcode_Parser_Safeguard_Placeholder_Locator_Location|NULL
129
-    */
125
+    /**
126
+     * Retrieves the placeholder location right before this one, if any.
127
+     * 
128
+     * @return Mailcode_Parser_Safeguard_Placeholder_Locator_Location|NULL
129
+     */
130 130
     public function getPrevious() : ?Mailcode_Parser_Safeguard_Placeholder_Locator_Location
131 131
     {
132 132
         return $this->locator->getLocationByIndex(($this->index+1));
133 133
     }
134 134
     
135
-   /**
136
-    * Retrieves all placeholder locations that come after this one, if any.
137
-    * 
138
-    * @return Mailcode_Parser_Safeguard_Placeholder_Locator_Location[]
139
-    */
135
+    /**
136
+     * Retrieves all placeholder locations that come after this one, if any.
137
+     * 
138
+     * @return Mailcode_Parser_Safeguard_Placeholder_Locator_Location[]
139
+     */
140 140
     public function getNextAll() : array
141 141
     {
142 142
         $locations = $this->locator->getLocations();
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     */
120 120
     public function getNext() : ?Mailcode_Parser_Safeguard_Placeholder_Locator_Location
121 121
     {
122
-        return $this->locator->getLocationByIndex(($this->index-1));
122
+        return $this->locator->getLocationByIndex(($this->index - 1));
123 123
     }
124 124
     
125 125
    /**
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     */
130 130
     public function getPrevious() : ?Mailcode_Parser_Safeguard_Placeholder_Locator_Location
131 131
     {
132
-        return $this->locator->getLocationByIndex(($this->index+1));
132
+        return $this->locator->getLocationByIndex(($this->index + 1));
133 133
     }
134 134
     
135 135
    /**
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     {
142 142
         $locations = $this->locator->getLocations();
143 143
         
144
-        return array_slice($locations, $this->index+1);
144
+        return array_slice($locations, $this->index + 1);
145 145
     }
146 146
     
147 147
     public function updatePositionByOffset(int $offset) : void
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Placeholder/Locator.php 2 patches
Indentation   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -29,19 +29,19 @@  discard block
 block discarded – undo
29 29
  */
30 30
 class Mailcode_Parser_Safeguard_Placeholder_Locator
31 31
 {
32
-   /**
33
-    * @var string
34
-    */
32
+    /**
33
+     * @var string
34
+     */
35 35
     private $subject;
36 36
     
37
-   /**
38
-    * @var Mailcode_Parser_Safeguard_Placeholder
39
-    */
37
+    /**
38
+     * @var Mailcode_Parser_Safeguard_Placeholder
39
+     */
40 40
     private $placeholder;
41 41
     
42
-   /**
43
-    * @var Mailcode_Parser_Safeguard_Placeholder_Locator_Location[]
44
-    */
42
+    /**
43
+     * @var Mailcode_Parser_Safeguard_Placeholder_Locator_Location[]
44
+     */
45 45
     private $instances = array();
46 46
     
47 47
     public function __construct(Mailcode_Parser_Safeguard_Placeholder $placeholder, string $subject)
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
         $this->localizeInstances();
53 53
     }
54 54
     
55
-   /**
56
-    * Attempts to find the placeholder's instances in the
57
-    * target string, and returns a location instance for
58
-    * each, which allows accessing their exact position.
59
-    */
55
+    /**
56
+     * Attempts to find the placeholder's instances in the
57
+     * target string, and returns a location instance for
58
+     * each, which allows accessing their exact position.
59
+     */
60 60
     private function localizeInstances() : void
61 61
     {
62 62
         $lastPos = 0;
@@ -81,21 +81,21 @@  discard block
 block discarded – undo
81 81
         }
82 82
     }
83 83
     
84
-   /**
85
-    * @return Mailcode_Parser_Safeguard_Placeholder_Locator_Location[]
86
-    */
84
+    /**
85
+     * @return Mailcode_Parser_Safeguard_Placeholder_Locator_Location[]
86
+     */
87 87
     public function getLocations() : array
88 88
     {
89 89
         return $this->instances;
90 90
     }
91 91
     
92
-   /**
93
-    * Retrieves a location by its index in the locations list (in 
94
-    * ascending order as found in the subject string, zero based.)
95
-    * 
96
-    * @param int $index
97
-    * @return Mailcode_Parser_Safeguard_Placeholder_Locator_Location|NULL
98
-    */
92
+    /**
93
+     * Retrieves a location by its index in the locations list (in 
94
+     * ascending order as found in the subject string, zero based.)
95
+     * 
96
+     * @param int $index
97
+     * @return Mailcode_Parser_Safeguard_Placeholder_Locator_Location|NULL
98
+     */
99 99
     public function getLocationByIndex(int $index) : ?Mailcode_Parser_Safeguard_Placeholder_Locator_Location
100 100
     {
101 101
         if(isset($this->instances[$index]))
@@ -106,19 +106,19 @@  discard block
 block discarded – undo
106 106
         return null;
107 107
     }
108 108
     
109
-   /**
110
-    * Replaces the placeholder at the location with the specified
111
-    * replacement text.
112
-    * 
113
-    * NOTE: The replacement text MUST contain the original placeholder
114
-    * for this to work. An exception will be triggered otherwise.
115
-    * 
116
-    * @param Mailcode_Parser_Safeguard_Placeholder_Locator_Location $location
117
-    * @param string $replacementText
118
-    * @throws Mailcode_Exception
119
-    * 
120
-    * @see Mailcode_Parser_Safeguard_Placeholder_Locator_Replacer::ERROR_PLACEHOLDER_STRING_MISSING
121
-    */
109
+    /**
110
+     * Replaces the placeholder at the location with the specified
111
+     * replacement text.
112
+     * 
113
+     * NOTE: The replacement text MUST contain the original placeholder
114
+     * for this to work. An exception will be triggered otherwise.
115
+     * 
116
+     * @param Mailcode_Parser_Safeguard_Placeholder_Locator_Location $location
117
+     * @param string $replacementText
118
+     * @throws Mailcode_Exception
119
+     * 
120
+     * @see Mailcode_Parser_Safeguard_Placeholder_Locator_Replacer::ERROR_PLACEHOLDER_STRING_MISSING
121
+     */
122 122
     public function replaceWith(Mailcode_Parser_Safeguard_Placeholder_Locator_Location $location, string $replacementText) : void
123 123
     {
124 124
         $replacer = new Mailcode_Parser_Safeguard_Placeholder_Locator_Replacer(
@@ -130,11 +130,11 @@  discard block
 block discarded – undo
130 130
         $this->subject = $replacer->replace();
131 131
     }
132 132
     
133
-   /**
134
-    * Retrieves the subject string, with all changes that were made, if any. 
135
-    *  
136
-    * @return string
137
-    */
133
+    /**
134
+     * Retrieves the subject string, with all changes that were made, if any. 
135
+     *  
136
+     * @return string
137
+     */
138 138
     public function getSubjectString() : string
139 139
     {
140 140
         return $this->subject;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         $needle = $this->placeholder->getReplacementText();
64 64
         $index = 0;
65 65
         
66
-        while(($lastPos = mb_strpos($this->subject, $needle, $lastPos)) !== false)
66
+        while (($lastPos = mb_strpos($this->subject, $needle, $lastPos)) !== false)
67 67
         {
68 68
             $length = mb_strlen($needle);
69 69
             
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     */
99 99
     public function getLocationByIndex(int $index) : ?Mailcode_Parser_Safeguard_Placeholder_Locator_Location
100 100
     {
101
-        if(isset($this->instances[$index]))
101
+        if (isset($this->instances[$index]))
102 102
         {
103 103
             return $this->instances[$index];
104 104
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/FormatterLocation.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -22,14 +22,14 @@  discard block
 block discarded – undo
22 22
  */
23 23
 abstract class Mailcode_Parser_Safeguard_FormatterLocation
24 24
 {
25
-   /**
26
-    * @var Mailcode_Parser_Safeguard_Formatter
27
-    */
25
+    /**
26
+     * @var Mailcode_Parser_Safeguard_Formatter
27
+     */
28 28
     protected $formatter;
29 29
     
30
-   /**
31
-    * @var Mailcode_Parser_Safeguard_Placeholder_Locator_Location
32
-    */
30
+    /**
31
+     * @var Mailcode_Parser_Safeguard_Placeholder_Locator_Location
32
+     */
33 33
     protected $location;
34 34
     
35 35
     public function __construct(Mailcode_Parser_Safeguard_Formatter $formatter, Mailcode_Parser_Safeguard_Placeholder_Locator_Location $location)
@@ -42,22 +42,22 @@  discard block
 block discarded – undo
42 42
     
43 43
     abstract protected function init() : void; 
44 44
     
45
-   /**
46
-    * Whether this specific placeholder location needs to be adjusted.
47
-    * 
48
-    * @return bool
49
-    */
45
+    /**
46
+     * Whether this specific placeholder location needs to be adjusted.
47
+     * 
48
+     * @return bool
49
+     */
50 50
     abstract public function requiresAdjustment() : bool;
51 51
     
52 52
     abstract protected function getAdjustedText() : string;
53 53
     
54
-   /**
55
-    * Retrieves the placeholder text, adjusted as needed by the
56
-    * formatter. If no adjustments are required, this will simply
57
-    * return the vanilla placeholder string.
58
-    *  
59
-    * @return string
60
-    */
54
+    /**
55
+     * Retrieves the placeholder text, adjusted as needed by the
56
+     * formatter. If no adjustments are required, this will simply
57
+     * return the vanilla placeholder string.
58
+     *  
59
+     * @return string
60
+     */
61 61
     public function getPlaceholderText() : string
62 62
     {
63 63
         if($this->requiresAdjustment())
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     */
61 61
     public function getPlaceholderText() : string
62 62
     {
63
-        if($this->requiresAdjustment())
63
+        if ($this->requiresAdjustment())
64 64
         {
65 65
             $text = $this->getAdjustedText();
66 66
             
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer/Token/Operand.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@  discard block
 block discarded – undo
30 30
         return $this->getSign();
31 31
     }
32 32
     
33
-   /**
34
-    * Retrieves all known comparison operator signs.
35
-    * @return string[]
36
-    */
33
+    /**
34
+     * Retrieves all known comparison operator signs.
35
+     * @return string[]
36
+     */
37 37
     public static function getComparisonSigns() : array
38 38
     {
39 39
         return array(
@@ -46,10 +46,10 @@  discard block
 block discarded – undo
46 46
         );
47 47
     }
48 48
     
49
-   /**
50
-    * Retrieves all known arithmetic operator signs.
51
-    * @return string[]
52
-    */
49
+    /**
50
+     * Retrieves all known arithmetic operator signs.
51
+     * @return string[]
52
+     */
53 53
     public static function getArithmeticSigns() : array
54 54
     {
55 55
         return array(
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
         );
61 61
     }
62 62
     
63
-   /**
64
-    * Whether the operator is comparison related (equals, not equals, smaller, greater...).
65
-    *  
66
-    * @return bool
67
-    */
63
+    /**
64
+     * Whether the operator is comparison related (equals, not equals, smaller, greater...).
65
+     *  
66
+     * @return bool
67
+     */
68 68
     public function isComparator() : bool
69 69
     {
70 70
         return 
@@ -76,11 +76,11 @@  discard block
 block discarded – undo
76 76
         $this->isSmallerOrEquals();
77 77
     }
78 78
     
79
-   /**
80
-    * Whether the operator is calculation related (minus, plus, divide, multiply).
81
-    * 
82
-    * @return bool
83
-    */
79
+    /**
80
+     * Whether the operator is calculation related (minus, plus, divide, multiply).
81
+     * 
82
+     * @return bool
83
+     */
84 84
     public function isCalculator() : bool
85 85
     {
86 86
         return 
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard.php 3 patches
Indentation   +150 added lines, -150 removed lines patch added patch discarded remove patch
@@ -61,50 +61,50 @@  discard block
 block discarded – undo
61 61
     
62 62
     const ERROR_NOT_A_SINGLE_LINES_FORMATTER = 47806;
63 63
     
64
-   /**
65
-    * @var Mailcode_Parser
66
-    */
64
+    /**
65
+     * @var Mailcode_Parser
66
+     */
67 67
     protected $parser;
68 68
     
69
-   /**
70
-    * @var Mailcode_Collection
71
-    */
69
+    /**
70
+     * @var Mailcode_Collection
71
+     */
72 72
     protected $commands;
73 73
     
74
-   /**
75
-    * @var string
76
-    */
74
+    /**
75
+     * @var string
76
+     */
77 77
     protected $originalString;
78 78
     
79
-   /**
80
-    * @var Mailcode_Collection
81
-    */
79
+    /**
80
+     * @var Mailcode_Collection
81
+     */
82 82
     protected $collection;
83 83
     
84
-   /**
85
-    * Counter for the placeholders, global for all placeholders.
86
-    * @var integer
87
-    */
84
+    /**
85
+     * Counter for the placeholders, global for all placeholders.
86
+     * @var integer
87
+     */
88 88
     private static $counter = 0;
89 89
     
90
-   /**
91
-    * @var Mailcode_Parser_Safeguard_Placeholder[]
92
-    */
90
+    /**
91
+     * @var Mailcode_Parser_Safeguard_Placeholder[]
92
+     */
93 93
     protected $placeholders;
94 94
     
95
-   /**
96
-    * @var string
97
-    */
95
+    /**
96
+     * @var string
97
+     */
98 98
     protected $delimiter = '__';
99 99
     
100
-   /**
101
-    * @var string[]|NULL
102
-    */
100
+    /**
101
+     * @var string[]|NULL
102
+     */
103 103
     protected $placeholderStrings;
104 104
     
105
-   /**
106
-    * @var Mailcode_Parser_Safeguard_Formatter
107
-    */
105
+    /**
106
+     * @var Mailcode_Parser_Safeguard_Formatter
107
+     */
108 108
     protected $formatter;
109 109
     
110 110
     public function __construct(Mailcode_Parser $parser, string $subject)
@@ -113,25 +113,25 @@  discard block
 block discarded – undo
113 113
         $this->originalString = $subject;
114 114
     }
115 115
     
116
-   /**
117
-    * Retrieves the string the safeguard was created for.
118
-    * 
119
-    * @return string
120
-    */
116
+    /**
117
+     * Retrieves the string the safeguard was created for.
118
+     * 
119
+     * @return string
120
+     */
121 121
     public function getOriginalString() : string
122 122
     {
123 123
         return $this->originalString;
124 124
     }
125 125
     
126
-   /**
127
-    * Sets the delimiter character sequence used to prepend
128
-    * and append to the placeholders.
129
-    * 
130
-    * The delimiter's default is "__" (two underscores).
131
-    * 
132
-    * @param string $delimiter
133
-    * @return Mailcode_Parser_Safeguard
134
-    */
126
+    /**
127
+     * Sets the delimiter character sequence used to prepend
128
+     * and append to the placeholders.
129
+     * 
130
+     * The delimiter's default is "__" (two underscores).
131
+     * 
132
+     * @param string $delimiter
133
+     * @return Mailcode_Parser_Safeguard
134
+     */
135 135
     public function setDelimiter(string $delimiter) : Mailcode_Parser_Safeguard
136 136
     {
137 137
         if(empty($delimiter))
@@ -153,15 +153,15 @@  discard block
 block discarded – undo
153 153
         return $this->delimiter;
154 154
     }
155 155
     
156
-   /**
157
-    * Retrieves the safe string in which all commands have been replaced
158
-    * by placeholder strings.
159
-    *
160
-    * @return string
161
-    * @throws Mailcode_Exception 
162
-    *
163
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
164
-    */
156
+    /**
157
+     * Retrieves the safe string in which all commands have been replaced
158
+     * by placeholder strings.
159
+     *
160
+     * @return string
161
+     * @throws Mailcode_Exception 
162
+     *
163
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
164
+     */
165 165
     public function makeSafe() : string
166 166
     {
167 167
         $this->requireValidCollection();
@@ -169,16 +169,16 @@  discard block
 block discarded – undo
169 169
         return $this->makeSafePartial();
170 170
     }
171 171
     
172
-   /**
173
-    * Like makeSafe(), but allows partial (invalid) commands: use this
174
-    * if the subject string may contain only part of the whole set of
175
-    * commands. 
176
-    * 
177
-    * Example: parsing a text with an opening if statement, without the 
178
-    * matching end statement.
179
-    * 
180
-    * @return string
181
-    */
172
+    /**
173
+     * Like makeSafe(), but allows partial (invalid) commands: use this
174
+     * if the subject string may contain only part of the whole set of
175
+     * commands. 
176
+     * 
177
+     * Example: parsing a text with an opening if statement, without the 
178
+     * matching end statement.
179
+     * 
180
+     * @return string
181
+     */
182 182
     public function makeSafePartial() : string
183 183
     {
184 184
         $replaces = $this->getReplaces();
@@ -228,10 +228,10 @@  discard block
 block discarded – undo
228 228
         throw $this->exceptionWrongFormatter(Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting::class);
229 229
     }
230 230
     
231
-   /**
232
-    * Enables the formatter that ensures that all commands that
233
-    * @return Mailcode_Parser_Safeguard_Formatter_SingleLines
234
-    */
231
+    /**
232
+     * Enables the formatter that ensures that all commands that
233
+     * @return Mailcode_Parser_Safeguard_Formatter_SingleLines
234
+     */
235 235
     public function selectSingleLinesFormatter() : Mailcode_Parser_Safeguard_Formatter_SingleLines
236 236
     {
237 237
         $formatter = $this->selectFormatter('SingleLines');
@@ -256,13 +256,13 @@  discard block
 block discarded – undo
256 256
         );
257 257
     }
258 258
     
259
-   /**
260
-    * Retrieves an associative array with pairs of
261
-    * [placeholder string => replacement text]. 
262
-    * 
263
-    * @param bool $highlighted
264
-    * @return string[]string
265
-    */
259
+    /**
260
+     * Retrieves an associative array with pairs of
261
+     * [placeholder string => replacement text]. 
262
+     * 
263
+     * @param bool $highlighted
264
+     * @return string[]string
265
+     */
266 266
     protected function getReplaces(bool $highlighted=false, bool $normalize=false) : array
267 267
     {
268 268
         $placeholders = $this->getPlaceholders();
@@ -313,12 +313,12 @@  discard block
 block discarded – undo
313 313
         return $placeholder->getReplacementText();
314 314
     }
315 315
     
316
-   /**
317
-    * Retrieves all placeholders that have to be added to
318
-    * the subject text.
319
-    * 
320
-    * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
321
-    */
316
+    /**
317
+     * Retrieves all placeholders that have to be added to
318
+     * the subject text.
319
+     * 
320
+     * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
321
+     */
322 322
     public function getPlaceholders()
323 323
     {
324 324
         if(isset($this->placeholders))
@@ -373,17 +373,17 @@  discard block
 block discarded – undo
373 373
         return str_replace($placeholderStrings, array_values($replaces), $string);
374 374
     }
375 375
     
376
-   /**
377
-    * Makes the string whole again after transforming or filtering it,
378
-    * by replacing the command placeholders with the original commands.
379
-    *
380
-    * @param string $string
381
-    * @return string
382
-    * @throws Mailcode_Exception
383
-    *
384
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
385
-    * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
386
-    */
376
+    /**
377
+     * Makes the string whole again after transforming or filtering it,
378
+     * by replacing the command placeholders with the original commands.
379
+     *
380
+     * @param string $string
381
+     * @return string
382
+     * @throws Mailcode_Exception
383
+     *
384
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
385
+     * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
386
+     */
387 387
     public function makeWhole(string $string) : string
388 388
     {
389 389
         return $this->restore(
@@ -393,15 +393,15 @@  discard block
 block discarded – undo
393 393
         );
394 394
     }
395 395
     
396
-   /**
397
-    * Like `makeWhole()`, but ignores missing command placeholders.
398
-    *
399
-    * @param string $string
400
-    * @return string
401
-    * @throws Mailcode_Exception
402
-    *
403
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
404
-    */
396
+    /**
397
+     * Like `makeWhole()`, but ignores missing command placeholders.
398
+     *
399
+     * @param string $string
400
+     * @return string
401
+     * @throws Mailcode_Exception
402
+     *
403
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
404
+     */
405 405
     public function makeWholePartial(string $string) : string
406 406
     {
407 407
         return $this->restore(
@@ -411,20 +411,20 @@  discard block
 block discarded – undo
411 411
         );
412 412
     }
413 413
 
414
-   /**
415
-    * Like `makeWhole()`, but replaces the commands with a syntax
416
-    * highlighted version, meant for human readable texts only.
417
-    * 
418
-    * Note: the commands lose their functionality (They cannot be 
419
-    * parsed from that string again).
420
-    *
421
-    * @param string $string
422
-    * @return string
423
-    * @throws Mailcode_Exception
424
-    *
425
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
426
-    * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
427
-    */
414
+    /**
415
+     * Like `makeWhole()`, but replaces the commands with a syntax
416
+     * highlighted version, meant for human readable texts only.
417
+     * 
418
+     * Note: the commands lose their functionality (They cannot be 
419
+     * parsed from that string again).
420
+     *
421
+     * @param string $string
422
+     * @return string
423
+     * @throws Mailcode_Exception
424
+     *
425
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
426
+     * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
427
+     */
428 428
     public function makeHighlighted(string $string) : string
429 429
     {
430 430
         return $this->restore(
@@ -434,15 +434,15 @@  discard block
 block discarded – undo
434 434
         );
435 435
     }
436 436
     
437
-   /**
438
-    * Like `makeHighlighted()`, but ignores missing command placeholders.
439
-    * 
440
-    * @param string $string
441
-    * @return string
442
-    * @throws Mailcode_Exception
443
-    *
444
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
445
-    */
437
+    /**
438
+     * Like `makeHighlighted()`, but ignores missing command placeholders.
439
+     * 
440
+     * @param string $string
441
+     * @return string
442
+     * @throws Mailcode_Exception
443
+     *
444
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
445
+     */
446 446
     public function makeHighlightedPartial(string $string) : string
447 447
     {
448 448
         return $this->restore(
@@ -452,11 +452,11 @@  discard block
 block discarded – undo
452 452
         );
453 453
     }
454 454
     
455
-   /**
456
-    * Retrieves the commands collection contained in the string.
457
-    * 
458
-    * @return Mailcode_Collection
459
-    */
455
+    /**
456
+     * Retrieves the commands collection contained in the string.
457
+     * 
458
+     * @return Mailcode_Collection
459
+     */
460 460
     public function getCollection() : Mailcode_Collection
461 461
     {
462 462
         if(isset($this->collection))
@@ -474,11 +474,11 @@  discard block
 block discarded – undo
474 474
         return $this->getCollection()->isValid();
475 475
     }
476 476
     
477
-   /**
478
-    * @throws Mailcode_Exception
479
-    * 
480
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
481
-    */
477
+    /**
478
+     * @throws Mailcode_Exception
479
+     * 
480
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
481
+     */
482 482
     protected function requireValidCollection() : void
483 483
     {
484 484
         if($this->getCollection()->isValid())
@@ -497,11 +497,11 @@  discard block
 block discarded – undo
497 497
         );
498 498
     }
499 499
     
500
-   /**
501
-    * Retrieves a list of all placeholder IDs used in the text.
502
-    * 
503
-    * @return string[]
504
-    */
500
+    /**
501
+     * Retrieves a list of all placeholder IDs used in the text.
502
+     * 
503
+     * @return string[]
504
+     */
505 505
     public function getPlaceholderStrings() : array
506 506
     {
507 507
         if(is_array($this->placeholderStrings))
@@ -528,13 +528,13 @@  discard block
 block discarded – undo
528 528
         return in_array($subject, $ids);
529 529
     }
530 530
     
531
-   /**
532
-    * Retrieves a placeholder instance by its ID.
533
-    * 
534
-    * @param int $id
535
-    * @throws Mailcode_Exception If the placeholder was not found.
536
-    * @return Mailcode_Parser_Safeguard_Placeholder
537
-    */
531
+    /**
532
+     * Retrieves a placeholder instance by its ID.
533
+     * 
534
+     * @param int $id
535
+     * @throws Mailcode_Exception If the placeholder was not found.
536
+     * @return Mailcode_Parser_Safeguard_Placeholder
537
+     */
538 538
     public function getPlaceholderByID(int $id) : Mailcode_Parser_Safeguard_Placeholder
539 539
     {
540 540
         $placeholders = $this->getPlaceholders();
@@ -557,13 +557,13 @@  discard block
 block discarded – undo
557 557
         );
558 558
     }
559 559
     
560
-   /**
561
-    * Retrieves a placeholder instance by its replacement text.
562
-    * 
563
-    * @param string $string
564
-    * @throws Mailcode_Exception
565
-    * @return Mailcode_Parser_Safeguard_Placeholder
566
-    */
560
+    /**
561
+     * Retrieves a placeholder instance by its replacement text.
562
+     * 
563
+     * @param string $string
564
+     * @throws Mailcode_Exception
565
+     * @return Mailcode_Parser_Safeguard_Placeholder
566
+     */
567 567
     public function getPlaceholderByString(string $string) : Mailcode_Parser_Safeguard_Placeholder
568 568
     {
569 569
         $placeholders = $this->getPlaceholders();
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     */
135 135
     public function setDelimiter(string $delimiter) : Mailcode_Parser_Safeguard
136 136
     {
137
-        if(empty($delimiter))
137
+        if (empty($delimiter))
138 138
         {
139 139
             throw new Mailcode_Exception(
140 140
                 'Empty delimiter',
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         $safe = str_replace(array_values($replaces), array_keys($replaces), $this->originalString);
187 187
 
188 188
         // If a formatter has been selected, let it modify the string.
189
-        if(isset($this->formatter))
189
+        if (isset($this->formatter))
190 190
         {
191 191
             $safe = $this->formatter->format($safe);
192 192
         }
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
     {
199 199
         $class = 'Mailcode\Mailcode_Parser_Safeguard_Formatter_'.$formatterID;
200 200
         
201
-        if(class_exists($class))
201
+        if (class_exists($class))
202 202
         {
203 203
             $this->formatter = new $class($this);
204 204
             
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
     {
221 221
         $formatter = $this->selectFormatter('HTMLHighlighting');
222 222
         
223
-        if($formatter instanceof Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting)
223
+        if ($formatter instanceof Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting)
224 224
         {
225 225
             return $formatter;
226 226
         }
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
     {
237 237
         $formatter = $this->selectFormatter('SingleLines');
238 238
         
239
-        if($formatter instanceof Mailcode_Parser_Safeguard_Formatter_SingleLines)
239
+        if ($formatter instanceof Mailcode_Parser_Safeguard_Formatter_SingleLines)
240 240
         {
241 241
             return $formatter;
242 242
         }
@@ -263,22 +263,22 @@  discard block
 block discarded – undo
263 263
     * @param bool $highlighted
264 264
     * @return string[]string
265 265
     */
266
-    protected function getReplaces(bool $highlighted=false, bool $normalize=false) : array
266
+    protected function getReplaces(bool $highlighted = false, bool $normalize = false) : array
267 267
     {
268 268
         $placeholders = $this->getPlaceholders();
269 269
         
270 270
         $replaces = array();
271 271
         
272
-        foreach($placeholders as $placeholder)
272
+        foreach ($placeholders as $placeholder)
273 273
         {
274 274
             $replace = '';
275 275
             $needle = $placeholder->getReplacementText();
276 276
             
277
-            if($highlighted)
277
+            if ($highlighted)
278 278
             {
279 279
                 $formattedNeedle = $this->formatter->getReplaceNeedle($placeholder);
280 280
                 
281
-                if($formattedNeedle !== $needle)
281
+                if ($formattedNeedle !== $needle)
282 282
                 {
283 283
                     $replaces[$formattedNeedle] = $placeholder->getHighlightedText();
284 284
                     $replace = $placeholder->getNormalizedText();
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
                     $replace = $placeholder->getHighlightedText();
289 289
                 }
290 290
             }
291
-            else if($normalize)
291
+            else if ($normalize)
292 292
             {
293 293
                 $replace = $placeholder->getNormalizedText();
294 294
             }
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
     
306 306
     protected function getReplaceNeedle(Mailcode_Parser_Safeguard_Placeholder $placeholder) : string
307 307
     {
308
-        if(isset($this->formatter))
308
+        if (isset($this->formatter))
309 309
         {
310 310
             return $this->formatter->getReplaceNeedle($placeholder);
311 311
         }
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
     */
322 322
     public function getPlaceholders()
323 323
     {
324
-        if(isset($this->placeholders))
324
+        if (isset($this->placeholders))
325 325
         {
326 326
             return $this->placeholders;
327 327
         }
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
         
331 331
         $cmds = $this->getCollection()->getGroupedByHash();
332 332
         
333
-        foreach($cmds as $command)
333
+        foreach ($cmds as $command)
334 334
         {
335 335
             self::$counter++;
336 336
             
@@ -344,9 +344,9 @@  discard block
 block discarded – undo
344 344
         return $this->placeholders;
345 345
     }
346 346
     
347
-    protected function restore(string $string, bool $partial=false, bool $highlighted=false) : string
347
+    protected function restore(string $string, bool $partial = false, bool $highlighted = false) : string
348 348
     {
349
-        if(!$partial)
349
+        if (!$partial)
350 350
         {
351 351
             $this->requireValidCollection();
352 352
         }
@@ -355,9 +355,9 @@  discard block
 block discarded – undo
355 355
         
356 356
         $placeholderStrings = array_keys($replaces);
357 357
         
358
-        foreach($placeholderStrings as $search)
358
+        foreach ($placeholderStrings as $search)
359 359
         {
360
-            if(!$partial && !$highlighted && !strstr($string, $search))
360
+            if (!$partial && !$highlighted && !strstr($string, $search))
361 361
             {
362 362
                 throw new Mailcode_Exception(
363 363
                     'Command placeholder not found',
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
     */
460 460
     public function getCollection() : Mailcode_Collection
461 461
     {
462
-        if(isset($this->collection))
462
+        if (isset($this->collection))
463 463
         {
464 464
             return $this->collection;
465 465
         }
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
     */
482 482
     protected function requireValidCollection() : void
483 483
     {
484
-        if($this->getCollection()->isValid())
484
+        if ($this->getCollection()->isValid())
485 485
         {
486 486
             return;
487 487
         }
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
     */
505 505
     public function getPlaceholderStrings() : array
506 506
     {
507
-        if(is_array($this->placeholderStrings))
507
+        if (is_array($this->placeholderStrings))
508 508
         {
509 509
             return $this->placeholderStrings;
510 510
         }
@@ -513,7 +513,7 @@  discard block
 block discarded – undo
513 513
         
514 514
         $this->placeholderStrings = array();
515 515
         
516
-        foreach($placeholders as $placeholder)
516
+        foreach ($placeholders as $placeholder)
517 517
         {
518 518
             $this->placeholderStrings[] = $placeholder->getReplacementText();
519 519
         }
@@ -539,9 +539,9 @@  discard block
 block discarded – undo
539 539
     {
540 540
         $placeholders = $this->getPlaceholders();
541 541
         
542
-        foreach($placeholders as $placeholder)
542
+        foreach ($placeholders as $placeholder)
543 543
         {
544
-            if($placeholder->getID() === $id)
544
+            if ($placeholder->getID() === $id)
545 545
             {
546 546
                 return $placeholder;
547 547
             }
@@ -568,9 +568,9 @@  discard block
 block discarded – undo
568 568
     {
569 569
         $placeholders = $this->getPlaceholders();
570 570
         
571
-        foreach($placeholders as $placeholder)
571
+        foreach ($placeholders as $placeholder)
572 572
         {
573
-            if($placeholder->getReplacementText() === $string)
573
+            if ($placeholder->getReplacementText() === $string)
574 574
             {
575 575
                 return $placeholder;
576 576
             }
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -282,17 +282,14 @@
 block discarded – undo
282 282
                 {
283 283
                     $replaces[$formattedNeedle] = $placeholder->getHighlightedText();
284 284
                     $replace = $placeholder->getNormalizedText();
285
-                }
286
-                else
285
+                } else
287 286
                 {
288 287
                     $replace = $placeholder->getHighlightedText();
289 288
                 }
290
-            }
291
-            else if($normalize)
289
+            } else if($normalize)
292 290
             {
293 291
                 $replace = $placeholder->getNormalizedText();
294
-            }
295
-            else
292
+            } else
296 293
             {
297 294
                 $replace = $placeholder->getOriginalText();
298 295
             }
Please login to merge, or discard this patch.
src/Mailcode/Factory/CommandSets/Set/Misc.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     
35 35
         $this->instantiator->checkCommand($cmd);
36 36
         
37
-        if($cmd instanceof Mailcode_Commands_Command_Comment)
37
+        if ($cmd instanceof Mailcode_Commands_Command_Comment)
38 38
         {
39 39
             return $cmd;
40 40
         }
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         throw $this->instantiator->exceptionUnexpectedType('Comment', $cmd);
43 43
     }
44 44
     
45
-    public function for(string $sourceVariable, string $loopVariable) : Mailcode_Commands_Command_For
45
+    public function for (string $sourceVariable, string $loopVariable) : Mailcode_Commands_Command_For
46 46
     {
47 47
         $sourceVariable = '$'.ltrim($sourceVariable, '$');
48 48
         $loopVariable = '$'.ltrim($loopVariable, '$');
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         
65 65
         $this->instantiator->checkCommand($cmd);
66 66
         
67
-        if($cmd instanceof Mailcode_Commands_Command_For)
67
+        if ($cmd instanceof Mailcode_Commands_Command_For)
68 68
         {
69 69
             return $cmd;
70 70
         }
Please login to merge, or discard this patch.
src/Mailcode/Commands/Command/For.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -27,19 +27,19 @@
 block discarded – undo
27 27
     const VALIDATION_WRONG_KEYWORD = 49702;
28 28
     const VALIDATION_VARIABLE_NAME_IS_THE_SAME = 49703;
29 29
     
30
-   /**
31
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
32
-    */
30
+    /**
31
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
32
+     */
33 33
     private $loopVar;
34 34
     
35
-   /**
36
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
37
-    */
35
+    /**
36
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
37
+     */
38 38
     private $sourceVar;
39 39
     
40
-   /**
41
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
42
-    */
40
+    /**
41
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
42
+     */
43 43
     private $keyword;
44 44
     
45 45
     public function getName() : string
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     
89 89
     public function getSourceVariable() : Mailcode_Variables_Variable
90 90
     {
91
-        if(isset($this->sourceVar))
91
+        if (isset($this->sourceVar))
92 92
         {
93 93
             return $this->sourceVar->getVariable();
94 94
         }
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     
103 103
     public function getLoopVariable() : Mailcode_Variables_Variable
104 104
     {
105
-        if(isset($this->loopVar))
105
+        if (isset($this->loopVar))
106 106
         {
107 107
             return $this->loopVar->getVariable();
108 108
         }
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
         $this->keyword = $info->getKeywordByIndex(1);
123 123
         $this->sourceVar = $info->getVariableByIndex(2);
124 124
         
125
-        if(!$this->loopVar || !$this->keyword || !$this->sourceVar)
125
+        if (!$this->loopVar || !$this->keyword || !$this->sourceVar)
126 126
         {
127 127
             $this->validationResult->makeError(
128 128
                 t('Not a valid for loop.').' '.t('Is the %1$s keyword missing?', 'in:'),
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     
136 136
     protected function validateSyntax_keyword() : void
137 137
     {
138
-        if($this->keyword->isForIn())
138
+        if ($this->keyword->isForIn())
139 139
         {
140 140
             return;
141 141
         }
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     
149 149
     protected function validateSyntax_variable_names() : void
150 150
     {
151
-        if($this->sourceVar->getVariable()->getFullName() !== $this->loopVar->getVariable()->getFullName())
151
+        if ($this->sourceVar->getVariable()->getFullName() !== $this->loopVar->getVariable()->getFullName())
152 152
         {
153 153
             return;
154 154
         }
Please login to merge, or discard this patch.