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 ( 422c09...abb7ef )
by sebastian
01:34
created
src/Facade/Utils/RequestFactory.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -50,21 +50,21 @@  discard block
 block discarded – undo
50 50
                 ];
51 51
             case HttpMethods::Put:
52 52
                $etag = $params[0];
53
-               if(!empty($etag)){
54
-                   return [
55
-                       Headers::ContentType  => ContentTypes::Calendar,
56
-                       Headers::IfMatch      => $etag
57
-                   ];
58
-               }
53
+                if(!empty($etag)){
54
+                    return [
55
+                        Headers::ContentType  => ContentTypes::Calendar,
56
+                        Headers::IfMatch      => $etag
57
+                    ];
58
+                }
59 59
         }
60 60
         return [];
61 61
     }
62 62
     /**
63
-    * @param string $url
64
-    * @param string $body
65
-    * @param int $depth
66
-    * @return Request
67
-    */
63
+     * @param string $url
64
+     * @param string $body
65
+     * @param int $depth
66
+     * @return Request
67
+     */
68 68
     public static function createPropFindRequest($url , $body, $depth = 1){
69 69
         return new Request
70 70
         (
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      * @param string $etag
154 154
      * @return Request
155 155
      */
156
-     public static function createPutRequest($url, $body, $etag = null){
156
+        public static function createPutRequest($url, $body, $etag = null){
157 157
         return new Request
158 158
         (
159 159
             HttpMethods::Put,
Please login to merge, or discard this patch.
Spacing   +19 added lines, -26 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
      * @param array $params
27 27
      * @return array
28 28
      */
29
-    private static function createHeadersFor($http_method, array $params = []){
30
-        switch ($http_method){
29
+    private static function createHeadersFor($http_method, array $params = []) {
30
+        switch ($http_method) {
31 31
             case HttpMethods::PropFind:
32 32
             case HttpMethods::Options:
33 33
             case HttpMethods::Report:
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
                 ];
39 39
             case HttpMethods::Delete:
40 40
                 $etag = $params[0];
41
-                if(!empty($etag)) {
41
+                if (!empty($etag)) {
42 42
                     return [
43 43
                         Headers::IfMatch => $etag,
44 44
                     ];
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
                 ];
51 51
             case HttpMethods::Put:
52 52
                $etag = $params[0];
53
-               if(!empty($etag)){
53
+               if (!empty($etag)) {
54 54
                    return [
55 55
                        Headers::ContentType  => ContentTypes::Calendar,
56 56
                        Headers::IfMatch      => $etag
@@ -65,11 +65,10 @@  discard block
 block discarded – undo
65 65
     * @param int $depth
66 66
     * @return Request
67 67
     */
68
-    public static function createPropFindRequest($url , $body, $depth = 1){
69
-        return new Request
70
-        (
68
+    public static function createPropFindRequest($url, $body, $depth = 1) {
69
+        return new Request(
71 70
             HttpMethods::PropFind,
72
-            $url ,
71
+            $url,
73 72
             self::createHeadersFor(HttpMethods::PropFind, [$depth]),
74 73
             $body
75 74
         );
@@ -80,9 +79,8 @@  discard block
 block discarded – undo
80 79
      * @param string $body
81 80
      * @return Request
82 81
      */
83
-    public static function createMakeCalendarRequest($url , $body){
84
-        return new Request
85
-        (
82
+    public static function createMakeCalendarRequest($url, $body) {
83
+        return new Request(
86 84
             HttpMethods::MakeCalendar,
87 85
             $url,
88 86
             self::createHeadersFor(HttpMethods::MakeCalendar),
@@ -95,9 +93,8 @@  discard block
 block discarded – undo
95 93
      * @param int $depth
96 94
      * @return Request
97 95
      */
98
-    public static function createOptionsRequest($url, $depth = 1){
99
-        return new Request
100
-        (
96
+    public static function createOptionsRequest($url, $depth = 1) {
97
+        return new Request(
101 98
             HttpMethods::Options,
102 99
             $url,
103 100
             self::createHeadersFor(HttpMethods::Options, [$depth])
@@ -110,9 +107,8 @@  discard block
 block discarded – undo
110 107
      * @param int $depth
111 108
      * @return Request
112 109
      */
113
-    public static function createReportRequest($url , $body, $depth = 1){
114
-        return new Request
115
-        (
110
+    public static function createReportRequest($url, $body, $depth = 1) {
111
+        return new Request(
116 112
             HttpMethods::Report,
117 113
             $url,
118 114
             self::createHeadersFor(HttpMethods::Report, [$depth]),
@@ -125,9 +121,8 @@  discard block
 block discarded – undo
125 121
      * @param string $etag
126 122
      * @return Request
127 123
      */
128
-    public static function createDeleteRequest($url , $etag){
129
-        return new Request
130
-        (
124
+    public static function createDeleteRequest($url, $etag) {
125
+        return new Request(
131 126
             HttpMethods::Delete,
132 127
             $url,
133 128
             self::createHeadersFor(HttpMethods::Delete, [$etag])
@@ -138,9 +133,8 @@  discard block
 block discarded – undo
138 133
      * @param string $url
139 134
      * @return Request
140 135
      */
141
-    public static function createGetRequest($url){
142
-        return new Request
143
-        (
136
+    public static function createGetRequest($url) {
137
+        return new Request(
144 138
             HttpMethods::Get,
145 139
             $url,
146 140
             self::createHeadersFor(HttpMethods::Get)
@@ -153,9 +147,8 @@  discard block
 block discarded – undo
153 147
      * @param string $etag
154 148
      * @return Request
155 149
      */
156
-     public static function createPutRequest($url, $body, $etag = null){
157
-        return new Request
158
-        (
150
+     public static function createPutRequest($url, $body, $etag = null) {
151
+        return new Request(
159 152
             HttpMethods::Put,
160 153
             $url,
161 154
             self::createHeadersFor(HttpMethods::Put, [$etag]),
Please login to merge, or discard this patch.