Passed
Pull Request — master (#753)
by Alexandr
61:14
created
src/Controller/User/AttachUserGroupController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 /**
4 4
  * /src/Controller/User/AttachUserGroupController.php
5 5
  *
Please login to merge, or discard this patch.
src/Controller/User/DeleteUserController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 /**
4 4
  * /src/Controller/User/DeleteUserController.php
5 5
  *
Please login to merge, or discard this patch.
src/Controller/User/UserRolesController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 /**
4 4
  * /src/Controller/User/UserRolesController.php
5 5
  *
Please login to merge, or discard this patch.
src/Controller/User/DetachUserGroupController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 /**
4 4
  * /src/Controller/User/DetachUserGroupController.php
5 5
  *
Please login to merge, or discard this patch.
src/Controller/UserGroup/AttachUserController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 /**
4 4
  * /src/Controller/UserGroup/AttachUserController.php
5 5
  *
Please login to merge, or discard this patch.
src/Controller/UserGroup/UsersController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 /**
4 4
  * /src/Controller/UserGroup/UsersController.php
5 5
  *
Please login to merge, or discard this patch.
src/Controller/UserGroup/DetachUserController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 /**
4 4
  * /src/Controller/UserGroup/DetachUserController.php
5 5
  *
Please login to merge, or discard this patch.
src/Controller/UserGroup/UserGroupController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 /**
4 4
  * /src/Controller/UserGroup/UserGroupController.php
5 5
  *
Please login to merge, or discard this patch.
src/Doctrine/DBAL/Types/EnumType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 /**
4 4
  * /src/Doctrine/DBAL/Types/EnumType.php
5 5
  *
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     public function getSQLDeclaration(array $column, AbstractPlatform $platform): string
37 37
     {
38
-        $iterator = static fn (string $value): string => "'" . $value . "'";
38
+        $iterator = static fn(string $value): string => "'" . $value . "'";
39 39
 
40 40
         return 'ENUM(' . implode(', ', array_map($iterator, self::getValues())) . ')';
41 41
     }
Please login to merge, or discard this patch.