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 ( a9bc98...b864c9 )
by butschster
10:50
created
src/Display/DisplayTabbed.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-     * @return TabInterface[]|DisplayTabsCollection
68
+     * @return \SleepingOwl\Admin\Form\FormElementsCollection
69 69
      */
70 70
     public function getTabs()
71 71
     {
Please login to merge, or discard this patch.
src/Form/Element/Custom.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     }
87 87
 
88 88
     /**
89
-     * @return $this|Custom|mixed
89
+     * @return string
90 90
      */
91 91
     public function render()
92 92
     {
Please login to merge, or discard this patch.
src/Form/FormDefault.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      * @deprecated 4.5.0
214 214
      * @see getElements()
215 215
      *
216
-     * @return Collection[]
216
+     * @return FormElementsCollection
217 217
      */
218 218
     public function getItems()
219 219
     {
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
      *
302 302
      * @param ModelConfigurationInterface $modelConfiguration
303 303
      *
304
-     * @return bool
304
+     * @return null|boolean
305 305
      */
306 306
     public function saveForm(ModelConfigurationInterface $modelConfiguration)
307 307
     {
Please login to merge, or discard this patch.
tests/Admin/Form/Element/NamedFormElementTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
      * @param string $path
10 10
      * @param string|null $label
11 11
      *
12
-     * @return NamedFormElement
12
+     * @return PHPUnit_Framework_MockObject_MockObject
13 13
      */
14 14
     protected function getElement($path = 'path', $label = null)
15 15
     {
Please login to merge, or discard this patch.
tests/Admin/Form/FormElementTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 class FormElementTest extends TestCase
7 7
 {
8 8
     /**
9
-     * @return FormElement
9
+     * @return PHPUnit_Framework_MockObject_MockObject
10 10
      */
11 11
     protected function getElement()
12 12
     {
Please login to merge, or discard this patch.