Passed
Pull Request — master (#3)
by
unknown
04:32
created
tests/Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
 
101 101
         $this->assertEquals(5, mb_strlen($str));
102 102
 
103
-        $chars = array_map(function ($c) {
103
+        $chars = array_map(function($c) {
104 104
             return '\\' . $c;
105 105
         }, $specialCharacter->handle());
106 106
 
Please login to merge, or discard this patch.
src/Occurrences/BaseOccurrence.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
             $tmp[] = $dictionary[0];
16 16
         }
17 17
 
18
-       return $tmp;
18
+        return $tmp;
19 19
     }
20 20
 
21 21
     /**
Please login to merge, or discard this patch.
src/Manager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function score($password, array $criterias)
35 35
     {
36
-        $criteriasPassed = array_filter($criterias, function ($criteria) use ($password) {
36
+        $criteriasPassed = array_filter($criterias, function($criteria) use ($password) {
37 37
             return $criteria->passes($password);
38 38
         });
39 39
 
Please login to merge, or discard this patch.