@@ -64,7 +64,8 @@ |
||
64 | 64 | $c->bindSingleton(TestClass::class, $t); |
65 | 65 | $p->bindProperty('testClass', TestClass::class); |
66 | 66 | |
67 | - $r = ContainerScope::runScope($c, static function () use ($t) { |
|
67 | + $r = ContainerScope::runScope($c, static function () use ($t) |
|
68 | + { |
|
68 | 69 | return $t->getTest(); |
69 | 70 | }); |
70 | 71 |
@@ -18,7 +18,7 @@ |
||
18 | 18 | public static function convert(array $deps): array |
19 | 19 | { |
20 | 20 | $converted = []; |
21 | - foreach ($deps as $name => $type) { |
|
21 | + foreach ($deps as $name => $type){ |
|
22 | 22 | $converted[$name] = Dependency::create($name, $type); |
23 | 23 | } |
24 | 24 |
@@ -18,7 +18,8 @@ |
||
18 | 18 | public static function convert(array $deps): array |
19 | 19 | { |
20 | 20 | $converted = []; |
21 | - foreach ($deps as $name => $type) { |
|
21 | + foreach ($deps as $name => $type) |
|
22 | + { |
|
22 | 23 | $converted[$name] = Dependency::create($name, $type); |
23 | 24 | } |
24 | 25 |
@@ -31,9 +31,9 @@ |
||
31 | 31 | public function trailingProvider(): array |
32 | 32 | { |
33 | 33 | return [ |
34 | - ['name7', 7, 'name',], |
|
35 | - ['name', 0, 'name',], |
|
36 | - ['name0', 0, 'name',], |
|
34 | + ['name7', 7, 'name', ], |
|
35 | + ['name', 0, 'name', ], |
|
36 | + ['name0', 0, 'name', ], |
|
37 | 37 | ['name1', 1, 'name'], |
38 | 38 | ['name-1', 1, 'name-'], |
39 | 39 | ['name-1', -1, 'name'], |
@@ -26,11 +26,11 @@ |
||
26 | 26 | |
27 | 27 | public function store(string $name): void |
28 | 28 | { |
29 | - $this->storage[$name] = file_get_contents($this->dir . $name); |
|
29 | + $this->storage[$name] = file_get_contents($this->dir.$name); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | public function restore(string $name): void |
33 | 33 | { |
34 | - file_put_contents($this->dir . $name, $this->storage[$name]); |
|
34 | + file_put_contents($this->dir.$name, $this->storage[$name]); |
|
35 | 35 | } |
36 | 36 | } |
@@ -57,12 +57,15 @@ |
||
57 | 57 | { |
58 | 58 | $line = 0; |
59 | 59 | |
60 | - for ($i = 0; $i < $offset; $i++) { |
|
61 | - if (!isset($content[$i])) { |
|
60 | + for ($i = 0; $i < $offset; $i++) |
|
61 | + { |
|
62 | + if (!isset($content[$i])) |
|
63 | + { |
|
62 | 64 | break; |
63 | 65 | } |
64 | 66 | |
65 | - if ($content[$i] === "\n") { |
|
67 | + if ($content[$i] === "\n") |
|
68 | + { |
|
66 | 69 | $line++; |
67 | 70 | } |
68 | 71 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | public function __construct( |
13 | 13 | private readonly string $content, |
14 | 14 | private readonly ?string $filename = null |
15 | - ) { |
|
15 | + ){ |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | public function getContent(): string |
@@ -29,12 +29,12 @@ discard block |
||
29 | 29 | { |
30 | 30 | $line = 0; |
31 | 31 | |
32 | - for ($i = 0; $i < $offset; $i++) { |
|
33 | - if (!isset($content[$i])) { |
|
32 | + for ($i = 0; $i < $offset; $i++){ |
|
33 | + if (!isset($content[$i])){ |
|
34 | 34 | break; |
35 | 35 | } |
36 | 36 | |
37 | - if ($content[$i] === "\n") { |
|
37 | + if ($content[$i] === "\n"){ |
|
38 | 38 | $line++; |
39 | 39 | } |
40 | 40 | } |
@@ -53,7 +53,8 @@ |
||
53 | 53 | */ |
54 | 54 | public function peak(): ?string |
55 | 55 | { |
56 | - if ($this->offset + 1 > $this->length) { |
|
56 | + if ($this->offset + 1 > $this->length) |
|
57 | + { |
|
57 | 58 | return null; |
58 | 59 | } |
59 | 60 |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | |
14 | 14 | public function __construct( |
15 | 15 | private readonly string $source |
16 | - ) { |
|
16 | + ){ |
|
17 | 17 | $this->length = \strlen($source); |
18 | 18 | $this->offset = 0; |
19 | 19 | } |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function peak(): ?string |
35 | 35 | { |
36 | - if ($this->offset + 1 > $this->length) { |
|
36 | + if ($this->offset + 1 > $this->length){ |
|
37 | 37 | return null; |
38 | 38 | } |
39 | 39 |
@@ -27,9 +27,9 @@ discard block |
||
27 | 27 | $buffer = null; |
28 | 28 | $bufferOffset = 0; |
29 | 29 | |
30 | - foreach ($src as $n) { |
|
31 | - if ($n instanceof Byte) { |
|
32 | - if ($buffer === null) { |
|
30 | + foreach ($src as $n){ |
|
31 | + if ($n instanceof Byte){ |
|
32 | + if ($buffer === null){ |
|
33 | 33 | $buffer = ''; |
34 | 34 | $bufferOffset = $n->offset; |
35 | 35 | } |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | continue; |
39 | 39 | } |
40 | 40 | |
41 | - if ($buffer !== null) { |
|
41 | + if ($buffer !== null){ |
|
42 | 42 | yield new Token(Token::TYPE_RAW, $bufferOffset, $buffer); |
43 | 43 | $buffer = null; |
44 | 44 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | yield $n; |
47 | 47 | } |
48 | 48 | |
49 | - if ($buffer !== null) { |
|
49 | + if ($buffer !== null){ |
|
50 | 50 | yield new Token(Token::TYPE_RAW, $bufferOffset, $buffer); |
51 | 51 | } |
52 | 52 | } |
@@ -27,9 +27,12 @@ discard block |
||
27 | 27 | $buffer = null; |
28 | 28 | $bufferOffset = 0; |
29 | 29 | |
30 | - foreach ($src as $n) { |
|
31 | - if ($n instanceof Byte) { |
|
32 | - if ($buffer === null) { |
|
30 | + foreach ($src as $n) |
|
31 | + { |
|
32 | + if ($n instanceof Byte) |
|
33 | + { |
|
34 | + if ($buffer === null) |
|
35 | + { |
|
33 | 36 | $buffer = ''; |
34 | 37 | $bufferOffset = $n->offset; |
35 | 38 | } |
@@ -38,7 +41,8 @@ discard block |
||
38 | 41 | continue; |
39 | 42 | } |
40 | 43 | |
41 | - if ($buffer !== null) { |
|
44 | + if ($buffer !== null) |
|
45 | + { |
|
42 | 46 | yield new Token(Token::TYPE_RAW, $bufferOffset, $buffer); |
43 | 47 | $buffer = null; |
44 | 48 | } |
@@ -46,7 +50,8 @@ discard block |
||
46 | 50 | yield $n; |
47 | 51 | } |
48 | 52 | |
49 | - if ($buffer !== null) { |
|
53 | + if ($buffer !== null) |
|
54 | + { |
|
50 | 55 | yield new Token(Token::TYPE_RAW, $bufferOffset, $buffer); |
51 | 56 | } |
52 | 57 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | { |
35 | 35 | protected function compile(string $source, array $visitors = [], LoaderInterface $loader = null) |
36 | 36 | { |
37 | - if ($loader === null) { |
|
37 | + if ($loader === null){ |
|
38 | 38 | $loader = new StringLoader(); |
39 | 39 | $loader->set('root', $source); |
40 | 40 | } |
@@ -69,11 +69,11 @@ discard block |
||
69 | 69 | $builder->getCompiler()->addRenderer(new DynamicRenderer(new DirectiveGroup())); |
70 | 70 | $builder->getCompiler()->addRenderer(new HTMLRenderer()); |
71 | 71 | |
72 | - foreach ($this->getVisitors() as $visitor) { |
|
72 | + foreach ($this->getVisitors() as $visitor){ |
|
73 | 73 | $builder->addVisitor($visitor); |
74 | 74 | } |
75 | 75 | |
76 | - foreach ($visitors as $visitor) { |
|
76 | + foreach ($visitors as $visitor){ |
|
77 | 77 | $builder->addVisitor($visitor); |
78 | 78 | } |
79 | 79 | |
@@ -90,6 +90,6 @@ discard block |
||
90 | 90 | */ |
91 | 91 | protected function getFixtureLoader(): LoaderInterface |
92 | 92 | { |
93 | - return new DirectoryLoader(__DIR__ . '/../fixtures'); |
|
93 | + return new DirectoryLoader(__DIR__.'/../fixtures'); |
|
94 | 94 | } |
95 | 95 | } |
@@ -34,7 +34,8 @@ discard block |
||
34 | 34 | { |
35 | 35 | protected function compile(string $source, array $visitors = [], LoaderInterface $loader = null) |
36 | 36 | { |
37 | - if ($loader === null) { |
|
37 | + if ($loader === null) |
|
38 | + { |
|
38 | 39 | $loader = new StringLoader(); |
39 | 40 | $loader->set('root', $source); |
40 | 41 | } |
@@ -69,11 +70,13 @@ discard block |
||
69 | 70 | $builder->getCompiler()->addRenderer(new DynamicRenderer(new DirectiveGroup())); |
70 | 71 | $builder->getCompiler()->addRenderer(new HTMLRenderer()); |
71 | 72 | |
72 | - foreach ($this->getVisitors() as $visitor) { |
|
73 | + foreach ($this->getVisitors() as $visitor) |
|
74 | + { |
|
73 | 75 | $builder->addVisitor($visitor); |
74 | 76 | } |
75 | 77 | |
76 | - foreach ($visitors as $visitor) { |
|
78 | + foreach ($visitors as $visitor) |
|
79 | + { |
|
77 | 80 | $builder->addVisitor($visitor); |
78 | 81 | } |
79 | 82 |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | public function testVerbatim4(): void |
105 | 105 | { |
106 | 106 | $this->assertSame( |
107 | - '<script>alert(<?php echo json_encode' . |
|
107 | + '<script>alert(<?php echo json_encode'. |
|
108 | 108 | '("hello\' \'world", JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_AMP | JSON_HEX_QUOT, 512); ?>)</script>', |
109 | 109 | $res = $this->compile('<script>alert({{ "hello\' \'world" }})</script>')->getContent() |
110 | 110 | ); |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | { |
128 | 128 | ob_start(); |
129 | 129 | |
130 | - eval('?>' . $body); |
|
130 | + eval('?>'.$body); |
|
131 | 131 | |
132 | 132 | return ob_get_clean(); |
133 | 133 | } |