Completed
Push — develop ( d972b9...fcd30f )
by Stuart
02:09
created
doc-examples/ListCheck/Example-3--Via-Factory-Method.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,5 +11,5 @@
 block discarded – undo
11 11
 // --- PREAMBLE STOP ---
12 12
 
13 13
 // --- EXAMPLE START ---
14
-$list = [ 15, 17 ];
15
-var_dump(IsInRange::using(10,20)->inspectList($list));
16 14
\ No newline at end of file
15
+$list = [15, 17];
16
+var_dump(IsInRange::using(10, 20)->inspectList($list));
17 17
\ No newline at end of file
Please login to merge, or discard this patch.
doc-examples/ListCheck/Example-1--Static-Check.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,5 +11,5 @@
 block discarded – undo
11 11
 // --- PREAMBLE STOP ---
12 12
 
13 13
 // --- EXAMPLE START ---
14
-$list = [ 11, 15 ];
15
-var_dump(IsInRange::checkList($list, 10,20));
16 14
\ No newline at end of file
15
+$list = [11, 15];
16
+var_dump(IsInRange::checkList($list, 10, 20));
17 17
\ No newline at end of file
Please login to merge, or discard this patch.
doc-examples/ListCheck/Example-2--Reusable-Object.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
 // --- EXAMPLE START ---
15 15
 $rangeCheck = new IsInRange(10, 20);
16 16
 
17
-$list1 = [ 11, 13 ];
18
-$list2 = [ 5, 14 ];
17
+$list1 = [11, 13];
18
+$list2 = [5, 14];
19 19
 
20 20
 var_dump($rangeCheck->inspectList($list1));
21 21
 var_dump($rangeCheck->inspectList($list2));
22 22
\ No newline at end of file
Please login to merge, or discard this patch.