GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 85c09f...3053fe )
by Samuel
02:57
created
src/Role/RoleInterface.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@
 block discarded – undo
19 19
  */
20 20
 interface RoleInterface
21 21
 {
22
-	/**
23
-	 * Returns the descriptionof a role object
24
-	 *
25
-	 * @return string
26
-	 */
27
-	public function getDescription() : string;
22
+    /**
23
+     * Returns the descriptionof a role object
24
+     *
25
+     * @return string
26
+     */
27
+    public function getDescription() : string;
28 28
 }
Please login to merge, or discard this patch.
src/Role/DefaultRole.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare (strict_types=1);
1
+<?php declare (strict_types = 1);
2 2
 
3 3
 /**
4 4
  * This file is part of the Samshal\Acl library
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     /**
35 35
      * {@inheritdoc}
36 36
      */
37
-    public function __construct(string $roleName, string $roleDescription="")
37
+    public function __construct(string $roleName, string $roleDescription = "")
38 38
     {
39 39
         $this->roleName = $roleName;
40 40
         $this->roleDescription = $roleDescription;
Please login to merge, or discard this patch.