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.
Passed
Push — master ( 3940fc...763298 )
by sebastian
01:31 queued 23s
created
src/Facade/Utils/RequestFactory.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@
 block discarded – undo
21 21
 final class RequestFactory
22 22
 {
23 23
     /**
24
-    * @param string $url
25
-    * @param string $body
26
-    * @param int $depth
27
-    * @return Request
28
-    */
24
+     * @param string $url
25
+     * @param string $body
26
+     * @param int $depth
27
+     * @return Request
28
+     */
29 29
     static function createPropFindRequest($url , $body, $depth = 1){
30 30
         return new Request('PROPFIND',  $url ,  [
31 31
             'Depth'         => $depth,
Please login to merge, or discard this patch.
src/Facade/Requests/EventCreateRequest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 
60 60
         if($time_zone->getName() == 'UTC'){
61 61
             $event->setUseUtc(true)
62
-                  ->setUseTimezone(false);
62
+                    ->setUseTimezone(false);
63 63
         }
64 64
         else{
65 65
             $event->setUseUtc(false)
Please login to merge, or discard this patch.
src/Facade/Requests/UserPrincipalRequest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
     public function __construct(){
23 23
         $this->properties = [
24
-          '{DAV:}current-user-principal'
24
+            '{DAV:}current-user-principal'
25 25
         ];
26 26
     }
27 27
 }
28 28
\ No newline at end of file
Please login to merge, or discard this patch.
src/Facade/Requests/CalendarMultiGetRequest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function getContent()
39 39
     {
40
-       $service = new Service();
40
+        $service = new Service();
41 41
 
42 42
         $service->namespaceMap = [
43 43
             'DAV:'                          => 'D',
Please login to merge, or discard this patch.
src/Facade/CalDavClient.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
     /**
47 47
      * As indicated in Section 3.10 of [RFC2445], the URL of calendar object
48 48
      * resources containing (an arbitrary set of) calendaring and scheduling
49
-    * information may be suffixed by ".ics", and the URL of calendar object
50
-    * resources containing free or busy time information may be suffixed by
49
+     * information may be suffixed by ".ics", and the URL of calendar object
50
+     * resources containing free or busy time information may be suffixed by
51 51
     ".ifb".
52 52
      */
53 53
 
Please login to merge, or discard this patch.