Passed
Push — master ( dcd1b6...bfe454 )
by Paweł
01:56
created
src/Text.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,13 +25,13 @@
 block discarded – undo
25 25
     {
26 26
         if (preg_match_all(static::$tagsPattern, mb_strtolower($text), $matches)) {
27 27
 
28
-            $tags = array_filter($matches['1'], function ($tag) use ($minLength) {
28
+            $tags = array_filter($matches['1'], function($tag) use ($minLength) {
29 29
                 if ($minLength === false || is_int($minLength) && mb_strlen($tag) >= $minLength) {
30 30
                     return true;
31 31
                 }
32 32
             });
33 33
 
34
-            return array_values(array_unique($tags))?:null;
34
+            return array_values(array_unique($tags)) ?: null;
35 35
         }
36 36
 
37 37
         return null;
Please login to merge, or discard this patch.