Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

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
Pull Request — master (#11)
by Der Mundschenk
02:42
created
src/settings/class-dash-style.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
 	 * @param string   $style    The dash style.
111 111
 	 * @param Settings $settings The current settings.
112 112
 	 *
113
-	 * @return Dashes|null Returns null in case of an invalid $style parameter.
113
+	 * @return Simple_Dashes|null Returns null in case of an invalid $style parameter.
114 114
 	 */
115 115
 	public static function get_styled_dashes( $style, Settings $settings ) {
116 116
 		if ( isset( self::$styles[ $style ] ) ) {
Please login to merge, or discard this patch.
src/settings/class-quote-style.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
 	 * @param string   $style    The quote style.
148 148
 	 * @param Settings $settings The current settings.
149 149
 	 *
150
-	 * @return Quotes|null Returns null in case of an invalid $style parameter.
150
+	 * @return Simple_Quotes|null Returns null in case of an invalid $style parameter.
151 151
 	 */
152 152
 	public static function get_styled_quotes( $style, Settings $settings ) {
153 153
 		if ( isset( self::$styles[ $style ] ) ) {
Please login to merge, or discard this patch.
src/class-dom.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -160,8 +160,8 @@
 block discarded – undo
160 160
 	 * Retrieves a character from the given \DOMNode.
161 161
 	 *
162 162
 	 * @param  \DOMNode $node         Required.
163
-	 * @param  [type]   $position     The position parameter for `substr`.
164
-	 * @param  [type]   $length       The length parameter for `substr`.
163
+	 * @param  integer   $position     The position parameter for `substr`.
164
+	 * @param  integer   $length       The length parameter for `substr`.
165 165
 	 * @param  callable $get_textnode A function to retrieve the \DOMText from the node.
166 166
 	 *
167 167
 	 * @return string The character or an empty string.
Please login to merge, or discard this patch.