Passed
Push — master ( d5fe85...819a09 )
by Aleksei
06:09 queued 20s
created
src/Core/tests/SingletonsTest.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     {
72 72
         $container = new Container();
73 73
 
74
-        $container->bindSingleton('sampleClass', function () {
74
+        $container->bindSingleton('sampleClass', function (){
75 75
             return new SampleClass();
76 76
         });
77 77
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         $container = new Container();
99 99
         $container->bindSingleton('singleton', 'sampleClass');
100 100
 
101
-        $container->bind('sampleClass', function () {
101
+        $container->bind('sampleClass', function (){
102 102
             return new SampleClass();
103 103
         });
104 104
 
Please login to merge, or discard this patch.
Braces   +11 added lines, -5 removed lines patch added patch discarded remove patch
@@ -58,7 +58,8 @@  discard block
 block discarded – undo
58 58
 
59 59
         $instance = new SampleClass();
60 60
 
61
-        $container->bindSingleton('sampleClass', function () use ($instance) {
61
+        $container->bindSingleton('sampleClass', function () use ($instance)
62
+        {
62 63
             return $instance;
63 64
         });
64 65
 
@@ -69,7 +70,8 @@  discard block
 block discarded – undo
69 70
     {
70 71
         $container = new Container();
71 72
 
72
-        $container->bindSingleton('sampleClass', function () {
73
+        $container->bindSingleton('sampleClass', function ()
74
+        {
73 75
             return new SampleClass();
74 76
         });
75 77
 
@@ -143,7 +145,8 @@  discard block
 block discarded – undo
143 145
         $container = new Container();
144 146
         $container->bindSingleton('singleton', 'sampleClass');
145 147
 
146
-        $container->bind('sampleClass', function () {
148
+        $container->bind('sampleClass', function ()
149
+        {
147 150
             return new SampleClass();
148 151
         });
149 152
 
@@ -187,7 +190,9 @@  discard block
 block discarded – undo
187 190
     public function testHasShouldReturnTrueWhenSingletonIsAlreadyConstructed(): void
188 191
     {
189 192
         $container = new Container();
190
-        $class = new #[Singleton] class {};
193
+        $class = new #[Singleton] class
194
+        {
195
+};
191 196
 
192 197
         $this->assertFalse($container->has($class::class));
193 198
 
@@ -200,7 +205,8 @@  discard block
 block discarded – undo
200 205
     {
201 206
         return new
202 207
         #[Singleton]
203
-        class {
208
+        class
209
+        {
204 210
             public string $baz = 'baz';
205 211
         };
206 212
     }
Please login to merge, or discard this patch.
src/Core/tests/BindingsTest.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
         $this->assertFalse($container->has('abc'));
27 27
 
28
-        $container->bind('abc', function () {
28
+        $container->bind('abc', function (){
29 29
             return 'hello';
30 30
         });
31 31
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         $container = new Container();
39 39
 
40 40
         $this->assertFalse($container->has('abc'));
41
-        $container->bind('abc', function () {
41
+        $container->bind('abc', function (){
42 42
             return 'hello';
43 43
         });
44 44
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,8 @@  discard block
 block discarded – undo
25 25
 
26 26
         $this->assertFalse($container->has('abc'));
27 27
 
28
-        $container->bind('abc', function () {
28
+        $container->bind('abc', function ()
29
+        {
29 30
             return 'hello';
30 31
         });
31 32
 
@@ -38,7 +39,8 @@  discard block
 block discarded – undo
38 39
         $container = new Container();
39 40
 
40 41
         $this->assertFalse($container->has('abc'));
41
-        $container->bind('abc', function () {
42
+        $container->bind('abc', function ()
43
+        {
42 44
             return 'hello';
43 45
         });
44 46
 
Please login to merge, or discard this patch.
src/Framework/Session/SessionScope.php 2 patches
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,9 +124,12 @@
 block discarded – undo
124 124
      */
125 125
     public function getActiveSession(): SessionInterface
126 126
     {
127
-        try {
127
+        try
128
+        {
128 129
             return $this->container->get(SessionInterface::class);
129
-        } catch (NotFoundExceptionInterface $e) {
130
+        }
131
+        catch (NotFoundExceptionInterface $e)
132
+        {
130 133
             throw new ScopeException(
131 134
                 'Unable to receive active session, invalid request scope',
132 135
                 $e->getCode(),
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 
20 20
     public function __construct(
21 21
         private readonly ContainerInterface $container
22
-    ) {
22
+    ){
23 23
     }
24 24
 
25 25
     /**
@@ -93,9 +93,9 @@  discard block
 block discarded – undo
93 93
      */
94 94
     public function getActiveSession(): SessionInterface
95 95
     {
96
-        try {
96
+        try{
97 97
             return $this->container->get(SessionInterface::class);
98
-        } catch (NotFoundExceptionInterface $e) {
98
+        }catch (NotFoundExceptionInterface $e){
99 99
             throw new ScopeException(
100 100
                 'Unable to receive active session, invalid request scope',
101 101
                 $e->getCode(),
Please login to merge, or discard this patch.
src/Framework/Cookies/CookieManager.php 2 patches
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -169,9 +169,12 @@  discard block
 block discarded – undo
169 169
      */
170 170
     private function getRequest(): ServerRequestInterface
171 171
     {
172
-        try {
172
+        try
173
+        {
173 174
             return $this->container->get(ServerRequestInterface::class);
174
-        } catch (NotFoundExceptionInterface $e) {
175
+        }
176
+        catch (NotFoundExceptionInterface $e)
177
+        {
175 178
             throw new ScopeException('Unable to receive active request', $e->getCode(), $e);
176 179
         }
177 180
     }
@@ -183,9 +186,12 @@  discard block
 block discarded – undo
183 186
      */
184 187
     private function getCookieQueue(): CookieQueue
185 188
     {
186
-        try {
189
+        try
190
+        {
187 191
             return $this->container->get(CookieQueue::class);
188
-        } catch (NotFoundExceptionInterface $e) {
192
+        }
193
+        catch (NotFoundExceptionInterface $e)
194
+        {
189 195
             throw new ScopeException('Unable to receive cookie queue, invalid request scope', $e->getCode(), $e);
190 196
         }
191 197
     }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 {
18 18
     public function __construct(
19 19
         private readonly ContainerInterface $container
20
-    ) {
20
+    ){
21 21
     }
22 22
 
23 23
     /**
@@ -146,9 +146,9 @@  discard block
 block discarded – undo
146 146
      */
147 147
     private function getRequest(): ServerRequestInterface
148 148
     {
149
-        try {
149
+        try{
150 150
             return $this->container->get(ServerRequestInterface::class);
151
-        } catch (NotFoundExceptionInterface $e) {
151
+        }catch (NotFoundExceptionInterface $e){
152 152
             throw new ScopeException('Unable to receive active request', $e->getCode(), $e);
153 153
         }
154 154
     }
@@ -158,9 +158,9 @@  discard block
 block discarded – undo
158 158
      */
159 159
     private function getCookieQueue(): CookieQueue
160 160
     {
161
-        try {
161
+        try{
162 162
             return $this->container->get(CookieQueue::class);
163
-        } catch (NotFoundExceptionInterface $e) {
163
+        }catch (NotFoundExceptionInterface $e){
164 164
             throw new ScopeException('Unable to receive cookie queue, invalid request scope', $e->getCode(), $e);
165 165
         }
166 166
     }
Please login to merge, or discard this patch.
src/Framework/Bootloader/Http/CookiesBootloader.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,8 @@
 block discarded – undo
72 72
     private function cookieQueue(ServerRequestInterface $request): CookieQueue
73 73
     {
74 74
         $cookieQueue = $request->getAttribute(CookieQueue::ATTRIBUTE, null);
75
-        if ($cookieQueue === null) {
75
+        if ($cookieQueue === null)
76
+        {
76 77
             throw new ScopeException('Unable to resolve CookieQueue, invalid request scope');
77 78
         }
78 79
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 
22 22
     public function __construct(
23 23
         private readonly ConfiguratorInterface $config
24
-    ) {
24
+    ){
25 25
     }
26 26
 
27 27
     public function init(HttpBootloader $http): void
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     private function cookieQueue(ServerRequestInterface $request): CookieQueue
51 51
     {
52 52
         $cookieQueue = $request->getAttribute(CookieQueue::ATTRIBUTE, null);
53
-        if ($cookieQueue === null) {
53
+        if ($cookieQueue === null){
54 54
             throw new ScopeException('Unable to resolve CookieQueue, invalid request scope');
55 55
         }
56 56
 
Please login to merge, or discard this patch.
src/Files/tests/DirectoriesTest.php 2 patches
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function testEnsureDirectory(): void
33 33
     {
34 34
         $files = new Files();
35
-        $directory = self::FIXTURE_DIRECTORY . 'directory/';
35
+        $directory = self::FIXTURE_DIRECTORY.'directory/';
36 36
 
37 37
         $this->assertFalse($files->exists($directory));
38 38
         $this->assertFalse($files->isDirectory($directory));
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     public function testEnsureExistedDirectory(): void
47 47
     {
48 48
         $files = new Files();
49
-        $directory = self::FIXTURE_DIRECTORY . 'directory/';
49
+        $directory = self::FIXTURE_DIRECTORY.'directory/';
50 50
 
51 51
         $this->assertFalse($files->exists($directory));
52 52
         $this->assertFalse($files->isDirectory($directory));
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     public function testEnsureNestedDirectory(): void
66 66
     {
67 67
         $files = new Files();
68
-        $directory = self::FIXTURE_DIRECTORY . 'directory/sub/other';
68
+        $directory = self::FIXTURE_DIRECTORY.'directory/sub/other';
69 69
 
70 70
         $this->assertFalse($files->exists($directory));
71 71
         $this->assertFalse($files->isDirectory($directory));
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     public function testEnsureNestedDirectoryNoRecursivePermissions(): void
80 80
     {
81 81
         $files = new Files();
82
-        $directory = self::FIXTURE_DIRECTORY . 'directory/sub/other';
82
+        $directory = self::FIXTURE_DIRECTORY.'directory/sub/other';
83 83
 
84 84
         $this->assertFalse($files->exists($directory));
85 85
         $this->assertFalse($files->isDirectory($directory));
@@ -93,14 +93,14 @@  discard block
 block discarded – undo
93 93
     public function testEnsureExistedNestedDirectory(): void
94 94
     {
95 95
         $files = new Files();
96
-        $directory = self::FIXTURE_DIRECTORY . 'directory/sub/other';
96
+        $directory = self::FIXTURE_DIRECTORY.'directory/sub/other';
97 97
 
98 98
         $this->assertFalse($files->exists($directory));
99 99
         $this->assertFalse($files->isDirectory($directory));
100 100
 
101
-        mkdir(self::FIXTURE_DIRECTORY . 'directory');
102
-        mkdir(self::FIXTURE_DIRECTORY . 'directory/sub');
103
-        mkdir(self::FIXTURE_DIRECTORY . 'directory/sub/other');
101
+        mkdir(self::FIXTURE_DIRECTORY.'directory');
102
+        mkdir(self::FIXTURE_DIRECTORY.'directory/sub');
103
+        mkdir(self::FIXTURE_DIRECTORY.'directory/sub/other');
104 104
 
105 105
         $this->assertTrue($files->exists($directory));
106 106
         $this->assertTrue($files->isDirectory($directory));
@@ -114,13 +114,13 @@  discard block
 block discarded – undo
114 114
     public function testDeleteDirectoryContent(): void
115 115
     {
116 116
         $files = new Files();
117
-        $baseDirectory = self::FIXTURE_DIRECTORY . 'directory/';
118
-        $directory = $baseDirectory . 'sub/other';
117
+        $baseDirectory = self::FIXTURE_DIRECTORY.'directory/';
118
+        $directory = $baseDirectory.'sub/other';
119 119
 
120 120
         $filenames = [
121
-            $baseDirectory . 'test.file',
122
-            $directory . 'other.file',
123
-            $directory . '.sample',
121
+            $baseDirectory.'test.file',
122
+            $directory.'other.file',
123
+            $directory.'.sample',
124 124
         ];
125 125
 
126 126
         $this->assertFalse($files->exists($baseDirectory));
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
         $this->assertTrue($files->exists($directory));
138 138
         $this->assertTrue($files->isDirectory($directory));
139 139
 
140
-        foreach ($filenames as $filename) {
140
+        foreach ($filenames as $filename){
141 141
             $this->assertFalse($files->exists($filename));
142 142
             $files->write($filename, 'random-data');
143 143
             $this->assertTrue($files->exists($filename));
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
         $this->assertFalse($files->exists($directory));
152 152
         $this->assertFalse($files->isDirectory($directory));
153 153
 
154
-        foreach ($filenames as $filename) {
154
+        foreach ($filenames as $filename){
155 155
             $this->assertFalse($files->exists($filename));
156 156
         }
157 157
     }
@@ -159,13 +159,13 @@  discard block
 block discarded – undo
159 159
     public function testDeleteDirectory(): void
160 160
     {
161 161
         $files = new Files();
162
-        $baseDirectory = self::FIXTURE_DIRECTORY . 'directory/';
163
-        $directory = $baseDirectory . 'sub/other';
162
+        $baseDirectory = self::FIXTURE_DIRECTORY.'directory/';
163
+        $directory = $baseDirectory.'sub/other';
164 164
 
165 165
         $filenames = [
166
-            $baseDirectory . 'test.file',
167
-            $directory . 'other.file',
168
-            $directory . '.sample',
166
+            $baseDirectory.'test.file',
167
+            $directory.'other.file',
168
+            $directory.'.sample',
169 169
         ];
170 170
 
171 171
         $this->assertFalse($files->exists($baseDirectory));
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
         $this->assertTrue($files->exists($directory));
183 183
         $this->assertTrue($files->isDirectory($directory));
184 184
 
185
-        foreach ($filenames as $filename) {
185
+        foreach ($filenames as $filename){
186 186
             $this->assertFalse($files->exists($filename));
187 187
             $files->write($filename, 'random-data');
188 188
             $this->assertTrue($files->exists($filename));
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
         $this->assertFalse($files->exists($directory));
197 197
         $this->assertFalse($files->isDirectory($directory));
198 198
 
199
-        foreach ($filenames as $filename) {
199
+        foreach ($filenames as $filename){
200 200
             $this->assertFalse($files->exists($filename));
201 201
         }
202 202
     }
@@ -207,8 +207,8 @@  discard block
 block discarded – undo
207 207
 
208 208
         $files = new Files();
209 209
 
210
-        $files->write(self::FIXTURE_DIRECTORY . 'test', 'data');
211
-        $files->deleteDirectory(self::FIXTURE_DIRECTORY . 'test');
210
+        $files->write(self::FIXTURE_DIRECTORY.'test', 'data');
211
+        $files->deleteDirectory(self::FIXTURE_DIRECTORY.'test');
212 212
     }
213 213
 
214 214
     public function testGetFiles(): void
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -137,7 +137,8 @@  discard block
 block discarded – undo
137 137
         $this->assertTrue($files->exists($directory));
138 138
         $this->assertTrue($files->isDirectory($directory));
139 139
 
140
-        foreach ($filenames as $filename) {
140
+        foreach ($filenames as $filename)
141
+        {
141 142
             $this->assertFalse($files->exists($filename));
142 143
             $files->write($filename, 'random-data');
143 144
             $this->assertTrue($files->exists($filename));
@@ -151,7 +152,8 @@  discard block
 block discarded – undo
151 152
         $this->assertFalse($files->exists($directory));
152 153
         $this->assertFalse($files->isDirectory($directory));
153 154
 
154
-        foreach ($filenames as $filename) {
155
+        foreach ($filenames as $filename)
156
+        {
155 157
             $this->assertFalse($files->exists($filename));
156 158
         }
157 159
     }
@@ -182,7 +184,8 @@  discard block
 block discarded – undo
182 184
         $this->assertTrue($files->exists($directory));
183 185
         $this->assertTrue($files->isDirectory($directory));
184 186
 
185
-        foreach ($filenames as $filename) {
187
+        foreach ($filenames as $filename)
188
+        {
186 189
             $this->assertFalse($files->exists($filename));
187 190
             $files->write($filename, 'random-data');
188 191
             $this->assertTrue($files->exists($filename));
@@ -196,7 +199,8 @@  discard block
 block discarded – undo
196 199
         $this->assertFalse($files->exists($directory));
197 200
         $this->assertFalse($files->isDirectory($directory));
198 201
 
199
-        foreach ($filenames as $filename) {
202
+        foreach ($filenames as $filename)
203
+        {
200 204
             $this->assertFalse($files->exists($filename));
201 205
         }
202 206
     }
Please login to merge, or discard this patch.
src/Files/tests/IOTest.php 2 patches
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     {
35 35
         $files = new Files();
36 36
 
37
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
37
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
38 38
         $this->assertFalse($files->exists($filename));
39 39
 
40 40
         $files->write($filename, 'some-data');
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
     {
48 48
         $files = new Files();
49 49
 
50
-        $directory = self::FIXTURE_DIRECTORY . '/directory/abc/';
51
-        $filename = $directory . 'test.txt';
50
+        $directory = self::FIXTURE_DIRECTORY.'/directory/abc/';
51
+        $filename = $directory.'test.txt';
52 52
 
53 53
         $this->assertFalse($files->exists($directory));
54 54
         $this->assertFalse($files->exists($filename));
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     {
67 67
         $files = new Files();
68 68
 
69
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
69
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
70 70
         $this->assertFalse($files->exists($filename));
71 71
 
72 72
         $files->write($filename, 'some-data');
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 
83 83
         $files = new Files();
84 84
 
85
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
85
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
86 86
         $this->assertFalse($files->exists($filename));
87 87
 
88 88
         $files->read($filename);
@@ -101,14 +101,14 @@  discard block
 block discarded – undo
101 101
         $this->expectException(FileNotFoundException::class);
102 102
 
103 103
         $files = new Files();
104
-        $files->getPermissions(self::FIXTURE_DIRECTORY . '/missing');
104
+        $files->getPermissions(self::FIXTURE_DIRECTORY.'/missing');
105 105
     }
106 106
 
107 107
     public function testAppend(): void
108 108
     {
109 109
         $files = new Files();
110 110
 
111
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
111
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
112 112
         $this->assertFalse($files->exists($filename));
113 113
 
114 114
         $files->append($filename, 'some-data');
@@ -124,8 +124,8 @@  discard block
 block discarded – undo
124 124
     {
125 125
         $files = new Files();
126 126
 
127
-        $directory = self::FIXTURE_DIRECTORY . '/directory/abc/';
128
-        $filename = $directory . 'test.txt';
127
+        $directory = self::FIXTURE_DIRECTORY.'/directory/abc/';
128
+        $filename = $directory.'test.txt';
129 129
 
130 130
         $this->assertFalse($files->exists($directory));
131 131
         $this->assertFalse($files->exists($filename));
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
     {
147 147
         $files = new Files();
148 148
 
149
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
149
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
150 150
 
151 151
         $this->assertFalse($files->exists($filename));
152 152
         $files->touch($filename);
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
     public function testDelete(): void
157 157
     {
158 158
         $files = new Files();
159
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
159
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
160 160
 
161 161
         $this->assertFalse($files->exists($filename));
162 162
 
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     public function testDeleteMissingFile(): void
171 171
     {
172 172
         $files = new Files();
173
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
173
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
174 174
 
175 175
         $this->assertFalse($files->exists($filename));
176 176
         $files->delete($filename);
@@ -179,8 +179,8 @@  discard block
 block discarded – undo
179 179
     public function testCopy(): void
180 180
     {
181 181
         $files = new Files();
182
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
183
-        $destination = self::FIXTURE_DIRECTORY . '/new.txt';
182
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
183
+        $destination = self::FIXTURE_DIRECTORY.'/new.txt';
184 184
 
185 185
         $this->assertFalse($files->exists($filename));
186 186
         $files->write($filename, 'some-data');
@@ -203,8 +203,8 @@  discard block
 block discarded – undo
203 203
         $this->expectException(FileNotFoundException::class);
204 204
 
205 205
         $files = new Files();
206
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
207
-        $destination = self::FIXTURE_DIRECTORY . '/new.txt';
206
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
207
+        $destination = self::FIXTURE_DIRECTORY.'/new.txt';
208 208
 
209 209
         $this->assertFalse($files->exists($filename));
210 210
         $files->copy($filename, $destination);
@@ -213,8 +213,8 @@  discard block
 block discarded – undo
213 213
     public function testMove(): void
214 214
     {
215 215
         $files = new Files();
216
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
217
-        $destination = self::FIXTURE_DIRECTORY . '/new.txt';
216
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
217
+        $destination = self::FIXTURE_DIRECTORY.'/new.txt';
218 218
 
219 219
         $this->assertFalse($files->exists($filename));
220 220
         $files->write($filename, 'some-data');
@@ -237,8 +237,8 @@  discard block
 block discarded – undo
237 237
         $this->expectException(FileNotFoundException::class);
238 238
 
239 239
         $files = new Files();
240
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
241
-        $destination = self::FIXTURE_DIRECTORY . '/new.txt';
240
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
241
+        $destination = self::FIXTURE_DIRECTORY.'/new.txt';
242 242
 
243 243
         $this->assertFalse($files->exists($filename));
244 244
         $files->move($filename, $destination);
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 
56 56
         $this->assertFalse($files->isDirectory($directory));
57 57
 
58
-        $files->write($filename, 'some-data', FilesInterface::READONLY, true);
58
+        $files->write($filename, 'some-data', FilesInterface::readonly, true);
59 59
 
60 60
         $this->assertTrue($files->isDirectory($directory));
61 61
         $this->assertTrue($files->exists($filename));
Please login to merge, or discard this patch.
src/Files/tests/InformationTest.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function testTime(): void
33 33
     {
34 34
         $files = new Files();
35
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
35
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
36 36
 
37 37
         $files->write($filename, 'data', FilesInterface::READONLY);
38 38
         $this->assertEquals(filemtime($filename), $files->time($filename));
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $this->expectException(FileNotFoundException::class);
45 45
 
46 46
         $files = new Files();
47
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
47
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
48 48
 
49 49
         $files->time($filename);
50 50
     }
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     public function testMD5(): void
53 53
     {
54 54
         $files = new Files();
55
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
55
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
56 56
 
57 57
         $files->write($filename, 'data');
58 58
         $this->assertEquals(md5_file($filename), $files->md5($filename));
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         $this->expectException(FileNotFoundException::class);
66 66
 
67 67
         $files = new Files();
68
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
68
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
69 69
 
70 70
         $files->md5($filename);
71 71
     }
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     public function testExists(): void
83 83
     {
84 84
         $files = new Files();
85
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
85
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
86 86
 
87 87
         $this->assertFalse($files->exists($filename));
88 88
         $this->assertSame(file_exists($filename), $files->exists($filename));
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     public function testSize(): void
96 96
     {
97 97
         $files = new Files();
98
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
98
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
99 99
 
100 100
         $this->assertFalse($files->exists($filename));
101 101
         $files->write($filename, 'some-data-string');
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         $this->expectException(FileNotFoundException::class);
111 111
 
112 112
         $files = new Files();
113
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
113
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
114 114
 
115 115
         $this->assertFalse($files->exists($filename));
116 116
         $files->size($filename);
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     public function testLocalUri(): void
120 120
     {
121 121
         $files = new Files();
122
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
122
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
123 123
 
124 124
         $this->assertFalse($files->exists($filename));
125 125
         $files->write($filename, 'data');
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     public function testIsFile(): void
130 130
     {
131 131
         $files = new Files();
132
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
132
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
133 133
 
134 134
         $this->assertFalse($files->exists($filename));
135 135
         $files->write($filename, 'data');
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     public function testIsMissingFile(): void
146 146
     {
147 147
         $files = new Files();
148
-        $filename = self::FIXTURE_DIRECTORY . '/test.txt';
148
+        $filename = self::FIXTURE_DIRECTORY.'/test.txt';
149 149
 
150 150
         $this->assertFalse($files->exists($filename));
151 151
 
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
     public function testIsDirectory(): void
160 160
     {
161 161
         $files = new Files();
162
-        $directory = self::FIXTURE_DIRECTORY . '/directory/';
162
+        $directory = self::FIXTURE_DIRECTORY.'/directory/';
163 163
 
164 164
         $this->assertFalse($files->exists($directory));
165 165
         $files->ensureDirectory($directory);
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     public function testIsMissingDirectory(): void
176 176
     {
177 177
         $files = new Files();
178
-        $directory = self::FIXTURE_DIRECTORY . '/directory/';
178
+        $directory = self::FIXTURE_DIRECTORY.'/directory/';
179 179
 
180 180
         $this->assertFalse($files->exists($directory));
181 181
 
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
     public function testIsDirectoryNoSlash(): void
190 190
     {
191 191
         $files = new Files();
192
-        $directory = self::FIXTURE_DIRECTORY . '/directory';
192
+        $directory = self::FIXTURE_DIRECTORY.'/directory';
193 193
 
194 194
         $this->assertFalse($files->exists($directory));
195 195
         $files->ensureDirectory($directory);
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $files = new Files();
35 35
         $filename = self::FIXTURE_DIRECTORY . '/test.txt';
36 36
 
37
-        $files->write($filename, 'data', FilesInterface::READONLY);
37
+        $files->write($filename, 'data', FilesInterface::readonly);
38 38
         $this->assertEquals(filemtime($filename), $files->time($filename));
39 39
     }
40 40
 
Please login to merge, or discard this patch.
src/Files/tests/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,5 +18,5 @@
 block discarded – undo
18 18
     /**
19 19
      * @var string
20 20
      */
21
-    protected const FIXTURE_DIRECTORY = __DIR__ . '/fixtures/';
21
+    protected const FIXTURE_DIRECTORY = __DIR__.'/fixtures/';
22 22
 }
Please login to merge, or discard this patch.