Passed
Push — master ( d8dc61...dfdb64 )
by Sebastian
09:05
created
src/Mailcode/Parser/Statement/Tokenizer/Token.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@  discard block
 block discarded – undo
24 24
     protected string $matchedText;
25 25
     private ?Mailcode_Commands_Command $sourceCommand;
26 26
 
27
-   /**
28
-    * @var mixed
29
-    */
27
+    /**
28
+     * @var mixed
29
+     */
30 30
     protected $subject;
31 31
 
32 32
     /**
@@ -58,20 +58,20 @@  discard block
 block discarded – undo
58 58
         return $this->sourceCommand;
59 59
     }
60 60
     
61
-   /**
62
-    * The ID of the type. i.e. the class name ("Keyword", "StringLiteral").
63
-    * @return string
64
-    */
61
+    /**
62
+     * The ID of the type. i.e. the class name ("Keyword", "StringLiteral").
63
+     * @return string
64
+     */
65 65
     public function getTypeID() : string
66 66
     {
67 67
         $parts = explode('_', get_class($this));
68 68
         return array_pop($parts);
69 69
     }
70 70
     
71
-   /**
72
-    * Retrieves a unique ID of the token.
73
-    * @return string  
74
-    */
71
+    /**
72
+     * Retrieves a unique ID of the token.
73
+     * @return string  
74
+     */
75 75
     public function getID() : string
