Passed
Push — master ( ccffb6...f76682 )
by butschster
15:36 queued 17s
created
src/Snapshots/src/Snapshot.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function __construct(
13 13
         private readonly string $id,
14 14
         private readonly \Throwable $exception
15
-    ) {
15
+    ){
16 16
     }
17 17
 
18 18
     public function getID(): string
Please login to merge, or discard this patch.
src/Views/src/Loader/ViewPath.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
         private readonly string $namespace,
11 11
         private readonly string $name,
12 12
         private readonly string $basename
13
-    ) {
13
+    ){
14 14
     }
15 15
 
16 16
     public function getNamespace(): string
Please login to merge, or discard this patch.
src/Views/src/Loader/PathParser.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     public function __construct(
16 16
         private readonly string $defaultNamespace,
17 17
         private readonly string $extension
18
-    ) {
18
+    ){
19 19
     }
20 20
 
21 21
     public function getExtension(): string
@@ -50,21 +50,21 @@  discard block
 block discarded – undo
50 50
         );
51 51
 
52 52
         $namespace = $this->defaultNamespace;
53
-        if (!\str_contains((string) $filename, '.')) {
53
+        if (!\str_contains((string)$filename, '.')){
54 54
             //Force default extension
55
-            $filename .= '.' . $this->extension;
56
-        } elseif (!$this->match($filename)) {
55
+            $filename .= '.'.$this->extension;
56
+        } elseif (!$this->match($filename)){
57 57
             return null;
58 58
         }
59 59
 
60
-        if (\str_contains((string) $filename, LoaderInterface::NS_SEPARATOR)) {
61
-            [$namespace, $filename] = explode(LoaderInterface::NS_SEPARATOR, (string) $filename);
60
+        if (\str_contains((string)$filename, LoaderInterface::NS_SEPARATOR)){
61
+            [$namespace, $filename] = explode(LoaderInterface::NS_SEPARATOR, (string)$filename);
62 62
         }
63 63
 
64 64
         //Twig like namespaces
65
-        if (isset($filename[0]) && $filename[0] === '@') {
65
+        if (isset($filename[0]) && $filename[0] === '@'){
66 66
             $separator = \strpos($filename, '/');
67
-            if ($separator === false) {
67
+            if ($separator === false){
68 68
                 throw new PathException(\sprintf('Malformed view path "%s" (expecting "@namespace/name").', $path));
69 69
             }
70 70
 
@@ -94,11 +94,11 @@  discard block
 block discarded – undo
94 94
      */
95 95
     private function validatePath(string $path): void
96 96
     {
97
-        if (empty($path)) {
97
+        if (empty($path)){
98 98
             throw new PathException('A view path is empty');
99 99
         }
100 100
 
101
-        if (\str_contains($path, "\0")) {
101
+        if (\str_contains($path, "\0")){
102 102
             throw new PathException('A view path cannot contain NUL bytes');
103 103
         }
104 104
 
@@ -106,14 +106,14 @@  discard block
 block discarded – undo
106 106
         $parts = \explode('/', $path);
107 107
         $level = 0;
108 108
 
109
-        foreach ($parts as $part) {
110
-            if ('..' === $part) {
109
+        foreach ($parts as $part){
110
+            if ('..' === $part){
111 111
                 --$level;
112
-            } elseif ('.' !== $part) {
112
+            } elseif ('.' !== $part){
113 113
                 ++$level;
114 114
             }
115 115
 
116
-            if ($level < 0) {
116
+            if ($level < 0){
117 117
                 throw new PathException(\sprintf(
118 118
                     'Looks like you try to load a view outside configured directories (%s)',
119 119
                     $path
Please login to merge, or discard this patch.
Braces   +24 added lines, -11 removed lines patch added patch discarded remove patch
@@ -50,21 +50,27 @@  discard block
 block discarded – undo
50 50
         );
51 51
 
52 52
         $namespace = $this->defaultNamespace;
53
-        if (!\str_contains((string) $filename, '.')) {
53
+        if (!\str_contains((string) $filename, '.'))
54
+        {
54 55
             //Force default extension
55 56
             $filename .= '.' . $this->extension;
56
-        } elseif (!$this->match($filename)) {
57
+        }
58
+        elseif (!$this->match($filename))
59
+        {
57 60
             return null;
58 61
         }
59 62
 
60
-        if (\str_contains((string) $filename, LoaderInterface::NS_SEPARATOR)) {
63
+        if (\str_contains((string) $filename, LoaderInterface::NS_SEPARATOR))
64
+        {
61 65
             [$namespace, $filename] = explode(LoaderInterface::NS_SEPARATOR, (string) $filename);
62 66
         }
63 67
 
64 68
         //Twig like namespaces
65
-        if (isset($filename[0]) && $filename[0] === '@') {
69
+        if (isset($filename[0]) && $filename[0] === '@')
70
+        {
66 71
             $separator = \strpos($filename, '/');
67
-            if ($separator === false) {
72
+            if ($separator === false)
73
+            {
68 74
                 throw new PathException(\sprintf('Malformed view path "%s" (expecting "@namespace/name").', $path));
69 75
             }
70 76
 
@@ -94,11 +100,13 @@  discard block
 block discarded – undo
94 100
      */
95 101
     private function validatePath(string $path): void
96 102
     {
97
-        if (empty($path)) {
103
+        if (empty($path))
104
+        {
98 105
             throw new PathException('A view path is empty');
99 106
         }
100 107
 
101
-        if (\str_contains($path, "\0")) {
108
+        if (\str_contains($path, "\0"))
109
+        {
102 110
             throw new PathException('A view path cannot contain NUL bytes');
103 111
         }
104 112
 
@@ -106,14 +114,19 @@  discard block
 block discarded – undo
106 114
         $parts = \explode('/', $path);
107 115
         $level = 0;
108 116
 
109
-        foreach ($parts as $part) {
110
-            if ('..' === $part) {
117
+        foreach ($parts as $part)
118
+        {
119
+            if ('..' === $part)
120
+            {
111 121
                 --$level;
112
-            } elseif ('.' !== $part) {
122
+            }
123
+            elseif ('.' !== $part)
124
+            {
113 125
                 ++$level;
114 126
             }
115 127
 
116
-            if ($level < 0) {
128
+            if ($level < 0)
129
+            {
117 130
                 throw new PathException(\sprintf(
118 131
                     'Looks like you try to load a view outside configured directories (%s)',
119 132
                     $path
Please login to merge, or discard this patch.
src/Views/src/Config/ViewsConfig.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     public function getGlobalVariables(): array
29 29
     {
30
-        return (array) ($this->config['globalVariables'] ?? []);
30
+        return (array)($this->config['globalVariables'] ?? []);
31 31
     }
32 32
 
33 33
     public function isCacheEnabled(): bool
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     public function getCacheDirectory(): string
39 39
     {
40
-        return \rtrim($this->config['cache']['directory'] ?? '', '/') . '/';
40
+        return \rtrim($this->config['cache']['directory'] ?? '', '/').'/';
41 41
     }
42 42
 
43 43
     /**
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function getNamespaces(): array
47 47
     {
48
-        return (array) ($this->config['namespaces'] ?? []);
48
+        return (array)($this->config['namespaces'] ?? []);
49 49
     }
50 50
 
51 51
     /**
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     {
58 58
         return \array_map(
59 59
             fn (mixed $dependency): Autowire =>  $this->wire($dependency),
60
-            (array) ($this->config['dependencies'] ?? [])
60
+            (array)($this->config['dependencies'] ?? [])
61 61
         );
62 62
     }
63 63
 
@@ -70,16 +70,16 @@  discard block
 block discarded – undo
70 70
     {
71 71
         return \array_map(
72 72
             fn (mixed $engine): Autowire =>  $this->wire($engine),
73
-            (array) ($this->config['engines'] ?? [])
73
+            (array)($this->config['engines'] ?? [])
74 74
         );
75 75
     }
76 76
 
77 77
     /**
78 78
      * @param Autowire|class-string $item
79 79
      */
80
-    private function wire(Autowire|string $item): Autowire
80
+    private function wire(Autowire | string $item): Autowire
81 81
     {
82
-        if ($item instanceof Autowire) {
82
+        if ($item instanceof Autowire){
83 83
             return $item;
84 84
         }
85 85
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,8 @@
 block discarded – undo
79 79
      */
80 80
     private function wire(Autowire|string $item): Autowire
81 81
     {
82
-        if ($item instanceof Autowire) {
82
+        if ($item instanceof Autowire)
83
+        {
83 84
             return $item;
84 85
         }
85 86
 
Please login to merge, or discard this patch.
src/Views/src/ViewContext.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     public function getID(): string
21 21
     {
22 22
         $calculated = '';
23
-        foreach ($this->dependencies as $dependency) {
23
+        foreach ($this->dependencies as $dependency){
24 24
             $calculated .= \sprintf('[%s=%s]', $dependency->getName(), $dependency->getValue());
25 25
         }
26 26
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     public function resolveValue(string $dependency): mixed
49 49
     {
50
-        if (!isset($this->dependencies[$dependency])) {
50
+        if (!isset($this->dependencies[$dependency])){
51 51
             throw new ContextException(\sprintf('Undefined context dependency \'%s\'.', $dependency));
52 52
         }
53 53
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,8 @@  discard block
 block discarded – undo
20 20
     public function getID(): string
21 21
     {
22 22
         $calculated = '';
23
-        foreach ($this->dependencies as $dependency) {
23
+        foreach ($this->dependencies as $dependency)
24
+        {
24 25
             $calculated .= \sprintf('[%s=%s]', $dependency->getName(), $dependency->getValue());
25 26
         }
26 27
 
@@ -47,7 +48,8 @@  discard block
 block discarded – undo
47 48
 
48 49
     public function resolveValue(string $dependency): mixed
49 50
     {
50
-        if (!isset($this->dependencies[$dependency])) {
51
+        if (!isset($this->dependencies[$dependency]))
52
+        {
51 53
             throw new ContextException(\sprintf('Undefined context dependency \'%s\'.', $dependency));
52 54
         }
53 55
 
Please login to merge, or discard this patch.
src/Views/src/Engine/AbstractEngine.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     public function getLoader(): LoaderInterface
30 30
     {
31
-        if (empty($this->loader)) {
31
+        if (empty($this->loader)){
32 32
             throw new EngineException('No associated loader found');
33 33
         }
34 34
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,8 @@
 block discarded – undo
28 28
 
29 29
     public function getLoader(): LoaderInterface
30 30
     {
31
-        if (empty($this->loader)) {
31
+        if (empty($this->loader))
32
+        {
32 33
             throw new EngineException('No associated loader found');
33 34
         }
34 35
 
Please login to merge, or discard this patch.
src/Views/src/Engine/Native/NativeEngine.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     public function __construct(
17 17
         private readonly ContainerInterface $container,
18 18
         string $extension = self::EXTENSION
19
-    ) {
19
+    ){
20 20
         $this->extension = $extension;
21 21
     }
22 22
 
Please login to merge, or discard this patch.
src/Views/src/Engine/Native/NativeView.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     public function __construct(
16 16
         private readonly ViewSource $view,
17 17
         private readonly ContainerInterface $container
18
-    ) {
18
+    ){
19 19
     }
20 20
 
21 21
     public function render(array $data = []): string
@@ -23,21 +23,21 @@  discard block
 block discarded – undo
23 23
         \ob_start();
24 24
         $__outputLevel__ = \ob_get_level();
25 25
 
26
-        try {
26
+        try{
27 27
             ContainerScope::runScope($this->container, function () use ($data): void {
28 28
                 \extract($data, EXTR_OVERWRITE);
29 29
                 // render view in context and output buffer scope, context can be accessed using $this->context
30 30
                 require $this->view->getFilename();
31 31
             });
32
-        } catch (\Throwable $throwable) {
33
-            while (\ob_get_level() >= $__outputLevel__) {
32
+        }catch (\Throwable $throwable){
33
+            while (\ob_get_level() >= $__outputLevel__){
34 34
                 \ob_end_clean();
35 35
             }
36 36
 
37 37
             throw new RenderException($throwable);
38
-        } finally {
38
+        }finally{
39 39
             //Closing all nested buffers
40
-            while (\ob_get_level() > $__outputLevel__) {
40
+            while (\ob_get_level() > $__outputLevel__){
41 41
                 \ob_end_clean();
42 42
             }
43 43
         }
Please login to merge, or discard this patch.
Braces   +12 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,21 +23,28 @@
 block discarded – undo
23 23
         \ob_start();
24 24
         $__outputLevel__ = \ob_get_level();
25 25
 
26
-        try {
26
+        try
27
+        {
27 28
             ContainerScope::runScope($this->container, function () use ($data): void {
28 29
                 \extract($data, EXTR_OVERWRITE);
29 30
                 // render view in context and output buffer scope, context can be accessed using $this->context
30 31
                 require $this->view->getFilename();
31 32
             });
32
-        } catch (\Throwable $throwable) {
33
-            while (\ob_get_level() >= $__outputLevel__) {
33
+        }
34
+        catch (\Throwable $throwable)
35
+        {
36
+            while (\ob_get_level() >= $__outputLevel__)
37
+            {
34 38
                 \ob_end_clean();
35 39
             }
36 40
 
37 41
             throw new RenderException($throwable);
38
-        } finally {
42
+        }
43
+        finally
44
+        {
39 45
             //Closing all nested buffers
40
-            while (\ob_get_level() > $__outputLevel__) {
46
+            while (\ob_get_level() > $__outputLevel__)
47
+            {
41 48
                 \ob_end_clean();
42 49
             }
43 50
         }
Please login to merge, or discard this patch.
src/Views/src/ViewManager.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -22,21 +22,21 @@  discard block
 block discarded – undo
22 22
         private readonly GlobalVariablesInterface $globalVariables,
23 23
         FactoryInterface $factory,
24 24
         ?ContextInterface $context = null
25
-    ) {
25
+    ){
26 26
         $this->context = $context ?? new ViewContext();
27 27
         $this->loader = $factory->make(LoaderInterface::class, [
28 28
             'namespaces' => $config->getNamespaces(),
29 29
         ]);
30 30
 
31
-        foreach ($this->config->getDependencies() as $dependency) {
31
+        foreach ($this->config->getDependencies() as $dependency){
32 32
             $this->addDependency($dependency->resolve($factory));
33 33
         }
34 34
 
35
-        foreach ($this->config->getEngines() as $engine) {
35
+        foreach ($this->config->getEngines() as $engine){
36 36
             $this->addEngine($engine->resolve($factory));
37 37
         }
38 38
 
39
-        if ($this->config->isCacheEnabled()) {
39
+        if ($this->config->isCacheEnabled()){
40 40
             $this->cache = new ViewCache();
41 41
         }
42 42
     }
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     {
62 62
         $this->engines[] = $engine->withLoader($this->loader);
63 63
 
64
-        \uasort($this->engines, static function (EngineInterface $a, EngineInterface $b) {
64
+        \uasort($this->engines, static function (EngineInterface $a, EngineInterface $b){
65 65
             return \strcmp(
66 66
                 $a->getLoader()->getExtension() ?? '',
67 67
                 $b->getLoader()->getExtension() ?? ''
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
         // Rotate all possible context variants and warm up cache
97 97
         $generator = new ContextGenerator($this->context);
98
-        foreach ($generator->generate() as $context) {
98
+        foreach ($generator->generate() as $context){
99 99
             $engine->reset($path, $context);
100 100
             $engine->compile($path, $context);
101 101
         }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
         // Rotate all possible context variants and warm up cache
114 114
         $generator = new ContextGenerator($this->context);
115
-        foreach ($generator->generate() as $context) {
115
+        foreach ($generator->generate() as $context){
116 116
             $engine->reset($path, $context);
117 117
         }
118 118
     }
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      */
125 125
     public function get(string $path): ViewInterface
126 126
     {
127
-        if ($this->cache?->has($this->context, $path)) {
127
+        if ($this->cache?->has($this->context, $path)){
128 128
             return $this->cache->get($this->context, $path);
129 129
         }
130 130
 
@@ -153,8 +153,8 @@  discard block
 block discarded – undo
153 153
      */
154 154
     private function findEngine(string $path): EngineInterface
155 155
     {
156
-        foreach ($this->engines as $engine) {
157
-            if ($engine->getLoader()->exists($path)) {
156
+        foreach ($this->engines as $engine){
157
+            if ($engine->getLoader()->exists($path)){
158 158
                 return $engine;
159 159
             }
160 160
         }
Please login to merge, or discard this patch.
Braces   +18 added lines, -9 removed lines patch added patch discarded remove patch
@@ -28,15 +28,18 @@  discard block
 block discarded – undo
28 28
             'namespaces' => $config->getNamespaces(),
29 29
         ]);
30 30
 
31
-        foreach ($this->config->getDependencies() as $dependency) {
31
+        foreach ($this->config->getDependencies() as $dependency)
32
+        {
32 33
             $this->addDependency($dependency->resolve($factory));
33 34
         }
34 35
 
35
-        foreach ($this->config->getEngines() as $engine) {
36
+        foreach ($this->config->getEngines() as $engine)
37
+        {
36 38
             $this->addEngine($engine->resolve($factory));
37 39
         }
38 40
 
39
-        if ($this->config->isCacheEnabled()) {
41
+        if ($this->config->isCacheEnabled())
42
+        {
40 43
             $this->cache = new ViewCache();
41 44
         }
42 45
     }
@@ -61,7 +64,8 @@  discard block
 block discarded – undo
61 64
     {
62 65
         $this->engines[] = $engine->withLoader($this->loader);
63 66
 
64
-        \uasort($this->engines, static function (EngineInterface $a, EngineInterface $b) {
67
+        \uasort($this->engines, static function (EngineInterface $a, EngineInterface $b)
68
+        {
65 69
             return \strcmp(
66 70
                 $a->getLoader()->getExtension() ?? '',
67 71
                 $b->getLoader()->getExtension() ?? ''
@@ -95,7 +99,8 @@  discard block
 block discarded – undo
95 99
 
96 100
         // Rotate all possible context variants and warm up cache
97 101
         $generator = new ContextGenerator($this->context);
98
-        foreach ($generator->generate() as $context) {
102
+        foreach ($generator->generate() as $context)
103
+        {
99 104
             $engine->reset($path, $context);
100 105
             $engine->compile($path, $context);
101 106
         }
@@ -112,7 +117,8 @@  discard block
 block discarded – undo
112 117
 
113 118
         // Rotate all possible context variants and warm up cache
114 119
         $generator = new ContextGenerator($this->context);
115
-        foreach ($generator->generate() as $context) {
120
+        foreach ($generator->generate() as $context)
121
+        {
116 122
             $engine->reset($path, $context);
117 123
         }
118 124
     }
@@ -124,7 +130,8 @@  discard block
 block discarded – undo
124 130
      */
125 131
     public function get(string $path): ViewInterface
126 132
     {
127
-        if ($this->cache?->has($this->context, $path)) {
133
+        if ($this->cache?->has($this->context, $path))
134
+        {
128 135
             return $this->cache->get($this->context, $path);
129 136
         }
130 137
 
@@ -153,8 +160,10 @@  discard block
 block discarded – undo
153 160
      */
154 161
     private function findEngine(string $path): EngineInterface
155 162
     {
156
-        foreach ($this->engines as $engine) {
157
-            if ($engine->getLoader()->exists($path)) {
163
+        foreach ($this->engines as $engine)
164
+        {
165
+            if ($engine->getLoader()->exists($path))
166
+            {
158 167
                 return $engine;
159 168
             }
160 169
         }
Please login to merge, or discard this patch.