Passed
Push — master ( b87bd2...81711e )
by Sebastian
03:45
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.php 2 patches
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.
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(
@@ -136,11 +136,11 @@  discard block
 block discarded – undo
136 136
         $this->subject = $subject;
137 137
     }
138 138
     
139
-   /**
140
-    * Retrieves the subject string, with all changes that were made, if any. 
141
-    *  
142
-    * @return string
143
-    */
139
+    /**
140
+     * Retrieves the subject string, with all changes that were made, if any. 
141
+     *  
142
+     * @return string
143
+     */
144 144
     public function getSubjectString() : string
145 145
     {
146 146
         return $this->subject;
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/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.
src/Mailcode/Parser/Safeguard/Restorer.php 3 patches
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -22,24 +22,24 @@  discard block
 block discarded – undo
22 22
  */
23 23
 class Mailcode_Parser_Safeguard_Restorer
24 24
 {
25
-   /**
26
-    * @var Mailcode_Parser_Safeguard
27
-    */
25
+    /**
26
+     * @var Mailcode_Parser_Safeguard
27
+     */
28 28
     private $safeguard;
29 29
     
30
-   /**
31
-    * @var bool
32
-    */
30
+    /**
31
+     * @var bool
32
+     */
33 33
     private $highlighted;
34 34
     
35
-   /**
36
-    * @var bool
37
-    */
35
+    /**
36
+     * @var bool
37
+     */
38 38
     private $normalize;
39 39
     
40
-   /**
41
-    * @var array<string,string>
42
-    */
40
+    /**
41
+     * @var array<string,string>
42
+     */
43 43
     private $replaces = array();
44 44
     
45 45
     public function __construct(Mailcode_Parser_Safeguard $safeguard, bool $highlighted, bool $normalize)
@@ -49,9 +49,9 @@  discard block
 block discarded – undo
49 49
         $this->normalize = $normalize;
50 50
     }
51 51
     
52
-   /**
53
-    * @return array<string,string>
54
-    */
52
+    /**
53
+     * @return array<string,string>
54
+     */
55 55
     public function getReplaces() : array
56 56
     {
57 57
         $placeholders = $this->safeguard->getPlaceholders();
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         
59 59
         $this->replaces = array();
60 60
         
61
-        foreach($placeholders as $placeholder)
61
+        foreach ($placeholders as $placeholder)
62 62
         {
63 63
             $this->processPlaceholder($placeholder);
64 64
         }
@@ -71,11 +71,11 @@  discard block
 block discarded – undo
71 71
         $replace = '';
72 72
         $needle = $placeholder->getReplacementText();
73 73
         
74
-        if($this->highlighted)
74
+        if ($this->highlighted)
75 75
         {
76 76
             $replace = $this->processPlaceholder_highlighted($placeholder, $needle);
77 77
         }
78
-        else if($this->normalize)
78
+        else if ($this->normalize)
79 79
         {
80 80
             $replace = $placeholder->getNormalizedText();
81 81
         }
@@ -91,14 +91,14 @@  discard block
 block discarded – undo
91 91
     {
92 92
         $formatter = $this->safeguard->getFormatter();
93 93
         
94
-        if(!$formatter)
94
+        if (!$formatter)
95 95
         {
96 96
             return $placeholder->getHighlightedText();
97 97
         }
98 98
         
99 99
         $formattedNeedle = $formatter->getReplaceNeedle($placeholder);
100 100
         
101
-        if($formattedNeedle !== $needle)
101
+        if ($formattedNeedle !== $needle)
102 102
         {
103 103
             $this->replaces[$formattedNeedle] = $placeholder->getHighlightedText();
104 104
             
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -74,12 +74,10 @@
 block discarded – undo
74 74
         if($this->highlighted)
75 75
         {
76 76
             $replace = $this->processPlaceholder_highlighted($placeholder, $needle);
77
-        }
78
-        else if($this->normalize)
77
+        } else if($this->normalize)
79 78
         {
80 79
             $replace = $placeholder->getNormalizedText();
81
-        }
82
-        else
80
+        } else
83 81
         {
84 82
             $replace = $placeholder->getOriginalText();
85 83
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard.php 2 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();
@@ -233,10 +233,10 @@  discard block
 block discarded – undo
233 233
         throw $this->exceptionWrongFormatter(Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting::class);
234 234
     }
235 235
     
236
-   /**
237
-    * Enables the formatter that ensures that all commands that
238
-    * @return Mailcode_Parser_Safeguard_Formatter_SingleLines
239
-    */
236
+    /**
237
+     * Enables the formatter that ensures that all commands that
238
+     * @return Mailcode_Parser_Safeguard_Formatter_SingleLines
239
+     */
240 240
     public function selectSingleLinesFormatter() : Mailcode_Parser_Safeguard_Formatter_SingleLines
241 241
     {
242 242
         $formatter = $this->selectFormatter('SingleLines');
@@ -261,25 +261,25 @@  discard block
 block discarded – undo
261 261
         );
262 262
     }
263 263
     
264
-   /**
265
-    * Retrieves an associative array with pairs of
266
-    * [placeholder string => replacement text]. 
267
-    * 
268
-    * @param bool $highlighted
269
-    * @return string[]string
270
-    */
264
+    /**
265
+     * Retrieves an associative array with pairs of
266
+     * [placeholder string => replacement text]. 
267
+     * 
268
+     * @param bool $highlighted
269
+     * @return string[]string
270
+     */
271 271
     protected function getReplaces(bool $highlighted=false, bool $normalize=false) : array
272 272
     {
273 273
         $restorer = new Mailcode_Parser_Safeguard_Restorer($this, $highlighted, $normalize);
274 274
         return $restorer->getReplaces();
275 275
     }
276 276
     
277
-   /**
278
-    * Retrieves all placeholders that have to be added to
279
-    * the subject text.
280
-    * 
281
-    * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
282
-    */
277
+    /**
278
+     * Retrieves all placeholders that have to be added to
279
+     * the subject text.
280
+     * 
281
+     * @return \Mailcode\Mailcode_Parser_Safeguard_Placeholder[]
282
+     */
283 283
     public function getPlaceholders()
284 284
     {
285 285
         if(isset($this->placeholders))
@@ -334,17 +334,17 @@  discard block
 block discarded – undo
334 334
         return str_replace($placeholderStrings, array_values($replaces), $string);
335 335
     }
336 336
     
337
-   /**
338
-    * Makes the string whole again after transforming or filtering it,
339
-    * by replacing the command placeholders with the original commands.
340
-    *
341
-    * @param string $string
342
-    * @return string
343
-    * @throws Mailcode_Exception
344
-    *
345
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
346
-    * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
347
-    */
337
+    /**
338
+     * Makes the string whole again after transforming or filtering it,
339
+     * by replacing the command placeholders with the original commands.
340
+     *
341
+     * @param string $string
342
+     * @return string
343
+     * @throws Mailcode_Exception
344
+     *
345
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
346
+     * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
347
+     */
348 348
     public function makeWhole(string $string) : string
349 349
     {
350 350
         return $this->restore(
@@ -354,15 +354,15 @@  discard block
 block discarded – undo
354 354
         );
355 355
     }
356 356
     
357
-   /**
358
-    * Like `makeWhole()`, but ignores missing command placeholders.
359
-    *
360
-    * @param string $string
361
-    * @return string
362
-    * @throws Mailcode_Exception
363
-    *
364
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
365
-    */
357
+    /**
358
+     * Like `makeWhole()`, but ignores missing command placeholders.
359
+     *
360
+     * @param string $string
361
+     * @return string
362
+     * @throws Mailcode_Exception
363
+     *
364
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
365
+     */
366 366
     public function makeWholePartial(string $string) : string
367 367
     {
368 368
         return $this->restore(
@@ -372,20 +372,20 @@  discard block
 block discarded – undo
372 372
         );
373 373
     }
374 374
 
375
-   /**
376
-    * Like `makeWhole()`, but replaces the commands with a syntax
377
-    * highlighted version, meant for human readable texts only.
378
-    * 
379
-    * Note: the commands lose their functionality (They cannot be 
380
-    * parsed from that string again).
381
-    *
382
-    * @param string $string
383
-    * @return string
384
-    * @throws Mailcode_Exception
385
-    *
386
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
387
-    * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
388
-    */
375
+    /**
376
+     * Like `makeWhole()`, but replaces the commands with a syntax
377
+     * highlighted version, meant for human readable texts only.
378
+     * 
379
+     * Note: the commands lose their functionality (They cannot be 
380
+     * parsed from that string again).
381
+     *
382
+     * @param string $string
383
+     * @return string
384
+     * @throws Mailcode_Exception
385
+     *
386
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
387
+     * @see Mailcode_Parser_Safeguard::ERROR_COMMAND_PLACEHOLDER_MISSING
388
+     */
389 389
     public function makeHighlighted(string $string) : string
390 390
     {
391 391
         return $this->restore(
@@ -395,15 +395,15 @@  discard block
 block discarded – undo
395 395
         );
396 396
     }
397 397
     
398
-   /**
399
-    * Like `makeHighlighted()`, but ignores missing command placeholders.
400
-    * 
401
-    * @param string $string
402
-    * @return string
403
-    * @throws Mailcode_Exception
404
-    *
405
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
406
-    */
398
+    /**
399
+     * Like `makeHighlighted()`, but ignores missing command placeholders.
400
+     * 
401
+     * @param string $string
402
+     * @return string
403
+     * @throws Mailcode_Exception
404
+     *
405
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
406
+     */
407 407
     public function makeHighlightedPartial(string $string) : string
408 408
     {
409 409
         return $this->restore(
@@ -413,11 +413,11 @@  discard block
 block discarded – undo
413 413
         );
414 414
     }
415 415
     
416
-   /**
417
-    * Retrieves the commands collection contained in the string.
418
-    * 
419
-    * @return Mailcode_Collection
420
-    */
416
+    /**
417
+     * Retrieves the commands collection contained in the string.
418
+     * 
419
+     * @return Mailcode_Collection
420
+     */
421 421
     public function getCollection() : Mailcode_Collection
422 422
     {
423 423
         if(isset($this->collection))
@@ -435,11 +435,11 @@  discard block
 block discarded – undo
435 435
         return $this->getCollection()->isValid();
436 436
     }
437 437
     
438
-   /**
439
-    * @throws Mailcode_Exception
440
-    * 
441
-    * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
442
-    */
438
+    /**
439
+     * @throws Mailcode_Exception
440
+     * 
441
+     * @see Mailcode_Parser_Safeguard::ERROR_INVALID_COMMANDS
442
+     */
443 443
     protected function requireValidCollection() : void
444 444
     {
445 445
         if($this->getCollection()->isValid())
@@ -458,11 +458,11 @@  discard block
 block discarded – undo
458 458
         );
459 459
     }
