Completed
Push — master ( 9a30da...057199 )
by Amine
02:09
created
src/Argument/ArgumentFormat.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -3,41 +3,41 @@
 block discarded – undo
3 3
 
4 4
 class ArgumentFormat {
5 5
 
6
-	/**
7
-	 * Argument name
8
-	 * 
9
-	 * @var string
10
-	 */
11
-	public $name;
6
+    /**
7
+     * Argument name
8
+     * 
9
+     * @var string
10
+     */
11
+    public $name;
12 12
 
13
-	/**
14
-	 * One of the types: array, object, string, boolean, number
15
-	 * 
16
-	 * @var string
17
-	 */
18
-	public $type;
13
+    /**
14
+     * One of the types: array, object, string, boolean, number
15
+     * 
16
+     * @var string
17
+     */
18
+    public $type;
19 19
 	
20
-	/**
21
-	 * The default value
22
-	 * 
23
-	 * @var string
24
-	 */
25
-	public $default;
20
+    /**
21
+     * The default value
22
+     * 
23
+     * @var string
24
+     */
25
+    public $default;
26 26
 
27
-	/**
28
-	 * The separator, by default ":" for object and "," for array.
29
-	 * 
30
-	 * @var string
31
-	 */
32
-	public $separator;
27
+    /**
28
+     * The separator, by default ":" for object and "," for array.
29
+     * 
30
+     * @var string
31
+     */
32
+    public $separator;
33 33
 
34
-	/**
35
-	 * Specify the format of fields for object
36
-	 *     [ field_name => Format, field_name => Format, ... ] 
37
-	 * Specify the format of an element of array
38
-	 * 
39
-	 * @var mixed
40
-	 */
41
-	public $format;
34
+    /**
35
+     * Specify the format of fields for object
36
+     *     [ field_name => Format, field_name => Format, ... ] 
37
+     * Specify the format of an element of array
38
+     * 
39
+     * @var mixed
40
+     */
41
+    public $format;
42 42
 	
43 43
 }
Please login to merge, or discard this patch.