Passed
Push — master ( 055025...73f9b0 )
by Aleksei
12:05
created
src/Cache/src/CacheRepository.php 2 patches
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -20,14 +20,14 @@  discard block
 block discarded – undo
20 20
         protected CacheInterface $storage,
21 21
         protected ?EventDispatcherInterface $dispatcher = null,
22 22
         protected ?string $prefix = null
23
-    ) {
23
+    ){
24 24
     }
25 25
 
26 26
     public function get(string $key, mixed $default = null): mixed
27 27
     {
28 28
         $value = $this->storage->get($this->resolveKey($key));
29 29
 
30
-        if ($value === null) {
30
+        if ($value === null){
31 31
             $this->dispatcher?->dispatch(new CacheMissed($this->resolveKey($key)));
32 32
 
33 33
             return $default;
@@ -38,11 +38,11 @@  discard block
 block discarded – undo
38 38
         return $value;
39 39
     }
40 40
 
41
-    public function set(string $key, mixed $value, \DateInterval|int|null $ttl = null): bool
41
+    public function set(string $key, mixed $value, \DateInterval | int | null $ttl = null): bool
42 42
     {
43 43
         $result = $this->storage->set($this->resolveKey($key), $value, $ttl);
44 44
 
45
-        if ($result) {
45
+        if ($result){
46 46
             $this->dispatcher?->dispatch(new KeyWritten($this->resolveKey($key), $value));
47 47
         }
48 48
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $result = $this->storage->delete($this->resolveKey($key));
55 55
 
56
-        if ($result) {
56
+        if ($result){
57 57
             $this->dispatcher?->dispatch(new KeyDeleted($this->resolveKey($key)));
58 58
         }
59 59
 
@@ -69,18 +69,18 @@  discard block
 block discarded – undo
69 69
     {
70 70
         $result = [];
71 71
 
72
-        foreach ($keys as $key) {
72
+        foreach ($keys as $key){
73 73
             $result[$key] = $this->get($key, $default);
74 74
         }
75 75
 
76 76
         return $result;
77 77
     }
78 78
 
79
-    public function setMultiple(iterable $values, \DateInterval|int|null $ttl = null): bool
79
+    public function setMultiple(iterable $values, \DateInterval | int | null $ttl = null): bool
80 80
     {
81 81
         $state = null;
82 82
 
83
-        foreach ($values as $key => $value) {
83
+        foreach ($values as $key => $value){
84 84
             $result = $this->set($key, $value, $ttl);
85 85
             $state = \is_null($state) ? $result : $result && $state;
86 86
         }
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     public function deleteMultiple(iterable $keys): bool
92 92
     {
93 93
         $state = null;
94
-        foreach ($keys as $key) {
94
+        foreach ($keys as $key){
95 95
             $result = $this->delete($key);
96 96
             $state = \is_null($state) ? $result : $result && $state;
97 97
         }
@@ -111,8 +111,8 @@  discard block
 block discarded – undo
111 111
 
112 112
     private function resolveKey(string $key): string
113 113
     {
114
-        if (!empty($this->prefix)) {
115
-            return $this->prefix . $key;
114
+        if (!empty($this->prefix)){
115
+            return $this->prefix.$key;
116 116
         }
117 117
 
118 118
         return $key;
Please login to merge, or discard this patch.
Braces   +14 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,7 +27,8 @@  discard block
 block discarded – undo
27 27
     {
28 28
         $value = $this->storage->get($this->resolveKey($key));
29 29
 
30
-        if ($value === null) {
30
+        if ($value === null)
31
+        {
31 32
             $this->dispatcher?->dispatch(new CacheMissed($this->resolveKey($key)));
32 33
 
33 34
             return $default;
@@ -42,7 +43,8 @@  discard block
 block discarded – undo
42 43
     {
43 44
         $result = $this->storage->set($this->resolveKey($key), $value, $ttl);
44 45
 
45
-        if ($result) {
46
+        if ($result)
47
+        {
46 48
             $this->dispatcher?->dispatch(new KeyWritten($this->resolveKey($key), $value));
47 49
         }
48 50
 
@@ -53,7 +55,8 @@  discard block
 block discarded – undo
53 55
     {
54 56
         $result = $this->storage->delete($this->resolveKey($key));
55 57
 
56
-        if ($result) {
58
+        if ($result)
59
+        {
57 60
             $this->dispatcher?->dispatch(new KeyDeleted($this->resolveKey($key)));
58 61
         }
59 62
 
@@ -69,7 +72,8 @@  discard block
 block discarded – undo
69 72
     {
70 73
         $result = [];
71 74
 
72
-        foreach ($keys as $key) {
75
+        foreach ($keys as $key)
76
+        {
73 77
             $result[$key] = $this->get($key, $default);
74 78
         }
75 79
 
@@ -80,7 +84,8 @@  discard block
 block discarded – undo
80 84
     {
81 85
         $state = null;
82 86
 
83
-        foreach ($values as $key => $value) {
87
+        foreach ($values as $key => $value)
88
+        {
84 89
             $result = $this->set($key, $value, $ttl);
85 90
             $state = \is_null($state) ? $result : $result && $state;
86 91
         }
@@ -91,7 +96,8 @@  discard block
 block discarded – undo
91 96
     public function deleteMultiple(iterable $keys): bool
92 97
     {
93 98
         $state = null;
94
-        foreach ($keys as $key) {
99
+        foreach ($keys as $key)
100
+        {
95 101
             $result = $this->delete($key);
96 102
             $state = \is_null($state) ? $result : $result && $state;
97 103
         }
@@ -111,7 +117,8 @@  discard block
 block discarded – undo
111 117
 
112 118
     private function resolveKey(string $key): string
113 119
     {
114
-        if (!empty($this->prefix)) {
120
+        if (!empty($this->prefix))
121
+        {
115 122
             return $this->prefix . $key;
116 123
         }
117 124
 
Please login to merge, or discard this patch.
src/Cache/src/CacheManager.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
         private readonly CacheConfig $config,
20 20
         private readonly FactoryInterface $factory,
21 21
         private readonly ?EventDispatcherInterface $dispatcher = null,
22
-    ) {
22
+    ){
23 23
     }
24 24
 
25 25
     public function storage(?string $name = null): CacheInterface
@@ -30,12 +30,12 @@  discard block
 block discarded – undo
30 30
         $storage = $this->config->getAliases()[$name] ?? $name;
31 31
 
32 32
         $prefix = null;
33
-        if (\is_array($storage)) {
33
+        if (\is_array($storage)){
34 34
             $prefix = !empty($storage['prefix']) ? $storage['prefix'] : null;
35 35
             $storage = $storage['storage'];
36 36
         }
37 37
 
38
-        if (!isset($this->storages[$storage])) {
38
+        if (!isset($this->storages[$storage])){
39 39
             $this->storages[$storage] = $this->resolve($storage);
40 40
         }
41 41
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,12 +30,14 @@
 block discarded – undo
30 30
         $storage = $this->config->getAliases()[$name] ?? $name;
31 31
 
32 32
         $prefix = null;
33
-        if (\is_array($storage)) {
33
+        if (\is_array($storage))
34
+        {
34 35
             $prefix = !empty($storage['prefix']) ? $storage['prefix'] : null;
35 36
             $storage = $storage['storage'];
36 37
         }
37 38
 
38
-        if (!isset($this->storages[$storage])) {
39
+        if (!isset($this->storages[$storage]))
40
+        {
39 41
             $this->storages[$storage] = $this->resolve($storage);
40 42
         }
41 43
 
Please login to merge, or discard this patch.
src/Core/src/Internal/Common/DestructorTrait.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,14 +12,14 @@
 block discarded – undo
12 12
     public function destruct(): void
13 13
     {
14 14
         $class = new \ReflectionClass($this);
15
-        foreach ($class->getProperties() as $property) {
15
+        foreach ($class->getProperties() as $property){
16 16
             $name = $property->getName();
17
-            if (!isset($this->$name)) {
17
+            if (!isset($this->$name)){
18 18
                 continue;
19 19
             }
20 20
             $value = $this->$name;
21 21
             unset($this->$name);
22
-            if (\is_object($value) && \method_exists($value, 'destruct')) {
22
+            if (\is_object($value) && \method_exists($value, 'destruct')){
23 23
                 $value->destruct();
24 24
             }
25 25
         }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,14 +12,17 @@
 block discarded – undo
12 12
     public function destruct(): void
13 13
     {
14 14
         $class = new \ReflectionClass($this);
15
-        foreach ($class->getProperties() as $property) {
15
+        foreach ($class->getProperties() as $property)
16
+        {
16 17
             $name = $property->getName();
17
-            if (!isset($this->$name)) {
18
+            if (!isset($this->$name))
19
+            {
18 20
                 continue;
19 21
             }
20 22
             $value = $this->$name;
21 23
             unset($this->$name);
22
-            if (\is_object($value) && \method_exists($value, 'destruct')) {
24
+            if (\is_object($value) && \method_exists($value, 'destruct'))
25
+            {
23 26
                 $value->destruct();
24 27
             }
25 28
         }
Please login to merge, or discard this patch.
src/Core/src/Internal/Tracer/Trace.php 2 patches
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,7 +27,8 @@  discard block
 block discarded – undo
27 27
     public function __toString(): string
28 28
     {
29 29
         $info = [];
30
-        foreach ($this->info as $key => $item) {
30
+        foreach ($this->info as $key => $item)
31
+        {
31 32
             $info[] = "$key: {$this->stringifyValue($item)}";
32 33
         }
33 34
         return \implode("\n", $info);
@@ -47,14 +48,17 @@  discard block
 block discarded – undo
47 48
 
48 49
     private function renderArray(array $array, int $level = 0): string
49 50
     {
50
-        if ($array === []) {
51
+        if ($array === [])
52
+        {
51 53
             return '[]';
52 54
         }
53
-        if ($level >= self::ARRAY_MAX_LEVEL) {
55
+        if ($level >= self::ARRAY_MAX_LEVEL)
56
+        {
54 57
             return 'array';
55 58
         }
56 59
         $result = [];
57
-        foreach ($array as $key => $value) {
60
+        foreach ($array as $key => $value)
61
+        {
58 62
             $result[] = \sprintf(
59 63
                 '%s: %s',
60 64
                 $key,
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -19,14 +19,14 @@  discard block
 block discarded – undo
19 19
 
20 20
     public function __construct(
21 21
         public array $info = [],
22
-    ) {
22
+    ){
23 23
         $this->alias = $info['alias'] ?? null;
24 24
     }
25 25
 
26 26
     public function __toString(): string
27 27
     {
28 28
         $info = [];
29
-        foreach ($this->info as $key => $item) {
29
+        foreach ($this->info as $key => $item){
30 30
             $info[] = "$key: {$this->stringifyValue($item)}";
31 31
         }
32 32
         return \implode("\n", $info);
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
             \is_scalar($item) => \var_export($item, true),
40 40
             $item instanceof \Closure => $this->renderClosureSignature(new \ReflectionFunction($item)),
41 41
             $item instanceof \ReflectionFunctionAbstract => $this->renderClosureSignature($item),
42
-            $item instanceof \UnitEnum => $item::class . "::$item->name",
43
-            \is_object($item) => $item instanceof \Stringable ? (string) $item : 'instance of ' . $item::class,
42
+            $item instanceof \UnitEnum => $item::class."::$item->name",
43
+            \is_object($item) => $item instanceof \Stringable ? (string)$item : 'instance of '.$item::class,
44 44
             \is_array($item) => $this->renderArray($item),
45 45
             default => \get_debug_type($item),
46 46
         };
@@ -48,14 +48,14 @@  discard block
 block discarded – undo
48 48
 
49 49
     private function renderArray(array $array, int $level = 0): string
50 50
     {
51
-        if ($array === []) {
51
+        if ($array === []){
52 52
             return '[]';
53 53
         }
54
-        if ($level >= self::ARRAY_MAX_LEVEL) {
54
+        if ($level >= self::ARRAY_MAX_LEVEL){
55 55
             return 'array';
56 56
         }
57 57
         $result = [];
58
-        foreach ($array as $key => $value) {
58
+        foreach ($array as $key => $value){
59 59
             $result[] = \sprintf(
60 60
                 '%s: %s',
61 61
                 $key,
@@ -66,6 +66,6 @@  discard block
 block discarded – undo
66 66
         }
67 67
 
68 68
         $pad = \str_repeat('  ', $level);
69
-        return "[\n  $pad" . \implode(",\n  $pad", $result) . "\n$pad]";
69
+        return "[\n  $pad".\implode(",\n  $pad", $result)."\n$pad]";
70 70
     }
71 71
 }
Please login to merge, or discard this patch.
src/Core/src/Attribute/Finalize.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
 {
13 13
     public function __construct(
14 14
         public string $method,
15
-    ) {
15
+    ){
16 16
     }
17 17
 }
Please login to merge, or discard this patch.
src/Core/tests/Scope/Stub/DatetimeCarrier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,6 +10,6 @@
 block discarded – undo
10 10
 {
11 11
     public function __construct(
12 12
         public DateTimeInterface $logger,
13
-    ) {
13
+    ){
14 14
     }
15 15
 }
Please login to merge, or discard this patch.
src/Core/tests/Scope/Stub/AttrScopeFooFinalize.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->logger = $logger;
22 22
         $this->finalized = true;
23
-        if ($this->throwException) {
23
+        if ($this->throwException){
24 24
             throw new RuntimeException('Test exception from finalize method.');
25 25
         }
26 26
     }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,8 @@
 block discarded – undo
20 20
     {
21 21
         $this->logger = $logger;
22 22
         $this->finalized = true;
23
-        if ($this->throwException) {
23
+        if ($this->throwException)
24
+        {
24 25
             throw new RuntimeException('Test exception from finalize method.');
25 26
         }
26 27
     }
Please login to merge, or discard this patch.
src/Core/tests/Scope/Stub/Factory.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
 {
11 11
     public function __construct(
12 12
         protected ContainerInterface $container,
13
-    ) {
13
+    ){
14 14
     }
15 15
 
16 16
     public function make(string $key): mixed
Please login to merge, or discard this patch.
src/Core/tests/Scope/Stub/LoggerCarrier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,6 +8,6 @@
 block discarded – undo
8 8
 {
9 9
     public function __construct(
10 10
         public LoggerInterface $logger,
11
-    ) {
11
+    ){
12 12
     }
13 13
 }
Please login to merge, or discard this patch.