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.
Test Failed
Branch master (0e2b0c)
by milkmeowo
05:00
created
lib/AliyunMNS/Responses/ListTopicResponse.php 1 patch
Braces   +6 added lines, -12 removed lines patch added patch discarded remove patch
@@ -67,12 +67,10 @@  discard block
 block discarded – undo
67 67
                     }
68 68
                 }
69 69
             }
70
-        }
71
-        catch (\Exception $e)
70
+        } catch (\Exception $e)
72 71
         {
73 72
             throw new MnsException($statusCode, $e->getMessage(), $e);
74
-        }
75
-        catch (\Throwable $t)
73
+        } catch (\Throwable $t)
76 74
         {
77 75
             throw new MnsException($statusCode, $t->getMessage());
78 76
         }
@@ -98,23 +96,19 @@  discard block
 block discarded – undo
98 96
             $result = XMLParser::parseNormalError($xmlReader);
99 97
 
100 98
             throw new MnsException($statusCode, $result['Message'], $exception, $result['Code'], $result['RequestId'], $result['HostId']);
101
-        }
102
-        catch (\Exception $e)
99
+        } catch (\Exception $e)
103 100
         {
104 101
             if ($exception != NULL)
105 102
             {
106 103
                 throw $exception;
107
-            }
108
-            elseif ($e instanceof MnsException)
104
+            } elseif ($e instanceof MnsException)
109 105
             {
110 106
                 throw $e;
111
-            }
112
-            else
107
+            } else
113 108
             {
114 109
                 throw new MnsException($statusCode, $e->getMessage());
115 110
             }
116
-        }
117
-        catch (\Throwable $t)
111
+        } catch (\Throwable $t)
118 112
         {
119 113
             throw new MnsException($statusCode, $t->getMessage());
120 114
         }
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/CreateQueueResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         } catch (\Exception $e) {
48 48
             if ($exception != NULL) {
49 49
                 throw $exception;
50
-            } elseif($e instanceof MnsException) {
50
+            } elseif ($e instanceof MnsException) {
51 51
                 throw $e;
52 52
             } else {
53 53
                 throw new MnsException($statusCode, $e->getMessage());
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/ChangeMessageVisibilityResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
         } catch (\Exception $e) {
82 82
             if ($exception != NULL) {
83 83
                 throw $exception;
84
-            } elseif($e instanceof MnsException) {
84
+            } elseif ($e instanceof MnsException) {
85 85
                 throw $e;
86 86
             } else {
87 87
                 throw new MnsException($statusCode, $e->getMessage());
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/SetAccountAttributesResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         } catch (\Exception $e) {
34 34
             if ($exception != NULL) {
35 35
                 throw $exception;
36
-            } elseif($e instanceof MnsException) {
36
+            } elseif ($e instanceof MnsException) {
37 37
                 throw $e;
38 38
             } else {
39 39
                 throw new MnsException($statusCode, $e->getMessage());
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/GetAccountAttributesResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
         } catch (\Exception $e) {
55 55
             if ($exception != NULL) {
56 56
                 throw $exception;
57
-            } elseif($e instanceof MnsException) {
57
+            } elseif ($e instanceof MnsException) {
58 58
                 throw $e;
59 59
             } else {
60 60
                 throw new MnsException($statusCode, $e->getMessage());
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/PublishMessageResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         } catch (\Exception $e) {
61 61
             if ($exception != NULL) {
62 62
                 throw $exception;
63
-            } elseif($e instanceof MnsException) {
63
+            } elseif ($e instanceof MnsException) {
64 64
                 throw $e;
65 65
             } else {
66 66
                 throw new MnsException($statusCode, $e->getMessage());
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/CreateTopicResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         } catch (\Exception $e) {
48 48
             if ($exception != NULL) {
49 49
                 throw $exception;
50
-            } elseif($e instanceof MnsException) {
50
+            } elseif ($e instanceof MnsException) {
51 51
                 throw $e;
52 52
             } else {
53 53
                 throw new MnsException($statusCode, $e->getMessage());
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/GetTopicAttributeResponse.php 1 patch
Braces   +7 added lines, -14 removed lines patch added patch discarded remove patch
@@ -28,8 +28,7 @@  discard block
 block discarded – undo
28 28
         if ($statusCode == 200)
29 29
         {
30 30
             $this->succeed = TRUE;
31
-        }
32
-        else
31
+        } else
33 32
         {
34 33
             $this->parseErrorResponse($statusCode, $content);
35 34
         }
@@ -38,12 +37,10 @@  discard block
 block discarded – undo
38 37
 
39 38
         try {
40 39
             $this->attributes = TopicAttributes::fromXML($xmlReader);
41
-        }
42
-        catch (\Exception $e)
40
+        } catch (\Exception $e)
43 41
         {
44 42
             throw new MnsException($statusCode, $e->getMessage(), $e);
45
-        }
46
-        catch (\Throwable $t)
43
+        } catch (\Throwable $t)
47 44
         {
48 45
             throw new MnsException($statusCode, $t->getMessage());
49 46
         }
@@ -62,23 +59,19 @@  discard block
 block discarded – undo
62 59
                 throw new TopicNotExistException($statusCode, $result['Message'], $exception, $result['Code'], $result['RequestId'], $result['HostId']);
63 60
             }
64 61
             throw new MnsException($statusCode, $result['Message'], $exception, $result['Code'], $result['RequestId'], $result['HostId']);
65
-        }
66
-        catch (\Exception $e)
62
+        } catch (\Exception $e)
67 63
         {
68 64
             if ($exception != NULL)
69 65
             {
70 66
                 throw $exception;
71
-            }
72
-            elseif ($e instanceof MnsException)
67
+            } elseif ($e instanceof MnsException)
73 68
             {
74 69
                 throw $e;
75
-            }
76
-            else
70
+            } else
77 71
             {
78 72
                 throw new MnsException($statusCode, $e->getMessage());
79 73
             }
80
-        }
81
-        catch (\Throwable $t)
74
+        } catch (\Throwable $t)
82 75
         {
83 76
             throw new MnsException($statusCode, $t->getMessage());
84 77
         }
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/ListQueueResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
         } catch (\Exception $e) {
96 96
             if ($exception != NULL) {
97 97
                 throw $exception;
98
-            } elseif($e instanceof MnsException) {
98
+            } elseif ($e instanceof MnsException) {
99 99
                 throw $e;
100 100
             } else {
101 101
                 throw new MnsException($statusCode, $e->getMessage());
Please login to merge, or discard this patch.