Completed
Push — master ( 9bb1a7...9f8480 )
by Helmut
06:35
created
tests/functional/checkboxes/rendered_with_set_default_.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,6 @@
 block discarded – undo
2 2
 
3 3
 require '../_includes.php';
4 4
 
5
-$form->checkboxes('foo')->label('bar')->options(['a'=>'A','b'=>'B', 'c'=>'C'])->checked(['a', 'c']);
5
+$form->checkboxes('foo')->label('bar')->options(['a'=>'A', 'b'=>'B', 'c'=>'C'])->checked(['a', 'c']);
6 6
 
7 7
 require '../_view.php';
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
tests/functional/checkboxes/rendered_with_required_.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,6 @@
 block discarded – undo
2 2
 
3 3
 require '../_includes.php';
4 4
 
5
-$form->checkboxes('foo')->label('bar')->options(['a'=>'A','b'=>'B', 'c'=>'C'])->required();
5
+$form->checkboxes('foo')->label('bar')->options(['a'=>'A', 'b'=>'B', 'c'=>'C'])->required();
6 6
 
7 7
 require '../_view.php';
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
tests/functional/_bootstrap.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,5 +2,5 @@
 block discarded – undo
2 2
 // Here you can initialize variables that will be available to your tests
3 3
 
4 4
 function script($test) {
5
-	return str_replace('Cept', '', implode('/', array_slice(explode('/', $test), -2)));
5
+    return str_replace('Cept', '', implode('/', array_slice(explode('/', $test), -2)));
6 6
 }
7 7
\ No newline at end of file
Please login to merge, or discard this patch.
tests/functional/dropdown/fills_model_with_value_.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,12 +7,12 @@
 block discarded – undo
7 7
 
8 8
 if ($form->submitted()) {
9 9
 
10
-	$model = new stdClass;
11
-	$model->foo = '';
10
+    $model = new stdClass;
11
+    $model->foo = '';
12 12
 
13
-	$form->fill($model);
13
+    $form->fill($model);
14 14
 
15
-	exit('Submitted ['.$model->foo.']');
15
+    exit('Submitted ['.$model->foo.']');
16 16
 
17 17
 }
18 18
 
Please login to merge, or discard this patch.
tests/codeception/_support/FunctionalTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     use _generated\FunctionalTesterActions;
22 22
 
23
-   /**
24
-    * Define custom actions here
25
-    */
23
+    /**
24
+     * Define custom actions here
25
+     */
26 26
 }
Please login to merge, or discard this patch.
tests/functional/email/fills_model_with_value_.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,12 +7,12 @@
 block discarded – undo
7 7
 
8 8
 if ($form->submitted()) {
9 9
 
10
-	$model = new stdClass;
11
-	$model->foo = '';
10
+    $model = new stdClass;
11
+    $model->foo = '';
12 12
 
13
-	$form->fill($model);
13
+    $form->fill($model);
14 14
 
15
-	exit('Submitted ['.$model->foo.']');
15
+    exit('Submitted ['.$model->foo.']');
16 16
 
17 17
 }
18 18
 
Please login to merge, or discard this patch.
tests/functional/text/fills_model_with_value_.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,12 +7,12 @@
 block discarded – undo
7 7
 
8 8
 if ($form->submitted()) {
9 9
 
10
-	$model = new stdClass;
11
-	$model->foo = '';
10
+    $model = new stdClass;
11
+    $model->foo = '';
12 12
 
13
-	$form->fill($model);
13
+    $form->fill($model);
14 14
 
15
-	exit('Submitted ['.$model->foo.']');
15
+    exit('Submitted ['.$model->foo.']');
16 16
 
17 17
 }
18 18
 
Please login to merge, or discard this patch.
tests/functional/text/submitted_.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 
8 8
 if ($form->submitted()) {
9 9
 
10
-	exit('Submitted ['.$form->get('foo').']');
10
+    exit('Submitted ['.$form->get('foo').']');
11 11
 
12 12
 }
13 13
 
Please login to merge, or discard this patch.
tests/functional/text/submitted_with_default_.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 
8 8
 if ($form->submitted()) {
9 9
 
10
-	exit('Submitted ['.$form->get('foo').']');
10
+    exit('Submitted ['.$form->get('foo').']');
11 11
 
12 12
 }
13 13
 
Please login to merge, or discard this patch.