460 460
     
461
-   /**
462
-    * Retrieves a list of all placeholder IDs used in the text.
463
-    * 
464
-    * @return string[]
465
-    */
461
+    /**
462
+     * Retrieves a list of all placeholder IDs used in the text.
463
+     * 
464
+     * @return string[]
465
+     */
466 466
     public function getPlaceholderStrings() : array
467 467
     {
468 468
         if(is_array($this->placeholderStrings))
@@ -489,13 +489,13 @@  discard block
 block discarded – undo
489 489
         return in_array($subject, $ids);
490 490
     }
491 491
     
492
-   /**
493
-    * Retrieves a placeholder instance by its ID.
494
-    * 
495
-    * @param int $id
496
-    * @throws Mailcode_Exception If the placeholder was not found.
497
-    * @return Mailcode_Parser_Safeguard_Placeholder
498
-    */
492
+    /**
493
+     * Retrieves a placeholder instance by its ID.
494
+     * 
495
+     * @param int $id
496
+     * @throws Mailcode_Exception If the placeholder was not found.
497
+     * @return Mailcode_Parser_Safeguard_Placeholder
498
+     */
499 499
     public function getPlaceholderByID(int $id) : Mailcode_Parser_Safeguard_Placeholder
500 500
     {
501 501
         $placeholders = $this->getPlaceholders();
@@ -518,13 +518,13 @@  discard block
 block discarded – undo
518 518
         );
