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 ( 9d78a7...885f6f )
by Bram
59:45 queued 44:45
created
src/StrokerForm/Factory/AjaxControllerFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      * Create service
21 21
      *
22 22
      * @param  ServiceLocatorInterface $serviceLocator
23
-     * @return mixed
23
+     * @return AjaxController
24 24
      */
25 25
     public function createService(ServiceLocatorInterface $serviceLocator)
26 26
     {
Please login to merge, or discard this patch.
src/StrokerForm/Factory/FormElementFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      * Create service
21 21
      *
22 22
      * @param  ServiceLocatorInterface $serviceLocator
23
-     * @return mixed
23
+     * @return FormElement
24 24
      */
25 25
     public function createService(ServiceLocatorInterface $serviceLocator)
26 26
     {
Please login to merge, or discard this patch.
src/StrokerForm/Factory/FormPrepareFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      * Create service
21 21
      *
22 22
      * @param  ServiceLocatorInterface $serviceLocator
23
-     * @return mixed
23
+     * @return FormPrepare
24 24
      */
25 25
     public function createService(ServiceLocatorInterface $serviceLocator)
26 26
     {
Please login to merge, or discard this patch.
src/StrokerForm/Options/ModuleOptions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
 
108 108
     /**
109 109
      * @param string $renderer
110
-     * @return mixed
110
+     * @return null|AbstractOptions
111 111
      * @throws \InvalidArgumentException
112 112
      */
113 113
     public function getRendererOptions($renderer)
Please login to merge, or discard this patch.
src/StrokerForm/Renderer/AbstractRenderer.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      *                                 Default is null, which sets no translator.
68 68
      * @param string $textDomain [optional] text domain
69 69
      *                                 Default is null, which skips setTranslatorTextDomain
70
-     * @return AbstractTranslatorHelper
70
+     * @return AbstractRenderer
71 71
      */
72 72
     public function setTranslator(TranslatorInterface $translator = null, $textDomain = null)
73 73
     {
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     /**
83 83
      * Returns translator used in helper
84 84
      *
85
-     * @return Translator|null
85
+     * @return null|TranslatorInterface
86 86
      */
87 87
     public function getTranslator()
88 88
     {
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      *
109 109
      * @param bool $enabled [optional] whether translator should be used.
110 110
      *                       Default is true.
111
-     * @return AbstractTranslatorHelper
111
+     * @return AbstractRenderer
112 112
      */
113 113
     public function setTranslatorEnabled($enabled = true)
114 114
     {
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      * Set translation text domain
132 132
      *
133 133
      * @param  string                   $textDomain
134
-     * @return AbstractTranslatorHelper
134
+     * @return AbstractRenderer
135 135
      */
136 136
     public function setTranslatorTextDomain($textDomain = 'default')
137 137
     {
Please login to merge, or discard this patch.
src/StrokerForm/Renderer/JqueryValidate/Rule/AbstractRule.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      *
53 53
      * @param  TranslatorInterface $translator
54 54
      * @param  string     $textDomain
55
-     * @return mixed
55
+     * @return AbstractRule
56 56
      */
57 57
     public function setTranslator(TranslatorInterface $translator = null, $textDomain = null)
58 58
     {
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      * Sets whether translator is enabled and should be used
94 94
      *
95 95
      * @param  bool  $enabled
96
-     * @return mixed
96
+     * @return AbstractRule
97 97
      */
98 98
     public function setTranslatorEnabled($enabled = true)
99 99
     {
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * Set translation text domain
118 118
      *
119 119
      * @param  string $textDomain
120
-     * @return mixed
120
+     * @return AbstractRule
121 121
      */
122 122
     public function setTranslatorTextDomain($textDomain = 'default')
123 123
     {
Please login to merge, or discard this patch.