Completed
Push — master ( 7906ee...c16305 )
by Helmut
26:16 queued 19:05
created
tests/functional/number/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/paragraph_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/name/submitted_.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,9 +7,9 @@
 block discarded – undo
7 7
 
8 8
 if ($form->submitted()) {
9 9
 
10
-	$values = $form->get('foo');
10
+    $values = $form->get('foo');
11 11
 
12
-	exit('Submitted ['.$values['foo'].','.$values['foo_first'].','.$values['foo_surname'].']');
12
+    exit('Submitted ['.$values['foo'].','.$values['foo_first'].','.$values['foo_surname'].']');
13 13
 
14 14
 }
15 15
 
Please login to merge, or discard this patch.
tests/functional/name/submitted_with_default_.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,9 +7,9 @@
 block discarded – undo
7 7
 
8 8
 if ($form->submitted()) {
9 9
 
10
-	$values = $form->get('foo');
10
+    $values = $form->get('foo');
11 11
 
12
-	exit('Submitted ['.$values['foo'].','.$values['foo_first'].','.$values['foo_surname'].']');
12
+    exit('Submitted ['.$values['foo'].','.$values['foo_first'].','.$values['foo_surname'].']');
13 13
 
14 14
 }
15 15
 
Please login to merge, or discard this patch.
tests/codeception/_support/UnitTester.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/codeception/_support/AcceptanceTester.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.