Passed
Push — develop ( acf7d3...ede307 )
by nguereza
10:23
created
src/Loader/FileLoader.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,8 +97,8 @@
 block discarded – undo
97 97
     }
98 98
 
99 99
     /**
100
-    * {@inheritdoc}
101
-    */
100
+     * {@inheritdoc}
101
+     */
102 102
     public function read(string $name): string
103 103
     {
104 104
         $file = $this->getFilePath($name);
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,8 +59,7 @@  discard block
 block discarded – undo
59 59
  * @class FileLoader
60 60
  * @package Platine\Template\Loader
61 61
  */
62
-class FileLoader implements LoaderInterface
63
-{
62
+class FileLoader implements LoaderInterface {
64 63
     /**
65 64
      * The configuration instance
66 65
      * @var Configuration
@@ -77,8 +76,7 @@  discard block
 block discarded – undo
77 76
      * Create new instance
78 77
      * @param Configuration|null $config
79 78
      */
80
-    public function __construct(?Configuration $config = null)
81
-    {
79
+    public function __construct(?Configuration $config = null) {
82 80
         $this->config = $config ?? new Configuration([]);
83 81
 
84 82
         $dir = $this->config->get('template_dir');
Please login to merge, or discard this patch.
src/Parser/Document.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -114,8 +114,8 @@  discard block
 block discarded – undo
114 114
     }
115 115
 
116 116
     /**
117
-    * {@inheritdoc}
118
-    */
117
+     * {@inheritdoc}
118
+     */
119 119
     protected function blockDelimiter(): string
120 120
     {
121 121
         //There isn't a real delimiter
@@ -123,8 +123,8 @@  discard block
 block discarded – undo
123 123
     }
124 124
 
125 125
     /**
126
-    * {@inheritdoc}
127
-    */
126
+     * {@inheritdoc}
127
+     */
128 128
     protected function assertMissingDelimiter(): void
129 129
     {
130 130
         // Document blocks don't need to be
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,15 +57,13 @@
 block discarded – undo
57 57
  * @class Document
58 58
  * @package Platine\Template\Parser
59 59
  */
60
-class Document extends AbstractBlock
61
-{
60
+class Document extends AbstractBlock {
62 61
     /**
63 62
      * Create new instance
64 63
      * @param array<int, string> $tokens
65 64
      * @param Parser $parser
66 65
      */
67
-    public function __construct(array &$tokens, Parser $parser)
68
-    {
66
+    public function __construct(array &$tokens, Parser $parser) {
69 67
         $this->parser = $parser;
70 68
         $this->parse($tokens);
71 69
     }
Please login to merge, or discard this patch.
src/Parser/Parser.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -118,11 +118,11 @@
 block discarded – undo
118 118
     }
119 119
 
120 120
     /**
121
-    * Parse the template source and use the cached
122
-    * content if is available
123
-    * @param string $name
124
-    * @return $this
125
-    */
121
+     * Parse the template source and use the cached
122
+     * content if is available
123
+     * @param string $name
124
+     * @return $this
125
+     */
126 126
     public function parse(string $name): self
127 127
     {
128 128
         $hash = md5($name);
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@  discard block
 block discarded – undo
57 57
  * @class Parser
58 58
  * @package Platine\Template\Parser
59 59
  */
60
-class Parser
61
-{
60
+class Parser {
62 61
     /**
63 62
      * The root of the node tree
64 63
      * @var Document
@@ -69,8 +68,7 @@  discard block
 block discarded – undo
69 68
      * Create new instance
70 69
      * @param Template $template
71 70
      */
72
-    public function __construct(protected Template $template)
73
-    {
71
+    public function __construct(protected Template $template) {
74 72
     }
75 73
 
76 74
     /**
Please login to merge, or discard this patch.
src/Parser/Token.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
      * Quoted fragment pattern
114 114
      */
115 115
     public const QUOTED_FRAGMENT = '(?:' . self::QUOTED_STRING
116
-                                   . '|(?:[^\s,\|\'"]|'
117
-                                   . self::QUOTED_STRING . ')+)';
116
+                                    . '|(?:[^\s,\|\'"]|'
117
+                                    . self::QUOTED_STRING . ')+)';
118 118
 
119 119
     /**
120 120
      * Tag attributes pattern expression
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
      * Template parse pattern
126 126
      */
127 127
     public const TOKENIZATION_REGEXP = '/(' . self::BLOCK_OPEN
128
-                                       . '.*?' . self::BLOCK_CLOSE
129
-                                       . '|' . self::VARIABLE_OPEN
130
-                                       . '.*?' . self::VARIABLE_CLOSE
131
-                                       . ')/';
128
+                                        . '.*?' . self::BLOCK_CLOSE
129
+                                        . '|' . self::VARIABLE_OPEN
130
+                                        . '.*?' . self::VARIABLE_CLOSE
131
+                                        . ')/';
132 132
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * @class Token
54 54
  * @package Platine\Template\Parser
55 55
  */
56
-class Token
57
-{
56
+class Token {
58 57
     /**
59 58
      * The template opened variable
60 59
      */
Please login to merge, or discard this patch.
src/Parser/AbstractTag.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -147,10 +147,10 @@
 block discarded – undo
147 147
     }
148 148
 
149 149
     /**
150
-    * Returns the class name of the tag.
151
-    *
152
-    * @return string
153
-    */
150
+     * Returns the class name of the tag.
151
+     *
152
+     * @return string
153
+     */
154 154
     protected function getName(): string
155 155
     {
156 156
         return strtolower(get_class($this));
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@  discard block
 block discarded – undo
55 55
  * @class AbstractTag
56 56
  * @package Platine\Template\Parser
57 57
  */
58
-abstract class AbstractTag
59
-{
58
+abstract class AbstractTag {
60 59
     /**
61 60
      * The name of this class tag
62 61
      * @var string
@@ -87,8 +86,7 @@  discard block
 block discarded – undo
87 86
      * @param array<int, string> $tokens
88 87
      * @param Parser $parser
89 88
      */
90
-    public function __construct(string $markup, array &$tokens, Parser $parser)
91
-    {
89
+    public function __construct(string $markup, array &$tokens, Parser $parser) {
92 90
         $this->markup = $markup;
93 91
         $this->parser = $parser;
94 92
 
Please login to merge, or discard this patch.
src/Parser/Variable.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -95,13 +95,13 @@
 block discarded – undo
95 95
                                 . Token::FILTER_SEPARATOR
96 96
                                 . '\s*(.*)/m';
97 97
         $syntaxRegex = '/('
98
-                       . Token::QUOTED_FRAGMENT
99
-                       . ')(.*)/m';
98
+                        . Token::QUOTED_FRAGMENT
99
+                        . ')(.*)/m';
100 100
         $filterRegex = '/(?:\s+|'
101
-                       . Token::QUOTED_FRAGMENT
102
-                       . '|'
103
-                       . Token::FILTER_METHOD_ARGS_SEPARATOR
104
-                       . ')+/';
101
+                        . Token::QUOTED_FRAGMENT
102
+                        . '|'
103
+                        . Token::FILTER_METHOD_ARGS_SEPARATOR
104
+                        . ')+/';
105 105
         $filterArgumentsRegex = '/(?:'
106 106
                                 . Token::FILTER_NAME_ARG_SEPARATOR
107 107
                                 . '|'
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@  discard block
 block discarded – undo
55 55
  * @class Variable
56 56
  * @package Platine\Template\Parser
57 57
  */
58
-class Variable
59
-{
58
+class Variable {
60 59
     /**
61 60
      * The variable markup
62 61
      * @var string
@@ -86,8 +85,7 @@  discard block
 block discarded – undo
86 85
      * @param string $markup
87 86
      * @param Parser $parser
88 87
      */
89
-    public function __construct(string $markup, Parser $parser)
90
-    {
88
+    public function __construct(string $markup, Parser $parser) {
91 89
         $this->markup = $markup;
92 90
         $this->parser = $parser;
93 91
 
Please login to merge, or discard this patch.
src/Parser/AbstractBlock.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 
84 84
     /**
85 85
      * {@inheritdoc}
86
-    */
86
+     */
87 87
     public function parse(array &$tokens): void
88 88
     {
89 89
         $startRegex = '/^' . Token::BLOCK_OPEN . '/';
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 
180 180
     /**
181 181
      * {@inheritdoc}
182
-    */
182
+     */
183 183
     public function render(Context $context): string
184 184
     {
185 185
         return $this->renderAll($this->nodeList, $context);
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
  * @class AbstractBlock
58 58
  * @package Platine\Template\Parser
59 59
  */
60
-class AbstractBlock extends AbstractTag
61
-{
60
+class AbstractBlock extends AbstractTag {
62 61
     /**
63 62
      * The node list
64 63
      * @var AbstractTag[]|Variable[]|string[]
Please login to merge, or discard this patch.
src/Parser/Lexer.php 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -68,9 +68,9 @@  discard block
 block discarded – undo
68 68
     protected array $matches = [];
69 69
 
70 70
     /**
71
-    * Create new instance
72
-    * @param string $pattern
73
-    */
71
+     * Create new instance
72
+     * @param string $pattern
73
+     */
74 74
     public function __construct(string $pattern)
75 75
     {
76 76
         $this->pattern = (substr($pattern, 0, 1) !== '/')
@@ -79,10 +79,10 @@  discard block
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-    * Return the array of matches for the given value
83
-    * @param string $value
84
-    * @return array<int|string, array<int|string, mixed>>
85
-    */
82
+     * Return the array of matches for the given value
83
+     * @param string $value
84
+     * @return array<int|string, array<int|string, mixed>>
85
+     */
86 86
     public function scan(string $value): array
87 87
     {
88 88
         $matches = [];
@@ -104,20 +104,20 @@  discard block
 block discarded – undo
104 104
     }
105 105
 
106 106
     /**
107
-    * Whether the given value match regex
108
-    * @param string $value
109
-    * @return bool
110
-    */
107
+     * Whether the given value match regex
108
+     * @param string $value
109
+     * @return bool
110
+     */
111 111
     public function match(string $value): bool
112 112
     {
113 113
         return (bool) preg_match($this->pattern, $value, $this->matches);
114 114
     }
115 115
 
116 116
     /**
117
-    * Whether the given value match all regex
118
-    * @param string $value
119
-    * @return bool
120
-    */
117
+     * Whether the given value match all regex
118
+     * @param string $value
119
+     * @return bool
120
+     */
121 121
     public function matchAll(string $value): bool
122 122
     {
123 123
         return (bool) preg_match_all($this->pattern, $value, $this->matches);
@@ -202,10 +202,10 @@  discard block
 block discarded – undo
202 202
     }
203 203
 
204 204
     /**
205
-    * Quote the given value in order to use in regex expression
206
-    * @param string $value
207
-    * @return string
208
-    */
205
+     * Quote the given value in order to use in regex expression
206
+     * @param string $value
207
+     * @return string
208
+     */
209 209
     protected function quote(string $value): string
210 210
     {
211 211
         return preg_quote($value, '/');
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@  discard block
 block discarded – undo
55 55
  * @class Lexer
56 56
  * @package Platine\Template\Parser
57 57
  */
58
-class Lexer implements Stringable
59
-{
58
+class Lexer implements Stringable {
60 59
     /**
61 60
      * The lexer pattern
62 61
      * @var string
@@ -73,8 +72,7 @@  discard block
 block discarded – undo
73 72
     * Create new instance
74 73
     * @param string $pattern
75 74
     */
76
-    public function __construct(string $pattern)
77
-    {
75
+    public function __construct(string $pattern) {
78 76
         $this->pattern = (substr($pattern, 0, 1) !== '/')
79 77
                           ? '/' . $this->quote($pattern) . '/'
80 78
                           : $pattern;
Please login to merge, or discard this patch.
src/Tag/ContinueTag.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@
 block discarded – undo
59 59
 class ContinueTag extends AbstractTag
60 60
 {
61 61
     /**
62
-    * {@inheritdoc}
63
-    */
62
+     * {@inheritdoc}
63
+     */
64 64
     public function render(Context $context): string
65 65
     {
66 66
         $context->setRegister('continue', true);
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@
 block discarded – undo
56 56
  * @class ContinueTag
57 57
  * @package Platine\Template\Tag
58 58
  */
59
-class ContinueTag extends AbstractTag
60
-{
59
+class ContinueTag extends AbstractTag {
61 60
     /**
62 61
     * {@inheritdoc}
63 62
     */
Please login to merge, or discard this patch.