Passed
Pull Request — master (#1136)
by Aleksei
14:14 queued 18s
created
src/Events/tests/Fixtures/Event/FooEvent.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 readonly string $some
11
-    ) {
11
+    ){
12 12
     }
13 13
 }
Please login to merge, or discard this patch.
src/Events/tests/Fixtures/Listener/ClassAttributeUnionType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 #[Listener]
12 12
 final class ClassAttributeUnionType
13 13
 {
14
-    public function __invoke(FooEvent|BarEvent $event): void
14
+    public function __invoke(FooEvent | BarEvent $event): void
15 15
     {
16 16
     }
17 17
 }
Please login to merge, or discard this patch.
src/Events/tests/Fixtures/Listener/ClassDoubleTheSameAttribute.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
 #[Listener]
13 13
 final class ClassDoubleTheSameAttribute
14 14
 {
15
-    public function __invoke(FooEvent|BarEvent $event): void
15
+    public function __invoke(FooEvent | BarEvent $event): void
16 16
     {
17 17
     }
18 18
 }
Please login to merge, or discard this patch.
src/Events/src/Attribute/Listener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,6 @@
 block discarded – undo
17 17
         public readonly ?string $event = null,
18 18
         public ?string $method = null,
19 19
         public readonly int $priority = 0
20
-    ) {
20
+    ){
21 21
     }
22 22
 }
Please login to merge, or discard this patch.
src/Events/src/Config/EventListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
         public string $listener,
15 15
         ?string $method = null,
16 16
         public int $priority = 0
