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 ( a4ad96...a25367 )
by François
02:17
created
src/fkooman/VPN/Server/Config/UserConfig.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -67,6 +67,9 @@
 block discarded – undo
67 67
         }
68 68
     }
69 69
 
70
+    /**
71
+     * @param string $otpSecret
72
+     */
70 73
     public function setOtpSecret($otpSecret)
71 74
     {
72 75
         InputValidation::otpSecret($otpSecret);
Please login to merge, or discard this patch.
src/fkooman/VPN/Server/Config/ConfigModule.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         // get all configurations
47 47
         $service->get(
48 48
             '/config/common_names/',
49
-            function (Request $request, TokenInfo $tokenInfo) {
49
+            function(Request $request, TokenInfo $tokenInfo) {
50 50
                 self::requireScope($tokenInfo, ['admin', 'portal']);
51 51
 
52 52
                 $userId = $request->getUrl()->getQueryParameter('user_id');
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         // get configuration for a particular common_name
71 71
         $service->get(
72 72
             '/config/common_names/:commonName',
73
-            function (Request $request, TokenInfo $tokenInfo, $commonName) {
73
+            function(Request $request, TokenInfo $tokenInfo, $commonName) {
74 74
                 self::requireScope($tokenInfo, ['admin', 'portal']);
75 75
 
76 76
                 InputValidation::commonName($commonName);
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         // set configuration for a particular common_name
88 88
         $service->put(
89 89
             '/config/common_names/:commonName',
90
-            function (Request $request, TokenInfo $tokenInfo, $commonName) {
90
+            function(Request $request, TokenInfo $tokenInfo, $commonName) {
91 91
                 self::requireScope($tokenInfo, ['admin']);
92 92
 
93 93
                 InputValidation::commonName($commonName);
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         // get configuration for a particular user_id
111 111
         $service->get(
112 112
             '/config/users/:userId',
113
-            function (Request $request, TokenInfo $tokenInfo, $userId) {
113
+            function(Request $request, TokenInfo $tokenInfo, $userId) {
114 114
                 self::requireScope($tokenInfo, ['admin', 'portal']);
115 115
 
116 116
                 InputValidation::userId($userId);
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         // set configuration for a particular user_id
132 132
         $service->put(
133 133
             '/config/users/:userId',
134
-            function (Request $request, TokenInfo $tokenInfo, $userId) {
134
+            function(Request $request, TokenInfo $tokenInfo, $userId) {
135 135
                 self::requireScope($tokenInfo, ['admin', 'portal']);
136 136
 
137 137
                 InputValidation::userId($userId);
Please login to merge, or discard this patch.