Passed
Push — master ( 9f2c4f...e942df )
by Aleksei
17:57 queued 05:15
created
src/Views/tests/LoaderTest.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Views/tests/ManagerTest.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,8 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Views/tests/NativeTest.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Views/tests/CacheTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -130,8 +130,8 @@
 block discarded – undo
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());
Please login to merge, or discard this patch.
src/Views/src/Traits/ProcessorTrait.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,8 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Security/src/Guard.php 2 patches
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,8 +48,10 @@  discard block
 block discarded – undo
48 48
     public function allows(string $permission, array $context = []): bool
49 49
     {
50 50
         $allows = false;
51
-        foreach ($this->getRoles() as $role) {
52
-            if (!$this->permissions->hasRole($role)) {
51
+        foreach ($this->getRoles() as $role)
52
+        {
53
+            if (!$this->permissions->hasRole($role))
54
+            {
53 55
                 continue;
54 56
             }
55 57
 
@@ -95,7 +97,8 @@  discard block
 block discarded – undo
95 97
      */
96 98
     public function getActor(): ActorInterface
97 99
     {
98
-        if (empty($this->actor)) {
100
+        if (empty($this->actor))
101
+        {
99 102
             throw new GuardException('Unable to get Guard Actor, no value set');
100 103
         }
101 104
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,14 +18,14 @@  discard block
 block discarded – undo
18 18
         private readonly PermissionsInterface $permissions,
19 19
         private ?ActorInterface $actor = null,
20 20
         private array $roles = []
21
-    ) {
21
+    ){
22 22
     }
23 23
 
24 24
     public function allows(string $permission, array $context = []): bool
25 25
     {
26 26
         $allows = false;
27
-        foreach ($this->getRoles() as $role) {
28
-            if (!$this->permissions->hasRole($role)) {
27
+        foreach ($this->getRoles() as $role){
28
+            if (!$this->permissions->hasRole($role)){
29 29
                 continue;
30 30
             }
31 31
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function getActor(): ActorInterface
66 66
     {
67
-        if (empty($this->actor)) {
67
+        if (empty($this->actor)){
68 68
             throw new GuardException('Unable to get Guard Actor, no value set');
69 69
         }
70 70
 
Please login to merge, or discard this patch.
src/Scaffolder/tests/App/TestApp.php 2 patches
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,11 +61,13 @@
 block discarded – undo
61 61
      */
62 62
     protected function mapDirectories(array $directories): array
63 63
     {
64
-        if (!isset($directories['root'])) {
64
+        if (!isset($directories['root']))
65
+        {
65 66
             throw new Boot\Exception\BootException('Missing required directory `root`.');
66 67
         }
67 68
 
68
-        if (!isset($directories['app'])) {
69
+        if (!isset($directories['app']))
70
+        {
69 71
             $directories['app'] = $directories['root'] . '/';
70 72
         }
71 73
 
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -52,19 +52,19 @@
 block discarded – undo
52 52
      */
53 53
     protected function mapDirectories(array $directories): array
54 54
     {
55
-        if (!isset($directories['root'])) {
55
+        if (!isset($directories['root'])){
56 56
             throw new Boot\Exception\BootException('Missing required directory `root`.');
57 57
         }
58 58
 
59
-        if (!isset($directories['app'])) {
60
-            $directories['app'] = $directories['root'] . '/';
59
+        if (!isset($directories['app'])){
60
+            $directories['app'] = $directories['root'].'/';
61 61
         }
62 62
 
63 63
         return array_merge([
64
-            'vendor'  => $directories['root'] . '/vendor/',
65
-            'runtime' => $directories['root'] . '/runtime/',
66
-            'config'  => $directories['app'] . '/config/',
67
-            'resources' => $directories['root'] . '/resources/',
64
+            'vendor'  => $directories['root'].'/vendor/',
65
+            'runtime' => $directories['root'].'/runtime/',
66
+            'config'  => $directories['app'].'/config/',
67
+            'resources' => $directories['root'].'/resources/',
68 68
         ], $directories);
69 69
     }
70 70
 }
Please login to merge, or discard this patch.
src/Prototype/src/ClassNode/ConflictResolver/AbstractEntity.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     public function fullName(): string
33 33
     {
34 34
         $name = $this->name;
35
-        if ($this->sequence > 0) {
35
+        if ($this->sequence > 0){
36 36
             $name .= $this->sequence;
37 37
         }
38 38
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,8 @@
 block discarded – undo
32 32
     public function fullName(): string
33 33
     {
34 34
         $name = $this->name;
35
-        if ($this->sequence > 0) {
35
+        if ($this->sequence > 0)
36
+        {
36 37
             $name .= $this->sequence;
37 38
         }
38 39
 
Please login to merge, or discard this patch.
src/Prototype/tests/Traverse/Extractor.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     private function traverse(string $code, NodeVisitor ...$visitors): void
58 58
     {
59 59
         $tr = new NodeTraverser();
60
-        foreach ($visitors as $visitor) {
60
+        foreach ($visitors as $visitor){
61 61
             $tr->addVisitor($visitor);
62 62
         }
63 63
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,8 @@
 block discarded – undo
57 57
     private function traverse(string $code, NodeVisitor ...$visitors): void
58 58
     {
59 59
         $tr = new NodeTraverser();
60
-        foreach ($visitors as $visitor) {
60
+        foreach ($visitors as $visitor)
61
+        {
61 62
             $tr->addVisitor($visitor);
62 63
         }
63 64
 
Please login to merge, or discard this patch.