Passed
Push — develop ( 562414...03bc90 )
by nguereza
03:20 queued 12s
created
src/Auth/Entity/Token.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@
 block discarded – undo
54 54
  * @class Token
55 55
  * @package Platine\Framework\Auth\Entity
56 56
  */
57
-class Token extends Entity
58
-{
57
+class Token extends Entity {
59 58
 
60 59
     /**
61 60
      * {@inheritdoc}
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
@@ -55,15 +55,13 @@
 block discarded – undo
55 55
  * @class TokenRepository
56 56
  * @package Platine\Framework\Auth\Repository
57 57
  */
58
-class TokenRepository extends Repository
59
-{
58
+class TokenRepository extends Repository {
60 59
 
61 60
     /**
62 61
      * Create new instance
63 62
      * @param EntityManager $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.