Passed
Push — master ( c81bf2...c3afe7 )
by Aleksei
09:08 queued 01:17
created
src/Translator/src/Traits/TranslatorTrait.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,13 +32,13 @@  discard block
 block discarded – undo
32 32
      */
33 33
     protected function say(string $string, array $options = [], ?string $bundle = null): string
34 34
     {
35
-        if (Translator::isMessage($string)) {
35
+        if (Translator::isMessage($string)){
36 36
             //Cut [[ and ]]
37 37
             $string = \substr($string, 2, -2);
38 38
         }
39 39
 
40 40
         $container = ContainerScope::getContainer();
41
-        if (empty($container) || !$container->has(TranslatorInterface::class)) {
41
+        if (empty($container) || !$container->has(TranslatorInterface::class)){
42 42
             return Translator::interpolate($string, $options);
43 43
         }
44 44
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
          */
48 48
         $translator = $container->get(TranslatorInterface::class);
49 49
 
50
-        if (\is_null($bundle)) {
50
+        if (\is_null($bundle)){
51 51
             $bundle = $translator->getDomain(static::class);
52 52
         }
53 53
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,13 +32,15 @@  discard block
 block discarded – undo
32 32
      */
33 33
     protected function say(string $string, array $options = [], ?string $bundle = null): string
34 34
     {
35
-        if (Translator::isMessage($string)) {
35
+        if (Translator::isMessage($string))
36
+        {
36 37
             //Cut [[ and ]]
37 38
             $string = \substr($string, 2, -2);
38 39
         }
39 40
 
40 41
         $container = ContainerScope::getContainer();
41
-        if (empty($container) || !$container->has(TranslatorInterface::class)) {
42
+        if (empty($container) || !$container->has(TranslatorInterface::class))
43
+        {
42 44
             return Translator::interpolate($string, $options);
43 45
         }
44 46
 
@@ -47,7 +49,8 @@  discard block
 block discarded – undo
47 49
          */
48 50
         $translator = $container->get(TranslatorInterface::class);
49 51
 
50
-        if (\is_null($bundle)) {
52
+        if (\is_null($bundle))
53
+        {
51 54
             $bundle = $translator->getDomain(static::class);
52 55
         }
53 56
 
Please login to merge, or discard this patch.
src/Views/src/LoaderInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,5 +43,5 @@
 block discarded – undo
43 43
      *
44 44
      * @throws LoaderException
45 45
      */
46
-    public function list(?string $namespace = null): array;
46
+    public function list(?string $namespace = null) : array;
47 47
 }
Please login to merge, or discard this patch.
src/Views/src/Exception/CompileException.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 block discarded – undo
10 10
 
11 11
     public function __construct(?\Throwable $previous = null)
12 12
     {
13
-        parent::__construct((string) $previous?->getMessage(), (int) ($previous?->getCode() ?? 0), $previous);
13
+        parent::__construct((string)$previous?->getMessage(), (int)($previous?->getCode() ?? 0), $previous);
14 14
 
15
-        $this->file = (string) $previous?->getFile();
16
-        $this->line = (int) $previous?->getLine();
15
+        $this->file = (string)$previous?->getFile();
16
+        $this->line = (int)$previous?->getLine();
17 17
     }
18 18
 
19 19
     /**
Please login to merge, or discard this patch.
src/Views/src/Exception/RenderException.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
 
11 11
     public function __construct(?\Throwable $previous = null)
12 12
     {
13
-        parent::__construct((string) $previous?->getMessage(), (int) ($previous?->getCode() ?? 0), $previous);
14
-        $this->file = (string) $previous?->getFile();
15
-        $this->line = (int) $previous?->getLine();
13
+        parent::__construct((string)$previous?->getMessage(), (int)($previous?->getCode() ?? 0), $previous);
14
+        $this->file = (string)$previous?->getFile();
15
+        $this->line = (int)$previous?->getLine();
16 16
     }
17 17
 
18 18
     /**
Please login to merge, or discard this patch.
src/Views/src/ViewCache.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
     public function reset(?ContextInterface $context = null): void
14 14
     {
15
-        if (empty($context)) {
15
+        if (empty($context)){
16 16
             $this->cache = [];
17 17
             return;
18 18
         }
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function resetPath(string $path): void
27 27
     {
28
-        foreach ($this->cache as &$cache) {
28
+        foreach ($this->cache as &$cache){
29 29
             unset($cache[$path], $cache);
30 30
         }
31 31
     }
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function get(ContextInterface $context, string $path): ViewInterface
47 47
     {
48
-        if (!$this->has($context, $path)) {
48
+        if (!$this->has($context, $path)){
49 49
             throw new CacheException(\sprintf('No cache is available for %s.', $path));
50 50
         }
51 51
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,7 +12,8 @@  discard block
 block discarded – undo
12 12
 
13 13
     public function reset(?ContextInterface $context = null): void
14 14
     {
15
-        if (empty($context)) {
15
+        if (empty($context))
16
+        {
16 17
             $this->cache = [];
17 18
             return;
18 19
         }
@@ -25,7 +26,8 @@  discard block
 block discarded – undo
25 26
      */
26 27
     public function resetPath(string $path): void
27 28
     {
28
-        foreach ($this->cache as &$cache) {
29
+        foreach ($this->cache as &$cache)
30
+        {
29 31
             unset($cache[$path], $cache);
30 32
         }
31 33
     }
@@ -45,7 +47,8 @@  discard block
 block discarded – undo
45 47
      */
46 48
     public function get(ContextInterface $context, string $path): ViewInterface
47 49
     {
48
-        if (!$this->has($context, $path)) {
50
+        if (!$this->has($context, $path))
51
+        {
49 52
             throw new CacheException(\sprintf('No cache is available for %s.', $path));
50 53
         }
51 54
 
Please login to merge, or discard this patch.
src/Logger/src/Traits/LoggerTrait.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
      */
30 30
     protected function getLogger(?string $channel = null): LoggerInterface
31 31
     {
32
-        if ($channel !== null) {
32
+        if ($channel !== null){
33 33
             return $this->allocateLogger($channel);
34 34
         }
35 35
 
36
-        if ($this->logger !== null) {
36
+        if ($this->logger !== null){
37 37
             return $this->logger;
38 38
         }
39 39
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     private function allocateLogger(string $channel): LoggerInterface
48 48
     {
49 49
         $container = ContainerScope::getContainer();
50
-        if ($container === null || !$container->has(LogsInterface::class)) {
50
+        if ($container === null || !$container->has(LogsInterface::class)){
51 51
             return $this->logger ?? new NullLogger();
52 52
         }
53 53
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,11 +29,13 @@  discard block
 block discarded – undo
29 29
      */
30 30
     protected function getLogger(?string $channel = null): LoggerInterface
31 31
     {
32
-        if ($channel !== null) {
32
+        if ($channel !== null)
33
+        {
33 34
             return $this->allocateLogger($channel);
34 35
         }
35 36
 
36
-        if ($this->logger !== null) {
37
+        if ($this->logger !== null)
38
+        {
37 39
             return $this->logger;
38 40
         }
39 41
 
@@ -47,7 +49,8 @@  discard block
 block discarded – undo
47 49
     private function allocateLogger(string $channel): LoggerInterface
48 50
     {
49 51
         $container = ContainerScope::getContainer();
50
-        if ($container === null || !$container->has(LogsInterface::class)) {
52
+        if ($container === null || !$container->has(LogsInterface::class))
53
+        {
51 54
             return $this->logger ?? new NullLogger();
52 55
         }
53 56
 
Please login to merge, or discard this patch.
src/Tokenizer/src/InterfaceLocator.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -13,18 +13,18 @@  discard block
 block discarded – undo
13 13
 {
14 14
     public const INJECTOR = InterfaceLocatorInjector::class;
15 15
 
16
-    public function getInterfaces(string|null $target = null): array
16
+    public function getInterfaces(string | null $target = null): array
17 17
     {
18
-        if (!empty($target)) {
18
+        if (!empty($target)){
19 19
             $target = new \ReflectionClass($target);
20 20
         }
21 21
 
22 22
         $result = [];
23
-        foreach ($this->availableInterfaces() as $interface) {
24
-            try {
23
+        foreach ($this->availableInterfaces() as $interface){
24
+            try{
25 25
                 $reflection = $this->classReflection($interface);
26
-            } catch (LocatorException $e) {
27
-                if ($this->debug) {
26
+            }catch (LocatorException $e){
27
+                if ($this->debug){
28 28
                     throw $e;
29 29
                 }
30 30
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
                 continue;
33 33
             }
34 34
 
35
-            if (!$this->isTargeted($reflection, $target)) {
35
+            if (!$this->isTargeted($reflection, $target)){
36 36
                 continue;
37 37
             }
38 38
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $interfaces = [];
53 53
 
54
-        foreach ($this->availableReflections() as $reflection) {
54
+        foreach ($this->availableReflections() as $reflection){
55 55
             $interfaces = \array_merge($interfaces, $reflection->getInterfaces());
56 56
         }
57 57
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     protected function isTargeted(\ReflectionClass $class, ?\ReflectionClass $target = null): bool
65 65
     {
66
-        if (empty($target)) {
66
+        if (empty($target)){
67 67
             return true;
68 68
         }
69 69
 
Please login to merge, or discard this patch.
Braces   +17 added lines, -8 removed lines patch added patch discarded remove patch
@@ -15,16 +15,22 @@  discard block
 block discarded – undo
15 15
 
16 16
     public function getInterfaces(string|null $target = null): array
17 17
     {
18
-        if (!empty($target)) {
18
+        if (!empty($target))
19
+        {
19 20
             $target = new \ReflectionClass($target);
20 21
         }
21 22
 
22 23
         $result = [];
23
-        foreach ($this->availableInterfaces() as $interface) {
24
-            try {
24
+        foreach ($this->availableInterfaces() as $interface)
25
+        {
26
+            try
27
+            {
25 28
                 $reflection = $this->classReflection($interface);
26
-            } catch (LocatorException $e) {
27
-                if ($this->debug) {
29
+            }
30
+            catch (LocatorException $e)
31
+            {
32
+                if ($this->debug)
33
+                {
28 34
                     throw $e;
29 35
                 }
30 36
 
@@ -32,7 +38,8 @@  discard block
 block discarded – undo
32 38
                 continue;
33 39
             }
34 40
 
35
-            if (!$this->isTargeted($reflection, $target)) {
41
+            if (!$this->isTargeted($reflection, $target))
42
+            {
36 43
                 continue;
37 44
             }
38 45
 
@@ -51,7 +58,8 @@  discard block
 block discarded – undo
51 58
     {
52 59
         $interfaces = [];
53 60
 
54
-        foreach ($this->availableReflections() as $reflection) {
61
+        foreach ($this->availableReflections() as $reflection)
62
+        {
55 63
             $interfaces = \array_merge($interfaces, $reflection->getInterfaces());
56 64
         }
57 65
 
@@ -63,7 +71,8 @@  discard block
 block discarded – undo
63 71
      */
64 72
     protected function isTargeted(\ReflectionClass $class, ?\ReflectionClass $target = null): bool
65 73
     {
66
-        if (empty($target)) {
74
+        if (empty($target))
75
+        {
67 76
             return true;
68 77
         }
69 78
 
Please login to merge, or discard this patch.
src/Tokenizer/src/EnumLocator.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -13,18 +13,18 @@  discard block
 block discarded – undo
13 13
 {
14 14
     public const INJECTOR = EnumLocatorInjector::class;
15 15
 
16
-    public function getEnums(object|string|null $target = null): array
16
+    public function getEnums(object | string | null $target = null): array
17 17
     {
18
-        if (!empty($target)) {
18
+        if (!empty($target)){
19 19
             $target = new \ReflectionClass($target);
20 20
         }
21 21
 
22 22
         $result = [];
23
-        foreach ($this->availableEnums() as $enum) {
24
-            try {
23
+        foreach ($this->availableEnums() as $enum){
24
+            try{
25 25
                 $reflection = $this->enumReflection($enum);
26
-            } catch (LocatorException $e) {
27
-                if ($this->debug) {
26
+            }catch (LocatorException $e){
27
+                if ($this->debug){
28 28
                     throw $e;
29 29
                 }
30 30
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
                 continue;
33 33
             }
34 34
 
35
-            if (!$this->isTargeted($reflection, $target) || $reflection->isInterface()) {
35
+            if (!$this->isTargeted($reflection, $target) || $reflection->isInterface()){
36 36
                 continue;
37 37
             }
38 38
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $enums = [];
53 53
 
54
-        foreach ($this->availableReflections() as $reflection) {
54
+        foreach ($this->availableReflections() as $reflection){
55 55
             $enums = \array_merge($enums, $reflection->getEnums());
56 56
         }
57 57
 
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
      */
64 64
     protected function isTargeted(\ReflectionEnum $enum, ?\ReflectionClass $target = null): bool
65 65
     {
66
-        if ($target === null) {
66
+        if ($target === null){
67 67
             return true;
68 68
         }
69 69
 
70
-        if (!$target->isTrait()) {
70
+        if (!$target->isTrait()){
71 71
             //Target is interface or class
72 72
             /** @psalm-suppress RedundantCondition https://github.com/vimeo/psalm/issues/9489 */
73 73
             return $enum->isSubclassOf($target) || $enum->getName() === $target->getName();
Please login to merge, or discard this patch.
Braces   +19 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,16 +15,22 @@  discard block
 block discarded – undo
15 15
 
16 16
     public function getEnums(object|string|null $target = null): array
17 17
     {
18
-        if (!empty($target)) {
18
+        if (!empty($target))
19
+        {
19 20
             $target = new \ReflectionClass($target);
20 21
         }
21 22
 
22 23
         $result = [];
23
-        foreach ($this->availableEnums() as $enum) {
24
-            try {
24
+        foreach ($this->availableEnums() as $enum)
25
+        {
26
+            try
27
+            {
25 28
                 $reflection = $this->enumReflection($enum);
26
-            } catch (LocatorException $e) {
27
-                if ($this->debug) {
29
+            }
30
+            catch (LocatorException $e)
31
+            {
32
+                if ($this->debug)
33
+                {
28 34
                     throw $e;
29 35
                 }
30 36
 
@@ -32,7 +38,8 @@  discard block
 block discarded – undo
32 38
                 continue;
33 39
             }
34 40
 
35
-            if (!$this->isTargeted($reflection, $target) || $reflection->isInterface()) {
41
+            if (!$this->isTargeted($reflection, $target) || $reflection->isInterface())
42
+            {
36 43
                 continue;
37 44
             }
38 45
 
@@ -51,7 +58,8 @@  discard block
 block discarded – undo
51 58
     {
52 59
         $enums = [];
53 60
 
54
-        foreach ($this->availableReflections() as $reflection) {
61
+        foreach ($this->availableReflections() as $reflection)
62
+        {
55 63
             $enums = \array_merge($enums, $reflection->getEnums());
56 64
         }
57 65
 
@@ -63,11 +71,13 @@  discard block
 block discarded – undo
63 71
      */
64 72
     protected function isTargeted(\ReflectionEnum $enum, ?\ReflectionClass $target = null): bool
65 73
     {
66
-        if ($target === null) {
74
+        if ($target === null)
75
+        {
67 76
             return true;
68 77
         }
69 78
 
70
-        if (!$target->isTrait()) {
79
+        if (!$target->isTrait())
80
+        {
71 81
             //Target is interface or class
72 82
             /** @psalm-suppress RedundantCondition https://github.com/vimeo/psalm/issues/9489 */
73 83
             return $enum->isSubclassOf($target) || $enum->getName() === $target->getName();
Please login to merge, or discard this patch.
src/Tokenizer/src/ClassLocator.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -13,18 +13,18 @@  discard block
 block discarded – undo
13 13
 {
14 14
     public const INJECTOR = ClassLocatorInjector::class;
15 15
 
16
-    public function getClasses(object|string|null $target = null): array
16
+    public function getClasses(object | string | null $target = null): array
17 17
     {
18
-        if (!empty($target)) {
18
+        if (!empty($target)){
19 19
             $target = new \ReflectionClass($target);
20 20
         }
21 21
 
22 22
         $result = [];
23
-        foreach ($this->availableClasses() as $class) {
24
-            try {
23
+        foreach ($this->availableClasses() as $class){
24
+            try{
25 25
                 $reflection = $this->classReflection($class);
26
-            } catch (LocatorException $e) {
27
-                if ($this->debug) {
26
+            }catch (LocatorException $e){
27
+                if ($this->debug){
28 28
                     throw $e;
29 29
                 }
30 30
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
                 continue;
33 33
             }
34 34
 
35
-            if (!$this->isTargeted($reflection, $target) || $reflection->isInterface()) {
35
+            if (!$this->isTargeted($reflection, $target) || $reflection->isInterface()){
36 36
                 continue;
37 37
             }
38 38
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $classes = [];
53 53
 
54
-        foreach ($this->availableReflections() as $reflection) {
54
+        foreach ($this->availableReflections() as $reflection){
55 55
             $classes = \array_merge($classes, $reflection->getClasses());
56 56
         }
57 57
 
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
      */
64 64
     protected function isTargeted(\ReflectionClass $class, ?\ReflectionClass $target = null): bool
65 65
     {
66
-        if (empty($target)) {
66
+        if (empty($target)){
67 67
             return true;
68 68
         }
69 69
 
70
-        if (!$target->isTrait()) {
70
+        if (!$target->isTrait()){
71 71
             //Target is interface or class
72 72
             return $class->isSubclassOf($target) || $class->getName() === $target->getName();
73 73
         }
Please login to merge, or discard this patch.
Braces   +19 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,16 +15,22 @@  discard block
 block discarded – undo
15 15
 
16 16
     public function getClasses(object|string|null $target = null): array
17 17
     {
18
-        if (!empty($target)) {
18
+        if (!empty($target))
19
+        {
19 20
             $target = new \ReflectionClass($target);
20 21
         }
21 22
 
22 23
         $result = [];
23
-        foreach ($this->availableClasses() as $class) {
24
-            try {
24
+        foreach ($this->availableClasses() as $class)
25
+        {
26
+            try
27
+            {
25 28
                 $reflection = $this->classReflection($class);
26
-            } catch (LocatorException $e) {
27
-                if ($this->debug) {
29
+            }
30
+            catch (LocatorException $e)
31
+            {
32
+                if ($this->debug)
33
+                {
28 34
                     throw $e;
29 35
                 }
30 36
 
@@ -32,7 +38,8 @@  discard block
 block discarded – undo
32 38
                 continue;
33 39
             }
34 40
 
35
-            if (!$this->isTargeted($reflection, $target) || $reflection->isInterface()) {
41
+            if (!$this->isTargeted($reflection, $target) || $reflection->isInterface())
42
+            {
36 43
                 continue;
37 44
             }
38 45
 
@@ -51,7 +58,8 @@  discard block
 block discarded – undo
51 58
     {
52 59
         $classes = [];
53 60
 
54
-        foreach ($this->availableReflections() as $reflection) {
61
+        foreach ($this->availableReflections() as $reflection)
62
+        {
55 63
             $classes = \array_merge($classes, $reflection->getClasses());
56 64
         }
57 65
 
@@ -63,11 +71,13 @@  discard block
 block discarded – undo
63 71
      */
64 72
     protected function isTargeted(\ReflectionClass $class, ?\ReflectionClass $target = null): bool
65 73
     {
66
-        if (empty($target)) {
74
+        if (empty($target))
75
+        {
67 76
             return true;
68 77
         }
69 78
 
70
-        if (!$target->isTrait()) {
79
+        if (!$target->isTrait())
80
+        {
71 81
             //Target is interface or class
72 82
             return $class->isSubclassOf($target) || $class->getName() === $target->getName();
73 83
         }
Please login to merge, or discard this patch.