CS: no whitespace before return type colon

This commit is contained in:
jrfnl
2021-08-08 21:32:57 +02:00
committed by Jaapio
parent c269e1b26e
commit aa1efc030b
+1 -1
View File
@@ -47,7 +47,7 @@ abstract class Utils
*
* @throws PcreException
*/
public static function pregSplit(string $pattern, string $subject, int $limit = -1, int $flags = 0) : array
public static function pregSplit(string $pattern, string $subject, int $limit = -1, int $flags = 0): array
{
$parts = php_preg_split($pattern, $subject, $limit, $flags);
if ($parts === false) {