76 76
     {
77 77
         return $this->tokenID;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      * @param mixed $subject
37 37
      * @param Mailcode_Commands_Command|null $sourceCommand
38 38
      */
39
-    public function __construct(string $tokenID, string $matchedText, $subject=null, ?Mailcode_Commands_Command $sourceCommand=null)
39
+    public function __construct(string $tokenID, string $matchedText, $subject = null, ?Mailcode_Commands_Command $sourceCommand = null)
40 40
     {
41 41
         $this->tokenID = $tokenID;
42 42
         $this->matchedText = $matchedText;
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public function getName() : string
65 65
     {
66
-        if(isset($this->nameToken)) {
66
+        if (isset($this->nameToken)) {
67 67
             return $this->nameToken->getParamName();
68 68
         }
69 69
 
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer/SpecialChars.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
     {
102 102
         $replaces = array();
103 103
 
104
-        foreach(self::$charsEncoded as $char => $placeholder)
104
+        foreach (self::$charsEncoded as $char => $placeholder)
105 105
         {
106 106
             $escaped = self::$charsEscaped[$char];
107 107
 
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer/Token/Variable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      */
29 29
     public function getVariable() : Mailcode_Variables_Variable
30 30
     {
31
-        if($this->subject instanceof Mailcode_Variables_Variable)
31
+        if ($this->subject instanceof Mailcode_Variables_Variable)
32 32
         {
33 33
             return $this->subject;
34 34
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Info/Keywords.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     {
44 44
         $token = $this->info->getTokenByIndex($index);
45 45
 
46
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
46
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
47 47
         {
48 48
             return $token;
49 49
         }
@@ -62,9 +62,9 @@  discard block
 block discarded – undo
62 62
     {
63 63
         $tokens = $this->getAll();
64 64
 
65
-        foreach($tokens as $token)
65
+        foreach ($tokens as $token)
66 66
         {
67
-            if($token->getKeyword() === $name)
67
+            if ($token->getKeyword() === $name)
68 68
             {
69 69
                 return $token;
70 70
             }
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
         $result = array();
82 82
         $tokens = $this->info->getTokens();
83 83
 
84
-        foreach($tokens as $token)
84
+        foreach ($tokens as $token)
85 85
         {
86
-            if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
86
+            if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
87 87
             {
88 88
                 $result[] = $token;
89 89
             }
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      */
103 103
     public function setEnabled(string $keyword, bool $enabled) : Mailcode_Parser_Statement_Info_Keywords
104 104
     {
105
-        if($enabled)
105
+        if ($enabled)
106 106
         {
107 107
             return $this->add($keyword);
108 108
         }
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     {
122 122
         $keyword = rtrim($keyword, ':').':';
123 123
 
124
-        if(!$this->hasKeyword($keyword))
124
+        if (!$this->hasKeyword($keyword))
125 125
         {
126 126
             $this->tokenizer->appendKeyword($keyword);
127 127
         }
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 
167 167
         foreach ($keywords as $kw)
168 168
         {
169
-            if($kw->getKeyword() === $keyword)
169
+            if ($kw->getKeyword() === $keyword)
170 170
             {
171 171
                 return true;
172 172
             }
Please login to merge, or discard this patch.
src/Mailcode/Parser/StringPreProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      */
80 80
     private function stripStyleTags() : void
81 81
     {
82
-        if(!ConvertHelper::isStringHTML($this->subject))
82
+        if (!ConvertHelper::isStringHTML($this->subject))
83 83
         {
84 84
             return;
85 85
         }
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
     private function escapeRegexBracketMatch(string $subject, string $needle) : string
95 95
     {
96
-        $replacement =  str_replace(
96
+        $replacement = str_replace(
97 97
             array('{', '}'),
98 98
             array('\{', '\}'),
99 99
             $needle
Please login to merge, or discard this patch.
src/Mailcode/Factory/CommandSets/Set/Show/Snippet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 
37 37
         $this->instantiator->checkCommand($cmd);
38 38
 
39
-        if($cmd instanceof Mailcode_Commands_Command_ShowSnippet)
39
+        if ($cmd instanceof Mailcode_Commands_Command_ShowSnippet)
40 40
         {
41 41
             return $cmd;
42 42
         }
Please login to merge, or discard this patch.
src/Mailcode/Factory/CommandSets/Set/Show/URL.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,21 +33,21 @@  discard block
 block discarded – undo
33 33
      * @return Mailcode_Commands_Command_ShowURL
34 34
      * @throws Mailcode_Factory_Exception
35 35
      */
36
-    public function create(string $url, ?string $trackingID=null, array $queryParams=array()) : Mailcode_Commands_Command_ShowURL
36
+    public function create(string $url, ?string $trackingID = null, array $queryParams = array()) : Mailcode_Commands_Command_ShowURL
37 37
     {
38 38
         $contentID = PreParser::storeContent($url);
39 39
 
40 40
         $params = array();
41 41
         $params[] = (string)$contentID;
42 42
 
43
-        if($trackingID !== null)
43
+        if ($trackingID !== null)
44 44
         {
45 45
             $params[] = sprintf('"%s"', $trackingID);
46 46
         }
47 47
 
48
-        if(!empty($queryParams))
48
+        if (!empty($queryParams))
49 49
         {
50
-            foreach($queryParams as $name => $value)
50
+            foreach ($queryParams as $name => $value)
51 51
             {
52 52
                 $params[] = sprintf(
53 53
                     '"%s=%s"',
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
         $this->instantiator->checkCommand($cmd);
70 70
 
71
-        if($cmd instanceof Mailcode_Commands_Command_ShowURL)
71
+        if ($cmd instanceof Mailcode_Commands_Command_ShowURL)
72 72
         {
73 73
             return $cmd;
74 74
         }
Please login to merge, or discard this patch.
src/Mailcode/Factory/CommandSets/Set/Show/Phone.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      * @return Mailcode_Commands_Command_ShowPhone
36 36
      * @throws Mailcode_Factory_Exception
37 37
      */
38
-    public function create(string $variableName, string $sourceFormat, string $urlEncoding=Mailcode_Factory::URL_ENCODING_NONE) : Mailcode_Commands_Command_ShowPhone
38
+    public function create(string $variableName, string $sourceFormat, string $urlEncoding = Mailcode_Factory::URL_ENCODING_NONE) : Mailcode_Commands_Command_ShowPhone
39 39
     {
40 40
         $variableName = $this->instantiator->filterVariableName($variableName);
41 41
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         $this->instantiator->checkCommand($cmd);
59 59
         $this->instantiator->setEncoding($cmd, $urlEncoding);
60 60
 
61
-        if($cmd instanceof Mailcode_Commands_Command_ShowPhone)
61
+        if ($cmd instanceof Mailcode_Commands_Command_ShowPhone)
62 62
         {
63 63
             return $cmd;
64 64
         }
Please login to merge, or discard this patch.
src/Mailcode/Factory/CommandSets/Set/Show/Number.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
  */
24 24
 class Number extends Mailcode_Factory_CommandSets_Set
25 25
 {
26
-    public function create(string $variableName, string $formatString="", bool $absolute=false) : Mailcode_Commands_Command_ShowNumber
26
+    public function create(string $variableName, string $formatString = "", bool $absolute = false) : Mailcode_Commands_Command_ShowNumber
27 27
     {
28 28
         $variableName = $this->instantiator->filterVariableName($variableName);
29 29
         $paramsString = $this->compileNumberParams($formatString, $absolute);
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
         $this->instantiator->checkCommand($cmd);
43 43
 
44
-        if($cmd instanceof Mailcode_Commands_Command_ShowNumber)
44
+        if ($cmd instanceof Mailcode_Commands_Command_ShowNumber)
45 45
         {
46 46
             return $cmd;
47 47
         }
@@ -49,11 +49,11 @@  discard block
 block discarded – undo
49 49
         throw $this->instantiator->exceptionUnexpectedType('ShowNumber', $cmd);
50 50
     }
51 51
 
52
-    private function compileNumberParams(string $formatString="", bool $absolute=false) : string
52
+    private function compileNumberParams(string $formatString = "", bool $absolute = false) : string
53 53
     {
54 54
         $params = array();
55 55
 
56
-        if(!empty($formatString))
56
+        if (!empty($formatString))
57 57
         {
58 58
             $params[] = sprintf(
59 59
                 ' "%s"',
@@ -61,12 +61,12 @@  discard block
 block discarded – undo
61 61
             );
62 62
         }
63 63
 
64
-        if($absolute)
64
+        if ($absolute)
65 65
         {
66 66
             $params[] = ' absolute:';
67 67
         }
68 68
 
69
-        if(!empty($params))
69
+        if (!empty($params))
70 70
         {
71 71
             return ' '.implode(' ', $params);
72 72
         }
Please login to merge, or discard this patch.