Passed
Push — develop ( 0eb5cb...a52f7d )
by nguereza
03:36
created
src/Security/Policy/FeaturePermissionPolicy.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
         // ensure indexes are numerically
112 112
         $urls = array_values($values);
113 113
 
114
-        return array_map(function (string $url) {
114
+        return array_map(function(string $url) {
115 115
             return sprintf('"%s"', $url);
116 116
         }, $urls);
117 117
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
52 52
  * @class FeaturePermissionPolicy
53 53
  * @package Platine\Framework\Security\Policy
54 54
  */
55
-class FeaturePermissionPolicy extends AbstractPolicy
56
-{
55
+class FeaturePermissionPolicy extends AbstractPolicy {
57 56
     /**
58 57
      * {@inheritdoc}
59 58
      */
Please login to merge, or discard this patch.
src/Auth/Repository/TokenRepository.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,14 +56,12 @@
 block discarded – undo
56 56
  * @package Platine\Framework\Auth\Repository
57 57
  * @extends Repository<Token>
58 58
  */
59
-class TokenRepository extends Repository
60
-{
59
+class TokenRepository extends Repository {
61 60
     /**
62 61
      * Create new instance
63 62
      * @param EntityManager<Token> $manager
64 63
      */
65
-    public function __construct(EntityManager $manager)
66
-    {
64
+    public function __construct(EntityManager $manager) {
67 65
         parent::__construct($manager, Token::class);
68 66
     }
69 67
 }
Please login to merge, or discard this patch.
src/Auth/Repository/RoleRepository.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,14 +56,12 @@
 block discarded – undo
56 56
  * @package Platine\Framework\Auth\Repository
57 57
  * @extends Repository<Role>
58 58
  */
59
-class RoleRepository extends Repository
60
-{
59
+class RoleRepository extends Repository {
61 60
     /**
62 61
      * Create new instance
63 62
      * @param EntityManager<Role> $manager
64 63
      */
65
-    public function __construct(EntityManager $manager)
66
-    {
64
+    public function __construct(EntityManager $manager) {
67 65
         parent::__construct($manager, Role::class);
68 66
     }
69 67
 }
Please login to merge, or discard this patch.
src/Auth/Repository/UserRepository.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,14 +56,12 @@
 block discarded – undo
56 56
  * @package Platine\Framework\Auth\Repository
57 57
  * @extends Repository<User>
58 58
  */
59
-class UserRepository extends Repository
60
-{
59
+class UserRepository extends Repository {
61 60
     /**
62 61
      * Create new instance
63 62
      * @param EntityManager<User> $manager
64 63
      */
65
-    public function __construct(EntityManager $manager)
66
-    {
64
+    public function __construct(EntityManager $manager) {
67 65
         parent::__construct($manager, User::class);
68 66
     }
69 67
 }
Please login to merge, or discard this patch.
src/Auth/Repository/PermissionRepository.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,14 +56,12 @@
 block discarded – undo
56 56
  * @package Platine\Framework\Auth\Repository
57 57
  * @extends Repository<Permission>
58 58
  */
59
-class PermissionRepository extends Repository
60
-{
59
+class PermissionRepository extends Repository {
61 60
     /**
62 61
      * Create new instance
63 62
      * @param EntityManager<Permission> $manager
64 63
      */
65
-    public function __construct(EntityManager $manager)
66
-    {
64
+    public function __construct(EntityManager $manager) {
67 65
         parent::__construct($manager, Permission::class);
68 66
     }
69 67
 }
Please login to merge, or discard this patch.
src/Auth/Entity/Role.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * @package Platine\Framework\Auth\Entity
56 56
  * @extends Entity<Role>
57 57
  */
58
-class Role extends Entity
59
-{
58
+class Role extends Entity {
60 59
     /**
61 60
      *
62 61
      * @param EntityMapperInterface<Role> $mapper
Please login to merge, or discard this patch.
src/Auth/Entity/Permission.php 3 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * @package Platine\Framework\Auth\Entity
56 56
  * @extends Entity<Permission>
57 57
  */
58
-class Permission extends Entity
59
-{
58
+class Permission extends Entity {
60 59
     /**
61 60
      *
62 61
      * @param EntityMapperInterface<Permission> $mapper
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
 
80 80
 
81 81
         $mapper->filter('parent', function (Query $q, $value) {
82
-             $q->where('parent_id')->is($value);
82
+                $q->where('parent_id')->is($value);
83 83
         });
84 84
     }
85 85
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
         ]));
79 79
 
80 80
 
81
-        $mapper->filter('parent', function (Query $q, $value) {
81
+        $mapper->filter('parent', function(Query $q, $value) {
82 82
              $q->where('parent_id')->is($value);
83 83
         });
84 84
     }
Please login to merge, or discard this patch.
src/Migration/MigrationRepository.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,14 +55,12 @@
 block discarded – undo
55 55
  * @package Platine\Framework\Migration
56 56
  * @extends Repository<MigrationEntity>
57 57
  */
58
-class MigrationRepository extends Repository
59
-{
58
+class MigrationRepository extends Repository {
60 59
     /**
61 60
      * Create new instance
62 61
      * @param EntityManager<MigrationEntity> $manager
63 62
      */
64
-    public function __construct(EntityManager $manager)
65
-    {
63
+    public function __construct(EntityManager $manager) {
66 64
         parent::__construct($manager, MigrationEntity::class);
67 65
     }
68 66
 }
Please login to merge, or discard this patch.
src/Migration/MigrationEntity.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@
 block discarded – undo
56 56
  * @package Platine\Framework\Migration
57 57
  * @extends Entity<MigrationEntity>
58 58
  */
59
-class MigrationEntity extends Entity
60
-{
59
+class MigrationEntity extends Entity {
61 60
     /**
62 61
      *
63 62
      * @param EntityMapperInterface<MigrationEntity> $mapper
Please login to merge, or discard this patch.