@@ -26,7 +26,7 @@ |
||
26 | 26 | string $clientFilename = null, |
27 | 27 | string $clientMediaType = null |
28 | 28 | ): UploadedFileInterface { |
29 | - if ($size === null) { |
|
29 | + if ($size === null){ |
|
30 | 30 | $size = $stream->getSize(); |
31 | 31 | } |
32 | 32 |
@@ -26,7 +26,8 @@ |
||
26 | 26 | string $clientFilename = null, |
27 | 27 | string $clientMediaType = null |
28 | 28 | ): UploadedFileInterface { |
29 | - if ($size === null) { |
|
29 | + if ($size === null) |
|
30 | + { |
|
30 | 31 | $size = $stream->getSize(); |
31 | 32 | } |
32 | 33 |
@@ -24,7 +24,7 @@ |
||
24 | 24 | { |
25 | 25 | public function tearDown(): void |
26 | 26 | { |
27 | - if ((int)session_status() === PHP_SESSION_ACTIVE) { |
|
27 | + if ((int)session_status() === PHP_SESSION_ACTIVE){ |
|
28 | 28 | session_abort(); |
29 | 29 | } |
30 | 30 | } |
@@ -24,7 +24,8 @@ |
||
24 | 24 | { |
25 | 25 | public function tearDown(): void |
26 | 26 | { |
27 | - if ((int)session_status() === PHP_SESSION_ACTIVE) { |
|
27 | + if ((int)session_status() === PHP_SESSION_ACTIVE) |
|
28 | + { |
|
28 | 29 | session_abort(); |
29 | 30 | } |
30 | 31 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | public function tearDown(): void |
53 | 53 | { |
54 | - if ((int)session_status() === PHP_SESSION_ACTIVE) { |
|
54 | + if ((int)session_status() === PHP_SESSION_ACTIVE){ |
|
55 | 55 | session_abort(); |
56 | 56 | } |
57 | 57 | } |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | $this->assertSame('default', $section->getName()); |
126 | 126 | |
127 | 127 | $section->set('key', 'value'); |
128 | - foreach ($section as $key => $value) { |
|
128 | + foreach ($section as $key => $value){ |
|
129 | 129 | $this->assertSame('key', $key); |
130 | 130 | $this->assertSame('value', $value); |
131 | 131 | } |
@@ -51,7 +51,8 @@ discard block |
||
51 | 51 | |
52 | 52 | public function tearDown(): void |
53 | 53 | { |
54 | - if ((int)session_status() === PHP_SESSION_ACTIVE) { |
|
54 | + if ((int)session_status() === PHP_SESSION_ACTIVE) |
|
55 | + { |
|
55 | 56 | session_abort(); |
56 | 57 | } |
57 | 58 | } |
@@ -125,7 +126,8 @@ discard block |
||
125 | 126 | $this->assertSame('default', $section->getName()); |
126 | 127 | |
127 | 128 | $section->set('key', 'value'); |
128 | - foreach ($section as $key => $value) { |
|
129 | + foreach ($section as $key => $value) |
|
130 | + { |
|
129 | 131 | $this->assertSame('key', $key); |
130 | 132 | $this->assertSame('value', $value); |
131 | 133 | } |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $this->expectException(LoaderException::class); |
25 | 25 | |
26 | 26 | $loader = new ViewLoader([ |
27 | - 'default' => __DIR__ . '/fixtures/default', |
|
27 | + 'default' => __DIR__.'/fixtures/default', |
|
28 | 28 | ]); |
29 | 29 | |
30 | 30 | $loader->exists('view'); |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | $this->expectException(LoaderException::class); |
36 | 36 | |
37 | 37 | $loader = new ViewLoader([ |
38 | - 'default' => __DIR__ . '/fixtures/default', |
|
38 | + 'default' => __DIR__.'/fixtures/default', |
|
39 | 39 | ]); |
40 | 40 | |
41 | 41 | $loader->list(); |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | $this->expectException(LoaderException::class); |
47 | 47 | |
48 | 48 | $loader = new ViewLoader([ |
49 | - 'default' => __DIR__ . '/fixtures/default', |
|
49 | + 'default' => __DIR__.'/fixtures/default', |
|
50 | 50 | ]); |
51 | 51 | |
52 | 52 | $loader->load('view'); |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | public function testExists(): void |
56 | 56 | { |
57 | 57 | $loader = new ViewLoader([ |
58 | - 'default' => __DIR__ . '/fixtures/default', |
|
58 | + 'default' => __DIR__.'/fixtures/default', |
|
59 | 59 | ]); |
60 | 60 | |
61 | 61 | $loader = $loader->withExtension('php'); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | public function testList(): void |
87 | 87 | { |
88 | 88 | $loader = new ViewLoader([ |
89 | - 'default' => __DIR__ . '/fixtures/default', |
|
89 | + 'default' => __DIR__.'/fixtures/default', |
|
90 | 90 | ]); |
91 | 91 | |
92 | 92 | $loader = $loader->withExtension('php'); |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | $this->expectException(LoaderException::class); |
104 | 104 | |
105 | 105 | $loader = new ViewLoader([ |
106 | - 'default' => __DIR__ . '/fixtures/default', |
|
106 | + 'default' => __DIR__.'/fixtures/default', |
|
107 | 107 | ]); |
108 | 108 | |
109 | 109 | $loader = $loader->withExtension('php'); |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | public function testLoad(): void |
147 | 147 | { |
148 | 148 | $loader = new ViewLoader([ |
149 | - 'default' => __DIR__ . '/fixtures/default', |
|
149 | + 'default' => __DIR__.'/fixtures/default', |
|
150 | 150 | ]); |
151 | 151 | |
152 | 152 | $loader = $loader->withExtension('php'); |
@@ -169,8 +169,8 @@ discard block |
||
169 | 169 | public function testMultipleNamespaces(): void |
170 | 170 | { |
171 | 171 | $loader = new ViewLoader([ |
172 | - 'default' => __DIR__ . '/fixtures/default', |
|
173 | - 'other' => __DIR__ . '/fixtures/other', |
|
172 | + 'default' => __DIR__.'/fixtures/default', |
|
173 | + 'other' => __DIR__.'/fixtures/other', |
|
174 | 174 | |
175 | 175 | ]); |
176 | 176 |
@@ -36,7 +36,8 @@ |
||
36 | 36 | $manager->addEngine(new NativeEngine($this->container, 'dark.php')); |
37 | 37 | |
38 | 38 | $ext = []; |
39 | - foreach ($manager->getEngines() as $e) { |
|
39 | + foreach ($manager->getEngines() as $e) |
|
40 | + { |
|
40 | 41 | $ext[] = $e->getLoader()->getExtension(); |
41 | 42 | } |
42 | 43 |
@@ -33,7 +33,7 @@ |
||
33 | 33 | $manager->addEngine(new NativeEngine($this->container, 'dark.php')); |
34 | 34 | |
35 | 35 | $ext = []; |
36 | - foreach ($manager->getEngines() as $e) { |
|
36 | + foreach ($manager->getEngines() as $e){ |
|
37 | 37 | $ext[] = $e->getLoader()->getExtension(); |
38 | 38 | } |
39 | 39 |
@@ -24,8 +24,8 @@ discard block |
||
24 | 24 | public function testGet(): void |
25 | 25 | { |
26 | 26 | $loader = new ViewLoader([ |
27 | - 'default' => __DIR__ . '/fixtures/default', |
|
28 | - 'other' => __DIR__ . '/fixtures/other', |
|
27 | + 'default' => __DIR__.'/fixtures/default', |
|
28 | + 'other' => __DIR__.'/fixtures/other', |
|
29 | 29 | ]); |
30 | 30 | |
31 | 31 | $loader = $loader->withExtension('php'); |
@@ -51,8 +51,8 @@ discard block |
||
51 | 51 | public function testRenderWithValue(): void |
52 | 52 | { |
53 | 53 | $loader = new ViewLoader([ |
54 | - 'default' => __DIR__ . '/fixtures/default', |
|
55 | - 'other' => __DIR__ . '/fixtures/other', |
|
54 | + 'default' => __DIR__.'/fixtures/default', |
|
55 | + 'other' => __DIR__.'/fixtures/other', |
|
56 | 56 | |
57 | 57 | ]); |
58 | 58 | |
@@ -70,8 +70,8 @@ discard block |
||
70 | 70 | $this->expectException(RenderException::class); |
71 | 71 | |
72 | 72 | $loader = new ViewLoader([ |
73 | - 'default' => __DIR__ . '/fixtures/default', |
|
74 | - 'other' => __DIR__ . '/fixtures/other', |
|
73 | + 'default' => __DIR__.'/fixtures/default', |
|
74 | + 'other' => __DIR__.'/fixtures/other', |
|
75 | 75 | |
76 | 76 | ]); |
77 | 77 | |
@@ -88,8 +88,8 @@ discard block |
||
88 | 88 | public function testRenderBufferWithValue(): void |
89 | 89 | { |
90 | 90 | $loader = new ViewLoader([ |
91 | - 'default' => __DIR__ . '/fixtures/default', |
|
92 | - 'other' => __DIR__ . '/fixtures/other', |
|
91 | + 'default' => __DIR__.'/fixtures/default', |
|
92 | + 'other' => __DIR__.'/fixtures/other', |
|
93 | 93 | |
94 | 94 | ]); |
95 | 95 | |
@@ -107,8 +107,8 @@ discard block |
||
107 | 107 | $this->expectException(RenderException::class); |
108 | 108 | |
109 | 109 | $loader = new ViewLoader([ |
110 | - 'default' => __DIR__ . '/fixtures/default', |
|
111 | - 'other' => __DIR__ . '/fixtures/other', |
|
110 | + 'default' => __DIR__.'/fixtures/default', |
|
111 | + 'other' => __DIR__.'/fixtures/other', |
|
112 | 112 | |
113 | 113 | ]); |
114 | 114 |
@@ -130,8 +130,8 @@ |
||
130 | 130 | protected function getView(ContextInterface $context, string $path): ViewInterface |
131 | 131 | { |
132 | 132 | $loader = new ViewLoader([ |
133 | - 'default' => __DIR__ . '/fixtures/default', |
|
134 | - 'other' => __DIR__ . '/fixtures/other', |
|
133 | + 'default' => __DIR__.'/fixtures/default', |
|
134 | + 'other' => __DIR__.'/fixtures/other', |
|
135 | 135 | ]); |
136 | 136 | |
137 | 137 | $engine = new NativeEngine(new Container()); |
@@ -29,7 +29,7 @@ |
||
29 | 29 | */ |
30 | 30 | private function process(ViewSource $source, ContextInterface $context): ViewSource |
31 | 31 | { |
32 | - foreach ($this->processors as $processor) { |
|
32 | + foreach ($this->processors as $processor){ |
|
33 | 33 | $source = $processor->process($source, $context); |
34 | 34 | } |
35 | 35 |
@@ -29,7 +29,8 @@ |
||
29 | 29 | */ |
30 | 30 | private function process(ViewSource $source, ContextInterface $context): ViewSource |
31 | 31 | { |
32 | - foreach ($this->processors as $processor) { |
|
32 | + foreach ($this->processors as $processor) |
|
33 | + { |
|
33 | 34 | $source = $processor->process($source, $context); |
34 | 35 | } |
35 | 36 |
@@ -90,8 +90,8 @@ |
||
90 | 90 | $this->assertEquals($allowRule, $manager->getRule(static::ROLE, static::PERMISSION)); |
91 | 91 | |
92 | 92 | // test pattern permission |
93 | - $this->assertEquals($manager, $manager->associate(static::ROLE, static::PERMISSION . '.*', AllowRule::class)); |
|
94 | - $this->assertEquals($allowRule, $manager->getRule(static::ROLE, static::PERMISSION . '.' . static::PERMISSION)); |
|
93 | + $this->assertEquals($manager, $manager->associate(static::ROLE, static::PERMISSION.'.*', AllowRule::class)); |
|
94 | + $this->assertEquals($allowRule, $manager->getRule(static::ROLE, static::PERMISSION.'.'.static::PERMISSION)); |
|
95 | 95 | |
96 | 96 | $this->assertEquals($manager, $manager->deassociate(static::ROLE, static::PERMISSION)); |
97 | 97 | $this->assertEquals($forbidRule, $manager->getRule(static::ROLE, static::PERMISSION)); |
@@ -78,7 +78,8 @@ |
||
78 | 78 | |
79 | 79 | $this->rules->method('has')->willReturn(true); |
80 | 80 | $this->rules->method('get') |
81 | - ->willReturnCallback(function (...$args) use (&$series) { |
|
81 | + ->willReturnCallback(function (...$args) use (&$series) |
|
82 | + { |
|
82 | 83 | [$expectedArgs, $return] = \array_shift($series); |
83 | 84 | self::assertSame($expectedArgs, $args); |
84 | 85 |