Passed
Push — develop ( 629c3a...e7c784 )
by nguereza
03:51
created
src/Service/Provider/AuditServiceProvider.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
  * @class AuditServiceProvider
56 56
  * @package Platine\Framework\Service\Provider
57 57
  */
58
-class AuditServiceProvider extends ServiceProvider
59
-{
58
+class AuditServiceProvider extends ServiceProvider {
60 59
     /**
61 60
      * {@inheritdoc}
62 61
      */
Please login to merge, or discard this patch.
src/Audit/Auditor.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@  discard block
 block discarded – undo
55 55
  * @class Auditor
56 56
  * @package Platine\Framework\Audit
57 57
  */
58
-class Auditor
59
-{
58
+class Auditor {
60 59
     /**
61 60
      * The audit repository
62 61
      * @var AuditRepository
@@ -67,8 +66,7 @@  discard block
 block discarded – undo
67 66
      * Create new instance
68 67
      * @param AuditRepository $repository
69 68
      */
70
-    public function __construct(AuditRepository $repository)
71
-    {
69
+    public function __construct(AuditRepository $repository) {
72 70
         $this->repository = $repository;
73 71
     }
74 72
 
Please login to merge, or discard this patch.
src/Audit/Model/Audit.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
  * @class Audit
56 56
  * @package Platine\Framework\Audit\Model
57 57
  */
58
-class Audit extends Entity
59
-{
58
+class Audit extends Entity {
60 59
     /**
61 60
      * {@inheritdoc}
62 61
      */
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
@@ -54,14 +54,12 @@
 block discarded – undo
54 54
  * @class AuditRepository
55 55
  * @package Platine\Framework\Audit\Model
56 56
  */
57
-class AuditRepository extends Repository
58
-{
57
+class AuditRepository extends Repository {
59 58
     /**
60 59
      * Create new instance
61 60
      * @param EntityManager $manager
62 61
      */
63
-    public function __construct(EntityManager $manager)
64
-    {
62
+    public function __construct(EntityManager $manager) {
65 63
         parent::__construct($manager, Audit::class);
66 64
     }
67 65
 }
Please login to merge, or discard this patch.