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 ( 2c7b14...3be0f5 )
by Mario
02:10
created
lib/Core/Factory/EmailDataFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -233,7 +233,7 @@
 block discarded – undo
233 233
     }
234 234
 
235 235
     /**
236
-     * @param $contentTypeIdentifier
236
+     * @param string $contentTypeIdentifier
237 237
      * @param array $collectedFields
238 238
      *
239 239
      * @return BinaryFile[]|null
Please login to merge, or discard this patch.
lib/Core/Persistence/Anonymizer/AnonymizerServiceFacade.php 1 patch
Doc Comments   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      *
50 50
      * @param int $contentId Content id
51 51
      * @param array $fields Fields list
52
-     * @param DateTime|null $date Anonymize collections older that this date
52
+     * @param null|\DateTimeImmutable $date Anonymize collections older that this date
53 53
      *
54 54
      * @return int
55 55
      */
@@ -73,9 +73,8 @@  discard block
 block discarded – undo
73 73
     /**
74 74
      * Map field id's to list of field identifiers.
75 75
      *
76
-     * @param int $content
77 76
      * @param array $fieldIdentifiers
78
-     * @param mixed $contentId
77
+     * @param integer $contentId
79 78
      *
80 79
      * @return array
81 80
      */
@@ -93,6 +92,9 @@  discard block
 block discarded – undo
93 92
         return $ids;
94 93
     }
95 94
 
95
+    /**
96
+     * @param integer $contentId
97
+     */
96 98
     private function getCollections($contentId, \DateTimeImmutable $date = null)
97 99
     {
98 100
         if (null === $date) {
Please login to merge, or discard this patch.
lib/Form/Builder/FormBuilder.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,6 @@
 block discarded – undo
41 41
      *
42 42
      * @param FormFactoryInterface $formFactory
43 43
      * @param ContentTypeService $contentTypeService
44
-     * @param RouterInterface $router
45
-     * @param bool $useCsrf
46 44
      */
47 45
     public function __construct(FormFactoryInterface $formFactory, ContentTypeService $contentTypeService)
48 46
     {
Please login to merge, or discard this patch.
bundle/Controller/Admin/AdminController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     /**
133 133
      * Displays individual collection details
134 134
      *
135
-     * @param int $collectionId
135
+     * @param int $collection
136 136
      *
137 137
      * @return \Symfony\Component\HttpFoundation\Response
138 138
      */
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
      *
320 320
      * @param string $messageType
321 321
      * @param string $message
322
-     * @param string $count
322
+     * @param integer $count
323 323
      * @param array $parameters
324 324
      */
325 325
     protected function addFlashMessage($messageType, $message, $count = 1, array $parameters = array())
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
      * Returns configured instance of Pagerfanta
340 340
      *
341 341
      * @param \Pagerfanta\Adapter\AdapterInterface $adapter
342
-     * @param $currentPage
342
+     * @param integer $currentPage
343 343
      *
344 344
      * @return \Pagerfanta\Pagerfanta
345 345
      */
Please login to merge, or discard this patch.
lib/API/Value/Collection.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     }
76 76
 
77 77
     /**
78
-     * @return int
78
+     * @return DateTimeInterface
79 79
      */
80 80
     public function getCreated(): DateTimeInterface
81 81
     {
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     }
84 84
 
85 85
     /**
86
-     * @return int
86
+     * @return DateTimeInterface
87 87
      */
88 88
     public function getModified(): DateTimeInterface
89 89
     {
Please login to merge, or discard this patch.
lib/Core/Pagination/BaseAdapter.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
      * InformationCollectionCollectionListAdapter constructor.
19 19
      *
20 20
      * @param \Netgen\InformationCollection\API\Service\InformationCollection $informationCollectionService
21
-     * @param \Netgen\InformationCollection\API\Value\Filter\Query $query
22 21
      */
23 22
     public function __construct(InformationCollection $informationCollectionService)
24 23
     {
Please login to merge, or discard this patch.
lib/Core/Mapper/DomainObjectMapper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -114,6 +114,9 @@
 block discarded – undo
114 114
         );
115 115
     }
116 116
 
117
+    /**
118
+     * @param integer $userId
119
+     */
117 120
     private function getUser($userId)
118 121
     {
119 122
         try {
Please login to merge, or discard this patch.
lib/Core/Service/InformationCollectionService.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -300,7 +300,6 @@
 block discarded – undo
300 300
     }
301 301
 
302 302
     /**
303
-     * @param UserReference $userReference
304 303
      * @param mixed $userId
305 304
      *
306 305
      * @return \eZ\Publish\API\Repository\Values\User\User
Please login to merge, or discard this patch.