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
Branch dev (718e6b)
by Jérémy
04:44 queued 02:58
created
src/Routing/Route.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -110,8 +110,8 @@
 block discarded – undo
110 110
     /**
111 111
      * Run the current route
112 112
      *
113
-     * @param \React\Http\Request     $request
114
-     * @param \React\Restify\Response $response
113
+     * @param Request     $request
114
+     * @param Response $response
115 115
      * @param Callable                $next
116 116
      *
117 117
      * @return Void
Please login to merge, or discard this patch.
src/Routing/Router.php 1 patch
Doc Comments   +6 added lines, -5 removed lines patch added patch discarded remove patch
@@ -74,8 +74,9 @@  discard block
 block discarded – undo
74 74
      * Create a new group of routes
75 75
      *
76 76
      * @param String $prefix prefix of thes routes
77
+     * @param callable $callback
77 78
      *
78
-     * @return \CapMousse\ReactRestify\Routing\Group
79
+     * @return Routes
79 80
      */
80 81
     public function addGroup($prefix, $callback)
81 82
     {
@@ -87,8 +88,8 @@  discard block
 block discarded – undo
87 88
     /**
88 89
      * Launch the route parsing
89 90
      *
90
-     * @param \React\Http\Request     $request
91
-     * @param \React\Restify\Response $response
91
+     * @param Request     $request
92
+     * @param Response $response
92 93
      *
93 94
      * @throws \RuntimeException
94 95
      * @return Void
@@ -112,8 +113,8 @@  discard block
 block discarded – undo
112 113
      * Try to match the current uri with all routes
113 114
      *
114 115
      *
115
-     * @param \React\Http\Request     $request
116
-     * @param \React\Restify\Response $response
116
+     * @param Request     $request
117
+     * @param Response $response
117 118
      *
118 119
      * @throws \RuntimeException
119 120
      * @return Void
Please login to merge, or discard this patch.
src/Server.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
     /**
52 52
      * Parse request from user
53 53
      *
54
-     * @param \React\Http\Request  $HttpRequest
55
-     * @param \React\Http\Response $HttpResponse
54
+     * @param \React\Http\Request  $httpRequest
55
+     * @param \React\Http\Response $httpResponse
56 56
      */
57 57
     public function __invoke(HttpRequest $httpRequest, HttpResponse $httpResponse)
58 58
     {
Please login to merge, or discard this patch.
src/Http/Request.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,6 @@
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * Set the raw data of the request
38
-     * @param mixed $content
39 38
      */
40 39
     public function getContent()
41 40
     {
Please login to merge, or discard this patch.
src/Traits/WaterfallTrait.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@  discard block
 block discarded – undo
5 5
 trait WaterfallTrait {
6 6
     /**
7 7
      * Call callback one
8
-     * @param  function $fn 
9
-     * @return function
8
+     * @param  \Closure $fn 
9
+     * @return \Closure
10 10
      */
11 11
     function callOnce ($fn) 
12 12
     {
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 
20 20
     /**
21 21
      * Run tasks in series
22
-     * @param  array  $tasks 
22
+     * @param  \Closure[]  $tasks 
23 23
      * @return void
24 24
      */
25 25
     function waterfall (array $tasks)
Please login to merge, or discard this patch.