Passed
Pull Request — master (#1190)
by Aleksei
20:19 queued 07:41
created
src/Boot/tests/Fixtures/BootloaderR.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
 class BootloaderR extends Bootloader
11 11
 {
12 12
     #[BindMethod]
13
-    private function bind(): SampleClass|SampleClassInterface
13
+    private function bind(): SampleClass | SampleClassInterface
14 14
     {
15 15
         return new SampleClass();
16 16
     }
Please login to merge, or discard this patch.
src/Boot/tests/Fixtures/SampleInjectableClass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,5 +8,5 @@
 block discarded – undo
8 8
 {
9 9
     public function __construct(
10 10
         public string $name,
11
-    ) {}
11
+    ){}
12 12
 }
Please login to merge, or discard this patch.
src/Boot/tests/Fixtures/SampleClassInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,4 +4,4 @@
 block discarded – undo
4 4
 
5 5
 namespace Spiral\Tests\Boot\Fixtures;
6 6
 
7
-interface SampleClassInterface {}
7
+interface SampleClassInterface{}
Please login to merge, or discard this patch.
src/Boot/tests/Fixtures/BootloaderM.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
 class BootloaderM extends Bootloader
11 11
 {
12 12
     #[SingletonMethod]
13
-    private function bind(): int|object
13
+    private function bind(): int | object
14 14
     {
15 15
         return new SampleClass2();
16 16
     }
Please login to merge, or discard this patch.
src/Boot/tests/Fixtures/SampleClass2.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,4 +4,4 @@
 block discarded – undo
4 4
 
5 5
 namespace Spiral\Tests\Boot\Fixtures;
6 6
 
7
-class SampleClass2 {}
7
+class SampleClass2{}
Please login to merge, or discard this patch.
src/Boot/tests/Fixtures/BootloaderL.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
 class BootloaderL extends Bootloader
11 11
 {
12 12
     #[BindMethod]
13
-    private function bind(): int|string|object
13
+    private function bind(): int | string | object
14 14
     {
15 15
         return new SampleClass2();
16 16
     }
Please login to merge, or discard this patch.
src/Boot/tests/Fixtures/BootloaderS.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     )]
16 16
     #[BindAlias('sample2')]
17 17
     #[BindAlias('sample3')]
18
-    private function bind(): SampleClass|SampleClassInterface
18
+    private function bind(): SampleClass | SampleClassInterface
19 19
     {
20 20
         return new SampleClass();
21 21
     }
Please login to merge, or discard this patch.
src/Boot/tests/Fixtures/SampleClass3.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,4 +4,4 @@
 block discarded – undo
4 4
 
5 5
 namespace Spiral\Tests\Boot\Fixtures;
6 6
 
7
-class SampleClass3 {}
7
+class SampleClass3{}
Please login to merge, or discard this patch.
src/Boot/tests/Fixtures/BootloaderQ.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
 class BootloaderQ extends Bootloader
11 11
 {
12 12
     #[SingletonMethod]
13
-    private function bind(): SampleClass|SampleClassInterface
13
+    private function bind(): SampleClass | SampleClassInterface
14 14
     {
15 15
         return new SampleClass();
16 16
     }
Please login to merge, or discard this patch.