17
-    ) {
17
+    ){
18 18
         $this->method = !empty($method) ? $method : self::DEFAULT_METHOD;
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
src/Events/src/Config/EventsConfig.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     public function getListeners(): array
34 34
     {
35 35
         $listeners = [];
36
-        foreach ($this->config['listeners'] as $event => $eventListeners) {
36
+        foreach ($this->config['listeners'] as $event => $eventListeners){
37 37
             $listeners[$event] = \array_map(
38 38
                 self::normalizeListener(...),
39 39
                 $eventListeners
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * @param TListener $listener
56 56
      */
57
-    private static function normalizeListener(string|EventListener $listener): EventListener
57
+    private static function normalizeListener(string | EventListener $listener): EventListener
58 58
     {
59 59
         return \is_string($listener) ? new EventListener($listener) : $listener;
60 60
     }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,8 @@
 block discarded – undo
33 33
     public function getListeners(): array
34 34
     {
35 35
         $listeners = [];
36
-        foreach ($this->config['listeners'] as $event => $eventListeners) {
36
+        foreach ($this->config['listeners'] as $event => $eventListeners)
37
+        {
37 38
             $listeners[$event] = \array_map(
38 39
                 self::normalizeListener(...),
39 40
                 $eventListeners
Please login to merge, or discard this patch.
src/Events/src/Processor/ConfigProcessor.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,16 +14,16 @@
 block discarded – undo
14 14
         private readonly EventsConfig $config,
15 15
         private readonly ListenerFactoryInterface $factory,
16 16
         private readonly ?ListenerRegistryInterface $registry = null,
17
-    ) {
17
+    ){
18 18
     }
19 19
 
20 20
     public function process(): void
21 21
     {
22
-        if ($this->registry === null) {
22
+        if ($this->registry === null){
23 23
             return;
24 24
         }
25
-        foreach ($this->config->getListeners() as $event => $eventListeners) {
26
-            foreach ($eventListeners as $listener) {
25
+        foreach ($this->config->getListeners() as $event => $eventListeners){
26
+            foreach ($eventListeners as $listener){
27 27
                 $method = $this->getMethod($listener->listener, $listener->method);
28 28
 
29 29
                 $this->registry->addListener(
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,11 +19,14 @@
 block discarded – undo
19 19
 
20 20
     public function process(): void
21 21
     {
22
-        if ($this->registry === null) {
22
+        if ($this->registry === null)
23
+        {
23 24
             return;
24 25
         }
25
-        foreach ($this->config->getListeners() as $event => $eventListeners) {
26
-            foreach ($eventListeners as $listener) {
26
+        foreach ($this->config->getListeners() as $event => $eventListeners)
27
+        {
28
+            foreach ($eventListeners as $listener)
29
+            {
27 30
                 $method = $this->getMethod($listener->listener, $listener->method);
28 31
 
29 32
                 $this->registry->addListener(
Please login to merge, or discard this patch.
src/Events/src/Processor/AbstractProcessor.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      */
17 17
     protected function getEventFromTypeDeclaration(\ReflectionMethod $method): array
18 18
     {
19
-        if ($method->getNumberOfParameters() > 1) {
19
+        if ($method->getNumberOfParameters() > 1){
20 20
             throw $this->badClassMethod($method->class, $method->getName());
21 21
         }
22 22
         $type = $method->getParameters()[0]->getType();
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
         };
30 30
 
31 31
         $result = [];
32
-        foreach ($eventTypes as $type) {
33
-            if ($type->isBuiltin()) {
32
+        foreach ($eventTypes as $type){
33
+            if ($type->isBuiltin()){
34 34
                 continue;
35 35
             }
36 36
             $result[] = $type->getName();
@@ -44,9 +44,9 @@  discard block
 block discarded – undo
44 44
      */
45 45
     protected function getMethod(string $class, string $name): \ReflectionMethod
46 46
     {
47
-        try {
47
+        try{
48 48
             return new \ReflectionMethod($class, $name);
49
-        } catch (\ReflectionException) {
49
+        }catch (\ReflectionException){
50 50
             throw $this->badClassMethod($class, $name);
51 51
         }
52 52
     }
Please login to merge, or discard this patch.
Braces   +11 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,7 +16,8 @@  discard block
 block discarded – undo
16 16
      */
17 17
     protected function getEventFromTypeDeclaration(\ReflectionMethod $method): array
18 18
     {
19
-        if ($method->getNumberOfParameters() > 1) {
19
+        if ($method->getNumberOfParameters() > 1)
20
+        {
20 21
             throw $this->badClassMethod($method->class, $method->getName());
21 22
         }
22 23
         $type = $method->getParameters()[0]->getType();
@@ -29,8 +30,10 @@  discard block
 block discarded – undo
29 30
         };
30 31
 
31 32
         $result = [];
32
-        foreach ($eventTypes as $type) {
33
-            if ($type->isBuiltin()) {
33
+        foreach ($eventTypes as $type)
34
+        {
35
+            if ($type->isBuiltin())
36
+            {
34 37
                 continue;
35 38
             }
36 39
             $result[] = $type->getName();
@@ -44,9 +47,12 @@  discard block
 block discarded – undo
44 47
      */
45 48
     protected function getMethod(string $class, string $name): \ReflectionMethod
46 49
     {
47
-        try {
50
+        try
51
+        {
48 52
             return new \ReflectionMethod($class, $name);
49
-        } catch (\ReflectionException) {
53
+        }
54
+        catch (\ReflectionException)
55
+        {
50 56
             throw $this->badClassMethod($class, $name);
51 57
         }
52 58
     }
Please login to merge, or discard this patch.
src/Events/src/ListenerProcessorRegistry.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@
 block discarded – undo
20 20
 
21 21
     public function process(): void
22 22
     {
23
-        if ($this->processed) {
23
+        if ($this->processed){
24 24
             return;
25 25
         }
26 26
 
27
-        foreach ($this->processors as $processor) {
27
+        foreach ($this->processors as $processor){
28 28
             $processor->process();
29 29
         }
30 30
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,11 +20,13 @@
 block discarded – undo
20 20
 
21 21
     public function process(): void
22 22
     {
23
-        if ($this->processed) {
23
+        if ($this->processed)
24
+        {
24 25
             return;
25 26
         }
26 27
 
27
-        foreach ($this->processors as $processor) {
28
+        foreach ($this->processors as $processor)
29
+        {
28 30
             $processor->process();
29 31
         }
30 32
 
Please login to merge, or discard this patch.