Completed
Branch master (2a8b51)
by DeGracia
02:53
created
src/Criterias/UppercaseLetter.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
     
5 5
 class UppercaseLetter
6 6
 {
7
-    public function handle()
8
-    {
9
-        return ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'];
10
-    }
7
+	public function handle()
8
+	{
9
+		return ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'];
10
+	}
11 11
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
 {
7 7
     public function handle()
8 8
     {
9
-        return ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'];
9
+        return ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'];
10 10
     }
11 11
 }
Please login to merge, or discard this patch.
src/Manager.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -4,21 +4,21 @@
 block discarded – undo
4 4
 
5 5
 class Manager {
6 6
 
7
-    public function buildCriteria($criteria, $occurence)
8
-    {
9
-        return new CriteriaBuilder($criteria, $occurence);
10
-    }
7
+	public function buildCriteria($criteria, $occurence)
8
+	{
9
+		return new CriteriaBuilder($criteria, $occurence);
10
+	}
11 11
 
12
-    public function generate(array $criteriaBuilderList)
13
-    {
14
-        $concretPassword = [];
12
+	public function generate(array $criteriaBuilderList)
13
+	{
14
+		$concretPassword = [];
15 15
 
16
-        foreach ($criteriaBuilderList as $criteriaBuilder) {
17
-            $concretPassword = array_merge($concretPassword, $criteriaBuilder->build());
18
-        }
16
+		foreach ($criteriaBuilderList as $criteriaBuilder) {
17
+			$concretPassword = array_merge($concretPassword, $criteriaBuilder->build());
18
+		}
19 19
 
20
-        shuffle($concretPassword);
20
+		shuffle($concretPassword);
21 21
 
22
-        return implode($concretPassword);
23
-    }
22
+		return implode($concretPassword);
23
+	}
24 24
 }
Please login to merge, or discard this patch.