Passed
Push — master ( a96543...0dee87 )
by Prateek
01:57
created
src/SkeletonClass.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
     /**
8 8
      * Create a new Skeleton Instance
9 9
      */
10
-    public function __construct(){
10
+    public function __construct() {
11 11
         // constructor body
12 12
     }
13 13
 
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      *
19 19
      * @return string Returns the phrase passed in
20 20
      */
21
-    public function echoPhrase($phrase){
21
+    public function echoPhrase($phrase) {
22 22
         return $phrase;
23 23
     }
24 24
 }
Please login to merge, or discard this patch.
config/laragen.php 1 patch
Indentation   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -1,54 +1,54 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-	'options' => [
5
-		'generated_by_default' => ['migration', 'controller', 'model'],
6
-		'override' => true
7
-	],
8
-	'modules' => [
4
+    'options' => [
5
+        'generated_by_default' => ['migration', 'controller', 'model'],
6
+        'override' => true
7
+    ],
8
+    'modules' => [
9 9
 		
10
-		// optional parameters : 
11
-		// 		'multiple'=>[]
12
-		// 		'images'=>'single'   	//Images type: single, multiple
10
+        // optional parameters : 
11
+        // 		'multiple'=>[]
12
+        // 		'images'=>'single'   	//Images type: single, multiple
13 13
 
14
-		'categories'	=> [
15
-			'data'=>[
16
-				// Separated by ':', numeric value represents size of the field its 192 by default and is optional
14
+        'categories'	=> [
15
+            'data'=>[
16
+                // Separated by ':', numeric value represents size of the field its 192 by default and is optional
17 17
 				
18
-				// Regular data types: 
19
-				// 		string, int, text, bool
18
+                // Regular data types: 
19
+                // 		string, int, text, bool
20 20
 				
21
-				// Data type modifiers 
22
-				// 		required, unique, <numeric-values-for-size>
21
+                // Data type modifiers 
22
+                // 		required, unique, <numeric-values-for-size>
23 23
 
24
-				// Special data types: 
25
-				// 		parent: requires name of a module, creates a one-to-many relation with the current module
26
-				// 		related: requires name of a module, creates many to many relation with current module
24
+                // Special data types: 
25
+                // 		parent: requires name of a module, creates a one-to-many relation with the current module
26
+                // 		related: requires name of a module, creates many to many relation with current module
27 27
 
28
-				'title' 			=> 'string:128:required',
29
-				'slug' 				=> 'string:128:unique|required',
30
-				'short_description' => 'string',
31
-			],
32
-			'images'=>'single'
33
-		],
28
+                'title' 			=> 'string:128:required',
29
+                'slug' 				=> 'string:128:unique|required',
30
+                'short_description' => 'string',
31
+            ],
32
+            'images'=>'single'
33
+        ],
34 34
 
35
-		'tags'	=> [
36
-			'data'=>[
37
-				'title' 			=> 'string:128:required'
38
-			]
39
-		],
35
+        'tags'	=> [
36
+            'data'=>[
37
+                'title' 			=> 'string:128:required'
38
+            ]
39
+        ],
40 40
 
41
-		'posts'	=> [
42
-			'data'	=> [
43
-				'author' 			=> 'parent:users',
44
-				'title' 			=> 'string:256:required',
45
-				'slug' 				=> 'string:128:unique|required',
46
-				'short_description' => 'string',
47
-				'full_description' 	=> 'text',
48
-				'category'			=>	'parent:categories',
49
-				'tags'				=>	'related:tags'
50
-			],
51
-			'images'=>'multiple'
52
-		],
53
-	]
41
+        'posts'	=> [
42
+            'data'	=> [
43
+                'author' 			=> 'parent:users',
44
+                'title' 			=> 'string:256:required',
45
+                'slug' 				=> 'string:128:unique|required',
46
+                'short_description' => 'string',
47
+                'full_description' 	=> 'text',
48
+                'category'			=>	'parent:categories',
49
+                'tags'				=>	'related:tags'
50
+            ],
51
+            'images'=>'multiple'
52
+        ],
53
+    ]
54 54
 ];
Please login to merge, or discard this patch.