519 519
     }
520 520
     
521
-   /**
522
-    * Retrieves a placeholder instance by its replacement text.
523
-    * 
524
-    * @param string $string
525
-    * @throws Mailcode_Exception
526
-    * @return Mailcode_Parser_Safeguard_Placeholder
527
-    */
521
+    /**
522
+     * Retrieves a placeholder instance by its replacement text.
523
+     * 
524
+     * @param string $string
525
+     * @throws Mailcode_Exception
526
+     * @return Mailcode_Parser_Safeguard_Placeholder
527
+     */
528 528
     public function getPlaceholderByString(string $string) : Mailcode_Parser_Safeguard_Placeholder
529 529
     {
530 530
         $placeholders = $this->getPlaceholders();
Please login to merge, or discard this patch.
Spacing   +20 added lines, -20 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
         }
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
     {
204 204
         $class = 'Mailcode\Mailcode_Parser_Safeguard_Formatter_'.$formatterID;
205 205
         
206
-        if(class_exists($class))
206
+        if (class_exists($class))
207 207
         {
208 208
             $this->formatter = new $class($this);
209 209
             
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
     {
226 226
         $formatter = $this->selectFormatter('HTMLHighlighting');
227 227
         
228
-        if($formatter instanceof Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting)
228
+        if ($formatter instanceof Mailcode_Parser_Safeguard_Formatter_HTMLHighlighting)
229 229
         {
230 230
             return $formatter;
231 231
         }
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
     {
242 242
         $formatter = $this->selectFormatter('SingleLines');
243 243
         
244
-        if($formatter instanceof Mailcode_Parser_Safeguard_Formatter_SingleLines)
244
+        if ($formatter instanceof Mailcode_Parser_Safeguard_Formatter_SingleLines)
245 245
         {
246 246
             return $formatter;
247 247
         }
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
     * @param bool $highlighted
269 269
     * @return string[]string
270 270
     */
271
-    protected function getReplaces(bool $highlighted=false, bool $normalize=false) : array
271
+    protected function getReplaces(bool $highlighted = false, bool $normalize = false) : array
272 272
     {
273 273
         $restorer = new Mailcode_Parser_Safeguard_Restorer($this, $highlighted, $normalize);
274 274
         return $restorer->getReplaces();
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
     */
283 283
     public function getPlaceholders()
284 284
     {
285
-        if(isset($this->placeholders))
285
+        if (isset($this->placeholders))
286 286
         {
287 287
             return $this->placeholders;
288 288
         }
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
         
292 292
         $cmds = $this->getCollection()->getGroupedByHash();
293 293
         
294
-        foreach($cmds as $command)
294
+        foreach ($cmds as $command)
295 295
         {
296 296
             self::$counter++;
297 297
             
@@ -305,9 +305,9 @@  discard block
 block discarded – undo
305 305
         return $this->placeholders;
306 306
     }
307 307
     
308
-    protected function restore(string $string, bool $partial=false, bool $highlighted=false) : string
308
+    protected function restore(string $string, bool $partial = false, bool $highlighted = false) : string
309 309
     {
310
-        if(!$partial)
310
+        if (!$partial)
311 311
         {
312 312
             $this->requireValidCollection();
313 313
         }
@@ -316,9 +316,9 @@  discard block
 block discarded – undo
316 316
         
317 317
         $placeholderStrings = array_keys($replaces);
318 318
         
319
-        foreach($placeholderStrings as $search)
319
+        foreach ($placeholderStrings as $search)
320 320
         {
321
-            if(!$partial && !$highlighted && !strstr($string, $search))
321
+            if (!$partial && !$highlighted && !strstr($string, $search))
322 322
             {
323 323
                 throw new Mailcode_Exception(
324 324
                     'Command placeholder not found',
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
     */
421 421
     public function getCollection() : Mailcode_Collection
422 422
     {
423
-        if(isset($this->collection))
423
+        if (isset($this->collection))
424 424
         {
425 425
             return $this->collection;
426 426
         }
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
     */
443 443
     protected function requireValidCollection() : void
444 444
     {
445
-        if($this->getCollection()->isValid())
445
+        if ($this->getCollection()->isValid())
446 446
         {
447 447
             return;
448 448
         }
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
     */
466 466
     public function getPlaceholderStrings() : array
467 467
     {
468
-        if(is_array($this->placeholderStrings))
468
+        if (is_array($this->placeholderStrings))
469 469
         {
470 470
             return $this->placeholderStrings;
471 471
         }
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
         
475 475
         $this->placeholderStrings = array();
476 476
         
477
-        foreach($placeholders as $placeholder)
477
+        foreach ($placeholders as $placeholder)
478 478
         {
479 479
             $this->placeholderStrings[] = $placeholder->getReplacementText();
480 480
         }
@@ -500,9 +500,9 @@  discard block
 block discarded – undo
500 500
     {
501 501
         $placeholders = $this->getPlaceholders();
502 502
         
503
-        foreach($placeholders as $placeholder)
503
+        foreach ($placeholders as $placeholder)
504 504
         {
505
-            if($placeholder->getID() === $id)
505
+            if ($placeholder->getID() === $id)
506 506
             {
507 507
                 return $placeholder;
508 508
             }
@@ -529,9 +529,9 @@  discard block
 block discarded – undo
529 529
     {
530 530
         $placeholders = $this->getPlaceholders();
531 531
         
532
-        foreach($placeholders as $placeholder)
532
+        foreach ($placeholders as $placeholder)
533 533
         {
534
-            if($placeholder->getReplacementText() === $string)
534
+            if ($placeholder->getReplacementText() === $string)
535 535
             {
536 536
                 return $placeholder;
537 537
             }
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
@@ -32,49 +32,49 @@  discard block
 block discarded – undo
32 32
     const ERROR_COULD_NOT_FIND_PLACEHOLDER_TEXT = 63502;
33 33
     const ERROR_PLACEHOLDER_POSITION_ERRONEOUS = 63503;
34 34
     
35
-   /**
36
-    * @var string
37
-    */
35
+    /**
36
+     * @var string
37
+     */
38 38
     private $replacementText;
39 39
     
40
-   /**
41
-    * @var Mailcode_Parser_Safeguard_Placeholder_Locator
42
-    */
40
+    /**
41
+     * @var Mailcode_Parser_Safeguard_Placeholder_Locator
42
+     */
43 43
     private $locator;
44 44
     
45
-   /**
46
-    * @var Mailcode_Parser_Safeguard_Placeholder_Locator_Location
47
-    */
45
+    /**
46
+     * @var Mailcode_Parser_Safeguard_Placeholder_Locator_Location
47
+     */
48 48
     private $origin;
49 49
     
50
-   /**
51
-    * @var string
52
-    */
50
+    /**
51
+     * @var string
52
+     */
53 53
     private $placeholderText;
54 54
     
55
-   /**
56
-    * @var integer
57
-    */
55
+    /**
56
+     * @var integer
57
+     */
58 58
     private $offset = 0;
59 59
     
60
-   /**
61
-    * @var string
62
-    */
60
+    /**
61
+     * @var string
62
+     */
63 63
     private $subject;
64 64
     
65
-   /**
66
-    * @var integer
67
-    */
65
+    /**
66
+     * @var integer
67
+     */
68 68
     private $placeholderOffset = 0;
69 69
 
70
-   /**
71
-    * @var integer
72
-    */
70
+    /**
71
+     * @var integer
72
+     */
73 73
     private $placeholderLength = 0;
74 74
 
75
-   /**
76
-    * @var integer
77
-    */
75
+    /**
76
+     * @var integer
77
+     */
78 78
     private $lengthDifference = 0;
79 79
     
80 80
     public function __construct(Mailcode_Parser_Safeguard_Placeholder_Locator $locator, Mailcode_Parser_Safeguard_Placeholder_Locator_Location $origin, string $replacementText, string $subject)
@@ -93,11 +93,11 @@  discard block
 block discarded – undo
93 93
         $this->adjustPositions();
94 94
     }
95 95
     
96
-   /**
97
-    * Adjusts the positions of all locations that come after 
98
-    * this one, to account for the added string length of the
99
-    * placeholder that has been replaced.
100
-    */
96
+    /**
97
+     * Adjusts the positions of all locations that come after 
98
+     * this one, to account for the added string length of the
99
+     * placeholder that has been replaced.
100
+     */
101 101
     private function adjustPositions() : void
102 102
     {
103 103
         $locations = $this->origin->getNextAll();
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
         $locations = $this->origin->getNextAll();
104 104
         $offset = $this->lengthDifference;
105 105
 
106
-        foreach($locations as $location)
106
+        foreach ($locations as $location)
107 107
         {
108 108
             $location->updatePositionByOffset($offset);
109 109
         }
@@ -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.',
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
         // Failsafe check: the calculated new position
150 150
         // in the subject string should still equal the
151 151
         // placeholder string.
152
-        if($placeholder != $this->placeholderText)
152
+        if ($placeholder != $this->placeholderText)
153 153
         {
154 154
             throw new Mailcode_Exception(
155 155
                 'Localizing a safeguard placeholder failed.',
Please login to merge, or discard this patch.