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 master (ab6c0e)
by Romain
07:19
created
src/Halapi/Factory/PaginationFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,12 +123,12 @@
 block discarded – undo
123 123
     /**
124 124
      * Return the url of a resource based on the 'get_entity' route name convention.
125 125
      *
126
-     * @param $name
126
+     * @param string $name
127 127
      * @param $limit
128 128
      * @param $page
129 129
      * @param $sorting
130 130
      *
131
-     * @return mixed
131
+     * @return string
132 132
      */
133 133
     private function getPaginatedRoute($name, $limit, $page, $sorting)
134 134
     {
Please login to merge, or discard this patch.
src/Halapi/Relation/LinksRelation.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * Get the url of an entity based on the 'get_entity' route pattern.
75 75
      *
76 76
      * @param $resource
77
-     * @param $reflectionClass
77
+     * @param \ReflectionClass $reflectionClass
78 78
      *
79 79
      * @return array|void
80 80
      */
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     /**
100 100
      * Get the links of a collection.
101 101
      *
102
-     * @param $property
102
+     * @param \ReflectionProperty $property
103 103
      * @param $relationContent
104 104
      *
105 105
      * @return array|void
Please login to merge, or discard this patch.
src/Halapi/HALAPIBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     {
40 40
         $this->serializerBuilder
41 41
             ->addDefaultListeners()
42
-            ->configureListeners(function (EventDispatcherInterface $dispatcher) {
42
+            ->configureListeners(function(EventDispatcherInterface $dispatcher) {
43 43
                     $dispatcher->addSubscriber(new JsonEventSubscriber($this->relationFactory));
44 44
             })
45 45
         ;
Please login to merge, or discard this patch.