We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -110,7 +110,7 @@ |
||
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 ] ) ) { |
@@ -271,7 +271,7 @@ |
||
271 | 271 | * to use the spl_object_hash for its keys. |
272 | 272 | * |
273 | 273 | * @param array $array1 The keys are ignored. |
274 | - * @param array $array2 This array has to be in the form ( $spl_object_hash => $object ). |
|
274 | + * @param \DOMNode[] $array2 This array has to be in the form ( $spl_object_hash => $object ). |
|
275 | 275 | * |
276 | 276 | * @return boolean |
277 | 277 | */ |
@@ -27,8 +27,8 @@ |
||
27 | 27 | |
28 | 28 | namespace PHP_Typography; |
29 | 29 | |
30 | -use PHP_Typography\Fixes\Registry; |
|
31 | 30 | use PHP_Typography\Fixes\Default_Registry; |
31 | +use PHP_Typography\Fixes\Registry; |
|
32 | 32 | |
33 | 33 | /** |
34 | 34 | * Parses HTML5 (or plain text) and applies various typographic fixes to the text. |