Passed
Push — develop ( c77ba7...d3c53a )
by nguereza
04:05
created
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.
src/Audit/Model/Audit.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
  * @package Platine\Framework\Audit\Model
58 58
  * @extends Entity<Audit>
59 59
  */
60
-class Audit extends Entity
61
-{
60
+class Audit extends Entity {
62 61
     /**
63 62
      *
64 63
      * @param EntityMapperInterface<Audit> $mapper
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -73,24 +73,24 @@
 block discarded – undo
73 73
             'date' => 'date',
74 74
         ]);
75 75
 
76
-        $mapper->filter('start_date', function (Query $q, $value) {
76
+        $mapper->filter('start_date', function(Query $q, $value) {
77 77
             $q->where('date')->gte($value);
78 78
         });
79 79
 
80
-        $mapper->filter('end_date', function (Query $q, $value) {
80
+        $mapper->filter('end_date', function(Query $q, $value) {
81 81
             $q->where('date')->lte($value);
82 82
         });
83 83
 
84
-        $mapper->filter('event', function (Query $q, $value) {
84
+        $mapper->filter('event', function(Query $q, $value) {
85 85
             $q->where('event')->is($value);
86 86
         });
87 87
 
88
-        $mapper->filter('user', function (Query $q, $value) {
88
+        $mapper->filter('user', function(Query $q, $value) {
89 89
             $q->where('user_id')->is($value);
90 90
         });
91 91
 
92
-        $mapper->filter('search', function (Query $p, $value) {
93
-            $p->where(function (WhereStatement $where) use ($value) {
92
+        $mapper->filter('search', function(Query $p, $value) {
93
+            $p->where(function(WhereStatement $where) use ($value) {
94 94
                 $where->where('ip')->like(sprintf('%%%s%%', $value));
95 95
                 $where->orWhere('detail')->like(sprintf('%%%s%%', $value));
96 96
                 $where->orWhere('url')->like(sprintf('%%%s%%', $value));
Please login to merge, or discard this patch.
src/Audit/Model/AuditRepository.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\Audit\Model
56 56
  * @extends Repository<Audit>
57 57
  */
58
-class AuditRepository extends Repository
59
-{
58
+class AuditRepository extends Repository {
60 59
     /**
61 60
      * Create new instance
62 61
      * @param EntityManager<Audit> $manager
63 62
      */
64
-    public function __construct(EntityManager $manager)
65
-    {
63
+    public function __construct(EntityManager $manager) {
66 64
         parent::__construct($manager, Audit::class);
67 65
     }
68 66
 }
Please login to merge, or discard this patch.
src/OAuth2/Repository/ClientRepository.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,14 +58,12 @@
 block discarded – undo
58 58
  * @package Platine\Framework\OAuth2\Repository
59 59
  * @extends Repository<OauthClient>
60 60
  */
61
-class ClientRepository extends Repository implements ClientRepositoryInterface
62
-{
61
+class ClientRepository extends Repository implements ClientRepositoryInterface {
63 62
     /**
64 63
      * Create new instance
65 64
      * @param EntityManager<OauthClient> $manager
66 65
      */
67
-    public function __construct(EntityManager $manager)
68
-    {
66
+    public function __construct(EntityManager $manager) {
69 67
         parent::__construct($manager, OauthClient::class);
70 68
     }
71 69
 
Please login to merge, or discard this patch.
src/OAuth2/Entity/OauthAuthorizationCode.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,12 +21,12 @@
 block discarded – undo
21 21
      */
22 22
     public static function mapEntity(EntityMapperInterface $mapper): void
23 23
     {
24
-         $mapper->primaryKey('authorization_code');
25
-         $mapper->useTimestamp();
26
-         $mapper->casts([
24
+            $mapper->primaryKey('authorization_code');
25
+            $mapper->useTimestamp();
26
+            $mapper->casts([
27 27
             'expires' => 'date',
28 28
             'created_at' => 'date',
29 29
             'updated_at' => '?date',
30
-         ]);
30
+            ]);
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,7 @@
 block discarded – undo
12 12
 * @package Platine\Framework\OAuth2\Entity
13 13
 * @extends Entity<OauthAuthorizationCode>
14 14
 */
15
-class OauthAuthorizationCode extends Entity
16
-{
15
+class OauthAuthorizationCode extends Entity {
17 16
     /**
18 17
      *
19 18
      * @param EntityMapperInterface<OauthAuthorizationCode> $mapper
Please login to merge, or discard this patch.
src/OAuth2/Entity/OauthClient.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
      */
22 22
     public static function mapEntity(EntityMapperInterface $mapper): void
23 23
     {
24
-         $mapper->useTimestamp();
25
-         $mapper->casts([
24
+            $mapper->useTimestamp();
25
+            $mapper->casts([
26 26
             'created_at' => 'date',
27 27
             'updated_at' => '?date',
28
-         ]);
28
+            ]);
29 29
     }
30 30
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,7 @@
 block discarded – undo
12 12
 * @package Platine\Framework\OAuth2\Entity
13 13
 * @extends Entity<OauthClient>
14 14
 */
15
-class OauthClient extends Entity
16
-{
15
+class OauthClient extends Entity {
17 16
     /**
18 17
      *
19 18
      * @param EntityMapperInterface<OauthClient> $mapper
Please login to merge, or discard this patch.