Completed
Push — master ( 63d8d6...28be9d )
by Raphael
11:25
created
stubs/Controller.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -43,19 +43,19 @@  discard block
 block discarded – undo
43 43
     }
44 44
 
45 45
     public function show($id)
46
-	{
47
-		return 'Not implemented';
48
-	}
46
+    {
47
+        return 'Not implemented';
48
+    }
49 49
 
50 50
     public function edit($id)
51
-	{
52
-		$model = {{class_name}}::find($id);
51
+    {
52
+        $model = {{class_name}}::find($id);
53 53
 
54 54
         return view('{{class_name_lw}}.edit')->with('model', $model);
55
-	}
55
+    }
56 56
 
57 57
     public function update($id, Request $request)
58
-	{
58
+    {
59 59
         $this->validate($request, [
60 60
 
61 61
             {{validations}}
@@ -63,13 +63,13 @@  discard block
 block discarded – undo
63 63
 
64 64
         {{class_name}}::find($id)->fill($request->all())->save();
65 65
 
66
-		return response()->json(['message' => 'ok']);
67
-	}
66
+        return response()->json(['message' => 'ok']);
67
+    }
68 68
 
69 69
     public function destroy($id)
70
-	{
70
+    {
71 71
         {{class_name}}::destroy($id);
72 72
 
73
-		return response()->json(['message' => 'ok']);
74
-	}
73
+        return response()->json(['message' => 'ok']);
74
+    }
75 75
 }
Please login to merge, or discard this patch.
src/Scaffolder/ScaffolderServiceProvider.php 1 patch
Indentation   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -10,68 +10,68 @@
 block discarded – undo
10 10
 
11 11
 class ScaffolderServiceProvider extends ServiceProvider
12 12
 {
13
-	/**
14
-	 * Bootstrap the application services.
15
-	 */
16
-	public function boot()
17
-	{
18
-		// Scaffolder config
19
-		$this->publishes([
20
-			__DIR__ . '/../../config/' => base_path('scaffolder-config/')
21
-		], 'config');
13
+    /**
14
+     * Bootstrap the application services.
15
+     */
16
+    public function boot()
17
+    {
18
+        // Scaffolder config
19
+        $this->publishes([
20
+            __DIR__ . '/../../config/' => base_path('scaffolder-config/')
21
+        ], 'config');
22 22
 
23
-		// Generator views
24
-		//$this->loadViewsFrom(__DIR__ . '/../../views', 'scaffolder');
23
+        // Generator views
24
+        //$this->loadViewsFrom(__DIR__ . '/../../views', 'scaffolder');
25 25
 
26
-		// Generator routes
27
-		if (!$this->app->routesAreCached())
28
-		{
29
-			require __DIR__ . '/../../routes/generator.php';
30
-		}
31
-	}
26
+        // Generator routes
27
+        if (!$this->app->routesAreCached())
28
+        {
29
+            require __DIR__ . '/../../routes/generator.php';
30
+        }
31
+    }
32 32
 
33
-	/**
34
-	 * Register the service provider.
35
-	 *
36
-	 * @return void
37
-	 */
38
-	public function register()
39
-	{
40
-		$this->app->singleton('scaffolder.command.generate', function ($app)
41
-		{
42
-			return new GeneratorCommand();
43
-		});
33
+    /**
34
+     * Register the service provider.
35
+     *
36
+     * @return void
37
+     */
38
+    public function register()
39
+    {
40
+        $this->app->singleton('scaffolder.command.generate', function ($app)
41
+        {
42
+            return new GeneratorCommand();
43
+        });
44 44
 
45
-		$this->app->singleton('scaffolder.command.cache.clear', function ()
46
-		{
47
-			return new ClearCacheCommand();
48
-		});
45
+        $this->app->singleton('scaffolder.command.cache.clear', function ()
46
+        {
47
+            return new ClearCacheCommand();
48
+        });
49 49
 
50
-		$this->app->singleton('scaffolder.command.build', function ()
51
-		{
52
-			return new BuildCommand();
53
-		});
50
+        $this->app->singleton('scaffolder.command.build', function ()
51
+        {
52
+            return new BuildCommand();
53
+        });
54 54
 
55
-		$this->app->singleton('scaffolder.command.serve', function ()
56
-		{
57
-			return new ServeCommand();
58
-		});
55
+        $this->app->singleton('scaffolder.command.serve', function ()
56
+        {
57
+            return new ServeCommand();
58
+        });
59 59
 
60
-		$this->commands([
61
-			'scaffolder.command.generate',
62
-			'scaffolder.command.cache.clear',
63
-			'scaffolder.command.build',
64
-			'scaffolder.command.serve'
65
-		]);
66
-	}
60
+        $this->commands([
61
+            'scaffolder.command.generate',
62
+            'scaffolder.command.cache.clear',
63
+            'scaffolder.command.build',
64
+            'scaffolder.command.serve'
65
+        ]);
66
+    }
67 67
 
68
-	/**
69
-	 * Get the services provided by the provider.
70
-	 *
71
-	 * @return array
72
-	 */
73
-	public function provides()
74
-	{
75
-		return ['scaffolder.command.generate', 'scaffolder.command.cache.clear', 'scaffolder.command.serve', 'scaffolder.command.build'];
76
-	}
68
+    /**
69
+     * Get the services provided by the provider.
70
+     *
71
+     * @return array
72
+     */
73
+    public function provides()
74
+    {
75
+        return ['scaffolder.command.generate', 'scaffolder.command.cache.clear', 'scaffolder.command.serve', 'scaffolder.command.build'];
76
+    }
77 77
 }
78 78
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Support/Directory.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class Directory
8 8
 {
9
-	public static function createIfNotExists($path, $mode = 0755, $recursive = false, $force = false)
10
-	{
11
-		if (!File::isDirectory($path))
12
-		{
13
-			File::makeDirectory($path, $mode, $recursive , $force );
14
-		}
15
-	}
9
+    public static function createIfNotExists($path, $mode = 0755, $recursive = false, $force = false)
10
+    {
11
+        if (!File::isDirectory($path))
12
+        {
13
+            File::makeDirectory($path, $mode, $recursive , $force );
14
+        }
15
+    }
16 16
 
17 17
 
18 18
 }
Please login to merge, or discard this patch.
src/Scaffolder/Support/Validator.php 1 patch
Indentation   +92 added lines, -92 removed lines patch added patch discarded remove patch
@@ -7,104 +7,104 @@
 block discarded – undo
7 7
 
8 8
 class Validator
9 9
 {
10
-	/**
11
-	 * Parse a string based rule.
12
-	 *
13
-	 * @param  string  $rules
14
-	 * @return array
15
-	 */
16
-	public static function parseStringRule($rules)
17
-	{
18
-		$parameters = [];
19
-
20
-		// The format for specifying validation rules and parameters follows an
21
-		// easy {rule}:{parameters} formatting convention. For instance the
22
-		// rule "Max:3" states that the value may only be three letters.
23
-		if (strpos($rules, ':') !== false) {
24
-			list($rules, $parameter) = explode(':', $rules, 2);
25
-
26
-			$parameters = self::parseParameters($rules, $parameter);
27
-		}
28
-
29
-		return [(trim($rules)), $parameters];
30
-	}
31
-
32
-	/**
33
-	 * Parse a parameter list.
34
-	 *
35
-	 * @param  string  $rule
36
-	 * @param  string  $parameter
37
-	 * @return array
38
-	 */
39
-	public static function parseParameters($rule, $parameter)
40
-	{
41
-		if (strtolower($rule) == 'regex') {
42
-			return [$parameter];
43
-		}
44
-
45
-		return str_getcsv($parameter);
46
-	}
47
-
48
-	/**
49
-	 * Explode the rules into an array of rules.
50
-	 *
51
-	 * @param  string  $rules
52
-	 * @return array
53
-	 */
54
-	public static function explodeRule($rule)
55
-	{
56
-		return explode('|', $rule);
57
-	}
58
-
59
-	/**
60
-	 * Convert laravel validations to theme validation angular js.
61
-	 *
62
-	 * @param  string  $validations
63
-	 * @return array
64
-	 */
65
-	public static function convertValidations($validations, $blnSearch = false){
66
-		$validationsConverted = [];
67
-		foreach (self::explodeRule($validations) as $validation) {
68
-			$validation = self::parseStringRule($validation);
69
-
70
-			if(isset($validation[0])){	
71
-
72
-				$rule = $validation[0];
73
-				$values = $validation[1];
74
-
75
-				switch ($rule) {
76
-					case 'required':
77
-						if($blnSearch) {
78
-							$attribute = null ;
79
-							$attributeValue = null ;
80
-						}
81
-						else {
82
-							$attribute = "required" ;
83
-							$attributeValue = null ;
84
-						}
10
+    /**
11
+     * Parse a string based rule.
12
+     *
13
+     * @param  string  $rules
14
+     * @return array
15
+     */
16
+    public static function parseStringRule($rules)
17
+    {
18
+        $parameters = [];
19
+
20
+        // The format for specifying validation rules and parameters follows an
21
+        // easy {rule}:{parameters} formatting convention. For instance the
22
+        // rule "Max:3" states that the value may only be three letters.
23
+        if (strpos($rules, ':') !== false) {
24
+            list($rules, $parameter) = explode(':', $rules, 2);
25
+
26
+            $parameters = self::parseParameters($rules, $parameter);
27
+        }
28
+
29
+        return [(trim($rules)), $parameters];
30
+    }
31
+
32
+    /**
33
+     * Parse a parameter list.
34
+     *
35
+     * @param  string  $rule
36
+     * @param  string  $parameter
37
+     * @return array
38
+     */
39
+    public static function parseParameters($rule, $parameter)
40
+    {
41
+        if (strtolower($rule) == 'regex') {
42
+            return [$parameter];
43
+        }
44
+
45
+        return str_getcsv($parameter);
46
+    }
47
+
48
+    /**
49
+     * Explode the rules into an array of rules.
50
+     *
51
+     * @param  string  $rules
52
+     * @return array
53
+     */
54
+    public static function explodeRule($rule)
55
+    {
56
+        return explode('|', $rule);
57
+    }
58
+
59
+    /**
60
+     * Convert laravel validations to theme validation angular js.
61
+     *
62
+     * @param  string  $validations
63
+     * @return array
64
+     */
65
+    public static function convertValidations($validations, $blnSearch = false){
66
+        $validationsConverted = [];
67
+        foreach (self::explodeRule($validations) as $validation) {
68
+            $validation = self::parseStringRule($validation);
69
+
70
+            if(isset($validation[0])){	
71
+
72
+                $rule = $validation[0];
73
+                $values = $validation[1];
74
+
75
+                switch ($rule) {
76
+                    case 'required':
77
+                        if($blnSearch) {
78
+                            $attribute = null ;
79
+                            $attributeValue = null ;
80
+                        }
81
+                        else {
82
+                            $attribute = "required" ;
83
+                            $attributeValue = null ;
84
+                        }
85 85
 						
86
-						break;
86
+                        break;
87 87
 
88
-					case 'max':
89
-					case 'min':
90
-						$attribute = $rule.'length' ;
91
-						$attributeValue = $values[0] ;
92
-						break;
88
+                    case 'max':
89
+                    case 'min':
90
+                        $attribute = $rule.'length' ;
91
+                        $attributeValue = $values[0] ;
92
+                        break;
93 93
 					
94
-					default:
95
-						$attribute = null  ;
96
-						$attributeValue = null ;
97
-						break;
98
-				}
94
+                    default:
95
+                        $attribute = null  ;
96
+                        $attributeValue = null ;
97
+                        break;
98
+                }
99 99
 
100
-				if($attribute)
101
-					$validationsConverted[$attribute] = $attributeValue ;
100
+                if($attribute)
101
+                    $validationsConverted[$attribute] = $attributeValue ;
102 102
 
103
-			}
103
+            }
104 104
 			
105
-		}
105
+        }
106 106
 
107
-		return $validationsConverted ;
108
-	}
107
+        return $validationsConverted ;
108
+    }
109 109
 
110 110
 }
111 111
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Support/CamelCase.php 1 patch
Indentation   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -4,70 +4,70 @@
 block discarded – undo
4 4
 
5 5
 class CamelCase
6 6
 {
7
-	/**
8
-	 * Given an underscore_separated_string, this will convert the string
9
-	 * to CamelCaseNotation.  Note that this will ignore any casing in the
10
-	 * underscore separated string.
11
-	 * 
12
-	 * @param string $strString
13
-	 * @return string
14
-	 */
15
-	public static function convertToCamelCase($strString) {
16
-		return str_replace(' ', '', ucwords(str_replace('_', ' ', strtolower($strString))));
17
-	}
7
+    /**
8
+     * Given an underscore_separated_string, this will convert the string
9
+     * to CamelCaseNotation.  Note that this will ignore any casing in the
10
+     * underscore separated string.
11
+     * 
12
+     * @param string $strString
13
+     * @return string
14
+     */
15
+    public static function convertToCamelCase($strString) {
16
+        return str_replace(' ', '', ucwords(str_replace('_', ' ', strtolower($strString))));
17
+    }
18 18
     
19
-	public static function underscoreFromCamelCase($strName) {
20
-		if (strlen($strName) == 0) return '';
19
+    public static function underscoreFromCamelCase($strName) {
20
+        if (strlen($strName) == 0) return '';
21 21
 
22
-		$strToReturn = self::FirstCharacter($strName);
22
+        $strToReturn = self::FirstCharacter($strName);
23 23
 
24
-		for ($intIndex = 1; $intIndex < strlen($strName); $intIndex++) {
25
-			$strChar = substr($strName, $intIndex, 1);
26
-			if (strtoupper($strChar) == $strChar)
27
-				$strToReturn .= '_' . $strChar;
28
-			else
29
-				$strToReturn .= $strChar;
30
-		}
24
+        for ($intIndex = 1; $intIndex < strlen($strName); $intIndex++) {
25
+            $strChar = substr($strName, $intIndex, 1);
26
+            if (strtoupper($strChar) == $strChar)
27
+                $strToReturn .= '_' . $strChar;
28
+            else
29
+                $strToReturn .= $strChar;
30
+        }
31 31
 		
32
-		return strtolower($strToReturn);
33
-	}   
32
+        return strtolower($strToReturn);
33
+    }   
34 34
 
35
-	/**
36
-	 * Returns the first character of a given string, or null if the given
37
-	 * string is null.
38
-	 * @param string $strString 
39
-	 * @return string the first character, or null
40
-	 */
41
-	public final static function firstCharacter($strString) {
42
-		if (strlen($strString) > 0)
43
-			return substr($strString, 0 , 1);
44
-		else
45
-			return null;
46
-	}    
35
+    /**
36
+     * Returns the first character of a given string, or null if the given
37
+     * string is null.
38
+     * @param string $strString 
39
+     * @return string the first character, or null
40
+     */
41
+    public final static function firstCharacter($strString) {
42
+        if (strlen($strString) > 0)
43
+            return substr($strString, 0 , 1);
44
+        else
45
+            return null;
46
+    }    
47 47
 
48 48
 
49
-	public static function pluralize($strName) {
50
-			// Special Rules go Here
51
-			switch (true) {	
52
-				case (strtolower($strName) == 'play'):
53
-					return $strName . 's';
54
-			}
49
+    public static function pluralize($strName) {
50
+            // Special Rules go Here
51
+            switch (true) {	
52
+                case (strtolower($strName) == 'play'):
53
+                    return $strName . 's';
54
+            }
55 55
 
56
-			$intLength = strlen($strName);
57
-			if (substr($strName, $intLength - 1) == "y")
58
-				return substr($strName, 0, $intLength - 1) . "ies";
59
-			if (substr($strName, $intLength - 1) == "s")
60
-				return $strName . "es";
61
-			if (substr($strName, $intLength - 1) == "x")
62
-				return $strName . "es";
63
-			if (substr($strName, $intLength - 1) == "z")
64
-				return $strName . "zes";
65
-			if (substr($strName, $intLength - 2) == "sh")
66
-				return $strName . "es";
67
-			if (substr($strName, $intLength - 2) == "ch")
68
-				return $strName . "es";
56
+            $intLength = strlen($strName);
57
+            if (substr($strName, $intLength - 1) == "y")
58
+                return substr($strName, 0, $intLength - 1) . "ies";
59
+            if (substr($strName, $intLength - 1) == "s")
60
+                return $strName . "es";
61
+            if (substr($strName, $intLength - 1) == "x")
62
+                return $strName . "es";
63
+            if (substr($strName, $intLength - 1) == "z")
64
+                return $strName . "zes";
65
+            if (substr($strName, $intLength - 2) == "sh")
66
+                return $strName . "es";
67
+            if (substr($strName, $intLength - 2) == "ch")
68
+                return $strName . "es";
69 69
 
70
-			return $strName . "s";
71
-		}
70
+            return $strName . "s";
71
+        }
72 72
 	
73 73
 }
74 74
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Support/Arrays.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -4,29 +4,29 @@
 block discarded – undo
4 4
 
5 5
 class Arrays
6 6
 {
7
-	public static function moveElement($array, $toMove, $targetIndex) {
8
-		if (count($array) == 1)
9
-			return $array;
10
-		if (is_int($toMove)) {
11
-			$tmp = array_splice($array, $toMove, 1);
12
-			array_splice($array, $targetIndex, 0, $tmp);
13
-			$output = $array;
14
-		}
15
-		elseif (is_string($toMove)) {
16
-			$indexToMove = array_search($toMove, array_keys($array));
17
-			$itemToMove = $array[$toMove];
18
-			array_splice($array, $indexToMove, 1);
19
-			$i = 0;
20
-			$output = Array();
21
-			foreach($array as $key => $item) {
22
-				if ($i == $targetIndex) {
23
-					$output[$toMove] = $itemToMove;
24
-				}
25
-				$output[$key] = $item;
26
-				$i++;
27
-			}
28
-		}
29
-		return $output;
30
-	}
7
+    public static function moveElement($array, $toMove, $targetIndex) {
8
+        if (count($array) == 1)
9
+            return $array;
10
+        if (is_int($toMove)) {
11
+            $tmp = array_splice($array, $toMove, 1);
12
+            array_splice($array, $targetIndex, 0, $tmp);
13
+            $output = $array;
14
+        }
15
+        elseif (is_string($toMove)) {
16
+            $indexToMove = array_search($toMove, array_keys($array));
17
+            $itemToMove = $array[$toMove];
18
+            array_splice($array, $indexToMove, 1);
19
+            $i = 0;
20
+            $output = Array();
21
+            foreach($array as $key => $item) {
22
+                if ($i == $targetIndex) {
23
+                    $output[$toMove] = $itemToMove;
24
+                }
25
+                $output[$key] = $item;
26
+                $i++;
27
+            }
28
+        }
29
+        return $output;
30
+    }
31 31
 }
32 32
 
Please login to merge, or discard this patch.
src/Scaffolder/Commands/BuildCommand.php 1 patch
Indentation   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -13,60 +13,60 @@
 block discarded – undo
13 13
 
14 14
 class BuildCommand extends Command
15 15
 {
16
-	protected $signature = 'scaffolder:build {app=webapp}';
16
+    protected $signature = 'scaffolder:build {app=webapp}';
17 17
 
18
-	protected $description = 'Build the generated code to public folder';
18
+    protected $description = 'Build the generated code to public folder';
19 19
 
20
-	/**
21
-	 * Execute the Command.
22
-	 */
23
-	public function handle()
24
-	{
20
+    /**
21
+     * Execute the Command.
22
+     */
23
+    public function handle()
24
+    {
25 25
 
26 26
 
27
-		switch ($this->argument('app')) {
28
-			case 'webapp':
27
+        switch ($this->argument('app')) {
28
+            case 'webapp':
29 29
 				
30
-				$this->cleanPublicFolder();
30
+                $this->cleanPublicFolder();
31 31
 
32
-				$gulpCommand = sprintf('gulp build --cwd "%s/codificar/scaffolder-theme-material/"', base_path('vendor'));
32
+                $gulpCommand = sprintf('gulp build --cwd "%s/codificar/scaffolder-theme-material/"', base_path('vendor'));
33 33
 
34
-				//$this->info('- gulpCommand: '. $gulpCommand);	
34
+                //$this->info('- gulpCommand: '. $gulpCommand);	
35 35
 
36
-				$handle = popen($gulpCommand, 'r');
36
+                $handle = popen($gulpCommand, 'r');
37 37
 
38
-				while(!feof($handle)) 
39
-				{ 
40
-					// send the current file part to the browser 
41
-					$this->info(fread($handle, 1024)); 
42
-				} 
38
+                while(!feof($handle)) 
39
+                { 
40
+                    // send the current file part to the browser 
41
+                    $this->info(fread($handle, 1024)); 
42
+                } 
43 43
 
44
-				fclose($handle); 
44
+                fclose($handle); 
45 45
 				
46
-				// php artisan serve
47
-				$this->call('serve');
46
+                // php artisan serve
47
+                $this->call('serve');
48 48
 
49
-				break;
49
+                break;
50 50
 
51
-			default:
52
-				$this->info('Invalid arguments');
53
-				break;
54
-		}
51
+            default:
52
+                $this->info('Invalid arguments');
53
+                break;
54
+        }
55 55
 		
56
-	}
56
+    }
57 57
 
58
-	private function cleanPublicFolder(){
59
-		$this->info('Cleaning public directory');
58
+    private function cleanPublicFolder(){
59
+        $this->info('Cleaning public directory');
60 60
 
61
-		File::deleteDirectory(sprintf("%s/app", base_path('public')));
62
-		File::deleteDirectory(sprintf("%s/assets", base_path('public')));
63
-		File::deleteDirectory(sprintf("%s/fonts", base_path('public')));
64
-		File::deleteDirectory(sprintf("%s/maps", base_path('public')));
65
-		File::deleteDirectory(sprintf("%s/scripts", base_path('public')));
66
-		File::deleteDirectory(sprintf("%s/styles", base_path('public')));
61
+        File::deleteDirectory(sprintf("%s/app", base_path('public')));
62
+        File::deleteDirectory(sprintf("%s/assets", base_path('public')));
63
+        File::deleteDirectory(sprintf("%s/fonts", base_path('public')));
64
+        File::deleteDirectory(sprintf("%s/maps", base_path('public')));
65
+        File::deleteDirectory(sprintf("%s/scripts", base_path('public')));
66
+        File::deleteDirectory(sprintf("%s/styles", base_path('public')));
67 67
 
68
-		File::delete(sprintf("%s/index.html", base_path('public')));
69
-	}
68
+        File::delete(sprintf("%s/index.html", base_path('public')));
69
+    }
70 70
 
71 71
 
72 72
 }
73 73
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Commands/ServeCommand.php 1 patch
Indentation   +104 added lines, -104 removed lines patch added patch discarded remove patch
@@ -17,143 +17,143 @@
 block discarded – undo
17 17
 
18 18
 class ServeCommand extends Command
19 19
 {
20
-	protected $signature = 'scaffolder:serve {app=webapp} {--o|overwrite : Overwrite generated files} {--g|generate : Generate files }';
20
+    protected $signature = 'scaffolder:serve {app=webapp} {--o|overwrite : Overwrite generated files} {--g|generate : Generate files }';
21 21
 
22
-	protected $description = 'Serve code for development purpose';
22
+    protected $description = 'Serve code for development purpose';
23 23
 
24
-	// app config var
25
-	private $scaffolderConfig ;
24
+    // app config var
25
+    private $scaffolderConfig ;
26 26
 
27
-	/**
28
-	 * Execute the Command.
29
-	 */
30
-	public function handle()
31
-	{
32
-		// Get app config
33
-		$this->getScaffolderConfig();
27
+    /**
28
+     * Execute the Command.
29
+     */
30
+    public function handle()
31
+    {
32
+        // Get app config
33
+        $this->getScaffolderConfig();
34 34
 
35
-		$overwrite = false;
35
+        $overwrite = false;
36 36
 
37
-		if($this->option('overwrite'))
38
-			$overwrite = true;
37
+        if($this->option('overwrite'))
38
+            $overwrite = true;
39 39
 
40
-		$generate = false;
40
+        $generate = false;
41 41
 
42
-		if($this->option('generate'))
43
-			$generate = true;
42
+        if($this->option('generate'))
43
+            $generate = true;
44 44
 
45 45
 
46
-		switch ($this->argument('app')) {
47
-			case 'webapp':
46
+        switch ($this->argument('app')) {
47
+            case 'webapp':
48 48
 				
49
-				// gera código somente se houver a opcao
50
-				if($generate) {
51
-					// Gera codigo da api
52
-					$this->call('scaffolder:generate', array('app' => 'api', '-c' => 'clear-all'));
49
+                // gera código somente se houver a opcao
50
+                if($generate) {
51
+                    // Gera codigo da api
52
+                    $this->call('scaffolder:generate', array('app' => 'api', '-c' => 'clear-all'));
53 53
 					
54
-					// Se parametro --overwrite selecionado, copia arquivos para seu respectivo destino
55
-					$this->copyApiFiles($overwrite);
54
+                    // Se parametro --overwrite selecionado, copia arquivos para seu respectivo destino
55
+                    $this->copyApiFiles($overwrite);
56 56
 					
57
-					// Gera codigo da pasta webapp
58
-					$this->call('scaffolder:generate', array('app' => 'angularjs', '-c' => 'clear-all'));
57
+                    // Gera codigo da pasta webapp
58
+                    $this->call('scaffolder:generate', array('app' => 'angularjs', '-c' => 'clear-all'));
59 59
 					
60
-					// Se parametro --overwrite selecionado, copia arquivos para seu respectivo destino
61
-					$this->copyAngularjsFiles($overwrite);
62
-				}
60
+                    // Se parametro --overwrite selecionado, copia arquivos para seu respectivo destino
61
+                    $this->copyAngularjsFiles($overwrite);
62
+                }
63 63
 				
64
-				$gulpCommand = sprintf('gulp serve --cwd "%s/codificar/scaffolder-theme-material/" > null', base_path('vendor'));
64
+                $gulpCommand = sprintf('gulp serve --cwd "%s/codificar/scaffolder-theme-material/" > null', base_path('vendor'));
65 65
 
66
-				$this->info('Running gulp in serve mode, wait your browser open...');	
67
-				//$handle = popen($gulpCommand, 'r');
66
+                $this->info('Running gulp in serve mode, wait your browser open...');	
67
+                //$handle = popen($gulpCommand, 'r');
68 68
 
69
-				$this->launchBackgroundProcess($gulpCommand);
69
+                $this->launchBackgroundProcess($gulpCommand);
70 70
 				
71
-				// php artisan serve
72
-				$this->call('serve');
71
+                // php artisan serve
72
+                $this->call('serve');
73 73
 
74
-				break;
74
+                break;
75 75
 
76
-			default:
77
-				$this->info('Invalid arguments');
78
-				break;
79
-		}
76
+            default:
77
+                $this->info('Invalid arguments');
78
+                break;
79
+        }
80 80
 		
81
-	}
82
-
83
-	/**
84
-	* Launch Background Process
85
-	*
86
-	* Launches a background process (note, provides no security itself, $call must be sanitized prior to use)
87
-	* @param string $call the system call to make
88
-	* @author raccettura
89
-	*/
90
-	private function launchBackgroundProcess($call) {
81
+    }
82
+
83
+    /**
84
+     * Launch Background Process
85
+     *
86
+     * Launches a background process (note, provides no security itself, $call must be sanitized prior to use)
87
+     * @param string $call the system call to make
88
+     * @author raccettura
89
+     */
90
+    private function launchBackgroundProcess($call) {
91 91
 	 
92
-		// Windows
93
-		if($this->is_windows()){
94
-			pclose(popen('start /b '.$call, 'r'));
95
-		}
92
+        // Windows
93
+        if($this->is_windows()){
94
+            pclose(popen('start /b '.$call, 'r'));
95
+        }
96 96
 	 
97
-		// Some sort of UNIX
98
-		else {
99
-			pclose(popen($call.' /dev/null &', 'r'));
100
-		}
101
-		return true;
102
-	}
97
+        // Some sort of UNIX
98
+        else {
99
+            pclose(popen($call.' /dev/null &', 'r'));
100
+        }
101
+        return true;
102
+    }
103 103
 	 
104 104
 	 
105
-	/**
106
-	* Is Windows
107
-	*
108
-	* Tells if we are running on Windows Platform
109
-	* @author raccettura
110
-	*/
111
-	private function is_windows(){
112
-		if(PHP_OS == 'WINNT' || PHP_OS == 'WIN32'){
113
-			return true;
114
-		}
115
-		return false;
116
-	}
117
-
118
-
119
-	public function copyApiFiles($overwrite) {
120
-
121
-		$command = sprintf('cp -r %s "%s/." "%s"', 
122
-			(!$overwrite ? ' -u' : null) , 
123
-			PathParser::parse($this->scaffolderConfig->generators->api->paths->base),
124
-			base_path());
105
+    /**
106
+     * Is Windows
107
+     *
108
+     * Tells if we are running on Windows Platform
109
+     * @author raccettura
110
+     */
111
+    private function is_windows(){
112
+        if(PHP_OS == 'WINNT' || PHP_OS == 'WIN32'){
113
+            return true;
114
+        }
115
+        return false;
116
+    }
117
+
118
+
119
+    public function copyApiFiles($overwrite) {
120
+
121
+        $command = sprintf('cp -r %s "%s/." "%s"', 
122
+            (!$overwrite ? ' -u' : null) , 
123
+            PathParser::parse($this->scaffolderConfig->generators->api->paths->base),
124
+            base_path());
125 125
 		
126
-		shell_exec($command);
126
+        shell_exec($command);
127 127
 
128
-		$this->info('- Api files copied');	
129
-	}
128
+        $this->info('- Api files copied');	
129
+    }
130 130
 
131
-	public function copyAngularjsFiles($overwrite) {
131
+    public function copyAngularjsFiles($overwrite) {
132 132
 
133
-		// resource angular js path
134
-		Directory::createIfNotExists(PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->resources), 0755, true);
133
+        // resource angular js path
134
+        Directory::createIfNotExists(PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->resources), 0755, true);
135 135
 
136
-		// copying page files
137
-		$command = sprintf('cp -r %s "%s/." "%s/"', 
138
-			(!$overwrite ? ' -u' : null) , 
139
-			PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->index),
140
-			PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->resources));
136
+        // copying page files
137
+        $command = sprintf('cp -r %s "%s/." "%s/"', 
138
+            (!$overwrite ? ' -u' : null) , 
139
+            PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->index),
140
+            PathParser::parse($this->scaffolderConfig->generators->angularjs->paths->resources));
141 141
 
142
-		shell_exec($command);
142
+        shell_exec($command);
143 143
 		
144
-		$this->info('- Angularjs files copied');	
145
-	}
144
+        $this->info('- Angularjs files copied');	
145
+    }
146 146
 
147 147
 
148
-	/**
149
-	 * Get the app.json configuration and parse to an object
150
-	 *
151
-	 * @return void
152
-	 */
153
-	private function getScaffolderConfig(){
154
-		// Get app config
155
-		$this->scaffolderConfig = Json::decodeFile(base_path('scaffolder-config/app.json'));
148
+    /**
149
+     * Get the app.json configuration and parse to an object
150
+     *
151
+     * @return void
152
+     */
153
+    private function getScaffolderConfig(){
154
+        // Get app config
155
+        $this->scaffolderConfig = Json::decodeFile(base_path('scaffolder-config/app.json'));
156 156
 
157
-	}
157
+    }
158 158
 
159 159
 }
160 160
\ No newline at end of file
Please login to merge, or discard this patch.
src/Scaffolder/Commands/GeneratorCommand.php 1 patch
Indentation   +564 added lines, -564 removed lines patch added patch discarded remove patch
@@ -47,334 +47,334 @@  discard block
 block discarded – undo
47 47
 
48 48
 class GeneratorCommand extends Command
49 49
 {
50
-	protected $signature = 'scaffolder:generate {app=laravel} {--c|clear-all : Clears cache and drafts before generate}';
50
+    protected $signature = 'scaffolder:generate {app=laravel} {--c|clear-all : Clears cache and drafts before generate}';
51 51
 
52
-	protected $description = 'Scaffold an application';
52
+    protected $description = 'Scaffold an application';
53 53
 
54
-	protected $stubsDirectory;
54
+    protected $stubsDirectory;
55 55
 
56
-	public function __construct()
57
-	{
58
-		parent::__construct();
56
+    public function __construct()
57
+    {
58
+        parent::__construct();
59 59
 
60
-		$this->stubsDirectory = __DIR__ . '/../../../stubs/';
61
-	}
60
+        $this->stubsDirectory = __DIR__ . '/../../../stubs/';
61
+    }
62 62
 
63
-	/**
64
-	 * Execute the Command.
65
-	 * @return void
66
-	 */
67
-	public function handle()
68
-	{
69
-		// check if is to clear cache
70
-		if($this->option('clear-all')){
71
-			$this->call('scaffolder:clear');
72
-		}
63
+    /**
64
+     * Execute the Command.
65
+     * @return void
66
+     */
67
+    public function handle()
68
+    {
69
+        // check if is to clear cache
70
+        if($this->option('clear-all')){
71
+            $this->call('scaffolder:clear');
72
+        }
73 73
 
74
-		// Create drafs directory
75
-		Directory::createIfNotExists(base_path('drafts'));
74
+        // Create drafs directory
75
+        Directory::createIfNotExists(base_path('drafts'));
76 76
 
77
-		switch ($this->argument('app')) {
78
-			case 'api':
79
-				$this->handleApi();
80
-				break;
77
+        switch ($this->argument('app')) {
78
+            case 'api':
79
+                $this->handleApi();
80
+                break;
81 81
 
82
-			case 'angularjs':
83
-				$this->handleAngularJs();
84
-				break;
82
+            case 'angularjs':
83
+                $this->handleAngularJs();
84
+                break;
85 85
 
86
-			case 'ionic':
87
-				# code...
88
-				break;
86
+            case 'ionic':
87
+                # code...
88
+                break;
89 89
 
90
-			case 'android':
91
-				#TODO implement code...
92
-				break;
90
+            case 'android':
91
+                #TODO implement code...
92
+                break;
93 93
 
94
-			case 'ios':
95
-				#TODO implement code...
96
-				break;
94
+            case 'ios':
95
+                #TODO implement code...
96
+                break;
97 97
 			
98
-			case 'blade':
99
-				$this->handleBlade();
100
-				break;
98
+            case 'blade':
99
+                $this->handleBlade();
100
+                break;
101 101
 				
102
-			default:
103
-				$this->handleLaravel();
104
-				break;
105
-		}
102
+            default:
103
+                $this->handleLaravel();
104
+                break;
105
+        }
106 106
 
107 107
 		
108
-	}
109
-
110
-	/**
111
-	 * API Generation command for API files.  
112
-	 * @return void
113
-	 */
114
-	private function handleApi(){
115
-		// Get all the models
116
-		$modelsData = $this->getAllModelsData();
117
-
118
-		// Start progress bar
119
-		$this->output->progressStart(count($modelsData));
120
-
121
-		// Get app config
122
-		$scaffolderConfig = $this->getScaffolderConfig();
123
-
124
-		// Compiler output
125
-		$modelCompilerOutput = [];
126
-		$controllerCompilerOutput = [];
127
-		$migrationCompilerOutput = [];
128
-
129
-		// Sidenav links
130
-		$sidenavLinks = [];
131
-
132
-		// Compiled routes
133
-		$compiledRoutes = '';
134
-
135
-		// Create route compiler
136
-		$routeCompiler = new RouteCompiler($scaffolderConfig);
137
-
138
-		// Create models directory
139
-		Directory::createIfNotExists(app_path('Models'));
140
-
141
-		// Create drafts directory
142
-		// migrations
143
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->migrations), 0755, true);
144
-		// models
145
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->models), 0755, true);
146
-		// repositories
147
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->repositories), 0755, true);
148
-		// controllers
149
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->controllers), 0755, true);
150
-		// routes
151
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->routes), 0755, true);
108
+    }
109
+
110
+    /**
111
+     * API Generation command for API files.  
112
+     * @return void
113
+     */
114
+    private function handleApi(){
115
+        // Get all the models
116
+        $modelsData = $this->getAllModelsData();
117
+
118
+        // Start progress bar
119
+        $this->output->progressStart(count($modelsData));
120
+
121
+        // Get app config
122
+        $scaffolderConfig = $this->getScaffolderConfig();
123
+
124
+        // Compiler output
125
+        $modelCompilerOutput = [];
126
+        $controllerCompilerOutput = [];
127
+        $migrationCompilerOutput = [];
128
+
129
+        // Sidenav links
130
+        $sidenavLinks = [];
131
+
132
+        // Compiled routes
133
+        $compiledRoutes = '';
134
+
135
+        // Create route compiler
136
+        $routeCompiler = new RouteCompiler($scaffolderConfig);
137
+
138
+        // Create models directory
139
+        Directory::createIfNotExists(app_path('Models'));
140
+
141
+        // Create drafts directory
142
+        // migrations
143
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->migrations), 0755, true);
144
+        // models
145
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->models), 0755, true);
146
+        // repositories
147
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->repositories), 0755, true);
148
+        // controllers
149
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->controllers), 0755, true);
150
+        // routes
151
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->routes), 0755, true);
152 152
 		
153
-		// Iterate over models data
154
-		foreach ($modelsData as $modelData)
155
-		{
153
+        // Iterate over models data
154
+        foreach ($modelsData as $modelData)
155
+        {
156 156
 			
157
-			// Create Compilers
158
-			$stubModel = null;
159
-			$stubController = null;
157
+            // Create Compilers
158
+            $stubModel = null;
159
+            $stubController = null;
160 160
 			
161
-			if ($modelData->tableName == "file") {
162
-				$stubModel = 'Model/FileModel.php';
163
-				$stubController = 'Controller/FileController.php';
164
-			}
165
-
166
-			$modelCompiler = new ModelCompiler($scaffolderConfig, $modelData, $stubModel);
167
-			$migrationCompiler = new MigrationCompiler($scaffolderConfig, $modelData);
168
-			$controllerCompiler = new ControllerCompiler($scaffolderConfig, $modelData, $stubController);
169
-
170
-			// Compile stubs
171
-			array_push($modelCompilerOutput, $modelCompiler->compile());
172
-			array_push($controllerCompilerOutput, $controllerCompiler->compile());
173
-			array_push($migrationCompilerOutput, $migrationCompiler->compile());
161
+            if ($modelData->tableName == "file") {
162
+                $stubModel = 'Model/FileModel.php';
163
+                $stubController = 'Controller/FileController.php';
164
+            }
165
+
166
+            $modelCompiler = new ModelCompiler($scaffolderConfig, $modelData, $stubModel);
167
+            $migrationCompiler = new MigrationCompiler($scaffolderConfig, $modelData);
168
+            $controllerCompiler = new ControllerCompiler($scaffolderConfig, $modelData, $stubController);
169
+
170
+            // Compile stubs
171
+            array_push($modelCompilerOutput, $modelCompiler->compile());
172
+            array_push($controllerCompilerOutput, $controllerCompiler->compile());
173
+            array_push($migrationCompilerOutput, $migrationCompiler->compile());
174 174
 			
175
-			$compiledRoutes .= $routeCompiler->replaceResource($modelData);
176
-			//
177
-
178
-			// Add entity link
179
-			array_push($sidenavLinks, $modelData->modelName);
180
-
181
-			// Advance progress
182
-			$this->output->progressAdvance();
183
-		}
184
-
185
-		// Store compiled routes
186
-		$routeCompiler->compileGroup($compiledRoutes);
187
-
188
-		// Finish progress
189
-		$this->output->progressFinish();
190
-
191
-		// Summary
192
-		$this->comment('- Files created');
193
-
194
-		$this->comment('- - Controllers');
195
-		foreach ($controllerCompilerOutput as $controllerFile)
196
-		{
197
-			$this->info('- - - ' . $controllerFile);
198
-		}
199
-
200
-		$this->comment('- - Migrations');
201
-		foreach ($migrationCompilerOutput as $migrationFile)
202
-		{
203
-			$this->info('- - - ' . $migrationFile);
204
-		}
205
-
206
-		$this->comment('- - Models');
207
-		foreach ($modelCompilerOutput as $modelFile)
208
-		{
209
-			$this->info('- - - ' . $modelFile);
210
-		}
211
-	}
212
-
213
-	/**
214
-	 * Code Generation command for AngularJs Material design files.  
215
-	 * @return void
216
-	 */
217
-	private function handleAngularJs(){
218
-		// Get all the models
219
-		$modelsData = $this->getAllModelsData();
220
-
221
-		// Start progress bar
222
-		$this->output->progressStart((count($modelsData) * 2) + (count($modelsData) * 2 * 4) + 1);
223
-
224
-		// Get app config
225
-		$scaffolderConfig = $this->getScaffolderConfig();
226
-
227
-		// Compiler output
228
-		$resourceCompilerOutput = [];
229
-		$moduleCompilerOutput = [];
230
-		$translateCompilerOutput = [];
231
-		// register
232
-		$registerModuleCompilerOutput = [];
233
-		$registerControllerCompilerOutput = [];
234
-		$registerTemplateCompilerOutput = [];
175
+            $compiledRoutes .= $routeCompiler->replaceResource($modelData);
176
+            //
177
+
178
+            // Add entity link
179
+            array_push($sidenavLinks, $modelData->modelName);
180
+
181
+            // Advance progress
182
+            $this->output->progressAdvance();
183
+        }
184
+
185
+        // Store compiled routes
186
+        $routeCompiler->compileGroup($compiledRoutes);
187
+
188
+        // Finish progress
189
+        $this->output->progressFinish();
190
+
191
+        // Summary
192
+        $this->comment('- Files created');
193
+
194
+        $this->comment('- - Controllers');
195
+        foreach ($controllerCompilerOutput as $controllerFile)
196
+        {
197
+            $this->info('- - - ' . $controllerFile);
198
+        }
199
+
200
+        $this->comment('- - Migrations');
201
+        foreach ($migrationCompilerOutput as $migrationFile)
202
+        {
203
+            $this->info('- - - ' . $migrationFile);
204
+        }
205
+
206
+        $this->comment('- - Models');
207
+        foreach ($modelCompilerOutput as $modelFile)
208
+        {
209
+            $this->info('- - - ' . $modelFile);
210
+        }
211
+    }
212
+
213
+    /**
214
+     * Code Generation command for AngularJs Material design files.  
215
+     * @return void
216
+     */
217
+    private function handleAngularJs(){
218
+        // Get all the models
219
+        $modelsData = $this->getAllModelsData();
220
+
221
+        // Start progress bar
222
+        $this->output->progressStart((count($modelsData) * 2) + (count($modelsData) * 2 * 4) + 1);
223
+
224
+        // Get app config
225
+        $scaffolderConfig = $this->getScaffolderConfig();
226
+
227
+        // Compiler output
228
+        $resourceCompilerOutput = [];
229
+        $moduleCompilerOutput = [];
230
+        $translateCompilerOutput = [];
231
+        // register
232
+        $registerModuleCompilerOutput = [];
233
+        $registerControllerCompilerOutput = [];
234
+        $registerTemplateCompilerOutput = [];
235 235
 		
236
-		// list
237
-		$listModuleCompilerOutput = [];
238
-		$listControllerCompilerOutput = [];
239
-		$listTemplateCompilerOutput = [];
240
-		//$listDetailCompilerOutput = [];
241
-		//$listChooseColumnsCompilerOutput = [];
242
-
243
-		// Compiled indexes
244
-		$compiledIndexes = '';
236
+        // list
237
+        $listModuleCompilerOutput = [];
238
+        $listControllerCompilerOutput = [];
239
+        $listTemplateCompilerOutput = [];
240
+        //$listDetailCompilerOutput = [];
241
+        //$listChooseColumnsCompilerOutput = [];
242
+
243
+        // Compiled indexes
244
+        $compiledIndexes = '';
245 245
 	
246
-		// Create index compiler
247
-		$indexModuleCompiler = new IndexModuleCompiler($scaffolderConfig);
246
+        // Create index compiler
247
+        $indexModuleCompiler = new IndexModuleCompiler($scaffolderConfig);
248 248
 
249
-		$indexApiCompiler = new IndexApiCompiler($scaffolderConfig);
249
+        $indexApiCompiler = new IndexApiCompiler($scaffolderConfig);
250 250
 
251
-		// Create drafts directory
252
-		// pages
253
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->pages), 0755, true);
251
+        // Create drafts directory
252
+        // pages
253
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->pages), 0755, true);
254 254
 		
255
-		$intKey = 1;
256
-		// Iterate over models data
257
-		foreach ($modelsData as $modelData)
258
-		{
255
+        $intKey = 1;
256
+        // Iterate over models data
257
+        foreach ($modelsData as $modelData)
258
+        {
259 259
 			
260
-			// Create Compilers
261
-			$resourceCompiler = new ResourceCompiler($scaffolderConfig, $modelData);
262
-			$moduleCompiler = new ModuleCompiler($scaffolderConfig, $modelData);
263
-			// register
264
-			$registerModuleCompiler = new RegisterModuleCompiler($scaffolderConfig, $modelData);
265
-			$registerControllerCompiler = new RegisterControllerCompiler($scaffolderConfig, $modelData);
266
-			$registerTemplateCompiler = new RegisterTemplateCompiler($scaffolderConfig, $modelData);
267
-			// translate
268
-			$translateCompiler = new TranslateCompiler($scaffolderConfig, $modelData);
269
-			// list
270
-			$listModuleCompiler = new ListModuleCompiler($scaffolderConfig, $modelData);
271
-			$listControllerCompiler = new ListControllerCompiler($scaffolderConfig, $modelData);
272
-			$listTemplateCompiler = new ListTemplateCompiler($scaffolderConfig, $modelData);
273
-			//$listDetailCompiler = new ListDetailCompiler($scaffolderConfig, $modelData);
274
-			//$listChooseColumnsCompiler = new ListChooseColumnsCompiler($scaffolderConfig, $modelData);
260
+            // Create Compilers
261
+            $resourceCompiler = new ResourceCompiler($scaffolderConfig, $modelData);
262
+            $moduleCompiler = new ModuleCompiler($scaffolderConfig, $modelData);
263
+            // register
264
+            $registerModuleCompiler = new RegisterModuleCompiler($scaffolderConfig, $modelData);
265
+            $registerControllerCompiler = new RegisterControllerCompiler($scaffolderConfig, $modelData);
266
+            $registerTemplateCompiler = new RegisterTemplateCompiler($scaffolderConfig, $modelData);
267
+            // translate
268
+            $translateCompiler = new TranslateCompiler($scaffolderConfig, $modelData);
269
+            // list
270
+            $listModuleCompiler = new ListModuleCompiler($scaffolderConfig, $modelData);
271
+            $listControllerCompiler = new ListControllerCompiler($scaffolderConfig, $modelData);
272
+            $listTemplateCompiler = new ListTemplateCompiler($scaffolderConfig, $modelData);
273
+            //$listDetailCompiler = new ListDetailCompiler($scaffolderConfig, $modelData);
274
+            //$listChooseColumnsCompiler = new ListChooseColumnsCompiler($scaffolderConfig, $modelData);
275 275
 			
276
-			// Compile stubs
277
-			array_push($resourceCompilerOutput, $resourceCompiler->compile());
278
-			array_push($moduleCompilerOutput, $moduleCompiler->compile());
279
-			array_push($translateCompilerOutput, $translateCompiler->compile());
280
-			// register
281
-			array_push($registerModuleCompilerOutput, $registerModuleCompiler->compile());
282
-			array_push($registerControllerCompilerOutput, $registerControllerCompiler->compile());
283
-			array_push($registerTemplateCompilerOutput, $registerTemplateCompiler->compile());
284
-			// list
285
-			array_push($listModuleCompilerOutput, $listModuleCompiler->compile());
286
-			array_push($listControllerCompilerOutput, $listControllerCompiler->compile());
287
-			array_push($listTemplateCompilerOutput, $listTemplateCompiler->compile());
288
-			//array_push($listDetailCompilerOutput, $listDetailCompiler->compile());
289
-			//array_push($listChooseColumnsCompilerOutput, $listChooseColumnsCompiler->compile());
290
-
291
-			$compiledIndexes .= $indexModuleCompiler->replaceResource($modelData);
292
-			if ($intKey < count($modelsData))
293
-				$compiledIndexes .= ",";
294
-
295
-			$intKey++;
296
-			// Advance progress
297
-			$this->output->progressAdvance();
298
-		}
299
-
300
-		// Store compiled indexes
301
-		$indexModuleCompiler->compileGroup($compiledIndexes);
276
+            // Compile stubs
277
+            array_push($resourceCompilerOutput, $resourceCompiler->compile());
278
+            array_push($moduleCompilerOutput, $moduleCompiler->compile());
279
+            array_push($translateCompilerOutput, $translateCompiler->compile());
280
+            // register
281
+            array_push($registerModuleCompilerOutput, $registerModuleCompiler->compile());
282
+            array_push($registerControllerCompilerOutput, $registerControllerCompiler->compile());
283
+            array_push($registerTemplateCompilerOutput, $registerTemplateCompiler->compile());
284
+            // list
285
+            array_push($listModuleCompilerOutput, $listModuleCompiler->compile());
286
+            array_push($listControllerCompilerOutput, $listControllerCompiler->compile());
287
+            array_push($listTemplateCompilerOutput, $listTemplateCompiler->compile());
288
+            //array_push($listDetailCompilerOutput, $listDetailCompiler->compile());
289
+            //array_push($listChooseColumnsCompilerOutput, $listChooseColumnsCompiler->compile());
290
+
291
+            $compiledIndexes .= $indexModuleCompiler->replaceResource($modelData);
292
+            if ($intKey < count($modelsData))
293
+                $compiledIndexes .= ",";
294
+
295
+            $intKey++;
296
+            // Advance progress
297
+            $this->output->progressAdvance();
298
+        }
299
+
300
+        // Store compiled indexes
301
+        $indexModuleCompiler->compileGroup($compiledIndexes);
302 302
 		
303
-		// store compiled api
304
-		$fileApi = $indexApiCompiler->compile();
303
+        // store compiled api
304
+        $fileApi = $indexApiCompiler->compile();
305 305
 
306
-		// Advance progress
307
-		$this->output->progressAdvance();
306
+        // Advance progress
307
+        $this->output->progressAdvance();
308 308
 	
309
-		// Finish progress
310
-		$this->output->progressFinish();
311
-
312
-		// Summary
313
-		$this->comment('- Files created');
314
-
315
-		$this->comment('- - Index Api');
316
-
317
-		$this->info('- - - ' . $fileApi);
318
-
319
-		$this->comment('- - Resources');
320
-		foreach ($resourceCompilerOutput as $file)
321
-		{
322
-			$this->info('- - - ' . $file);
323
-		}
324
-
325
-		$this->comment('- - Modules');
326
-		foreach ($moduleCompilerOutput as $file)
327
-		{
328
-			$this->info('- - - ' . $file);
329
-		}
330
-
331
-		$this->comment('- - Translate');
332
-		foreach ($translateCompilerOutput as $file)
333
-		{
334
-			$this->info('- - - ' . $file);
335
-		}
336
-
337
-		$this->comment('- - Register');
338
-
339
-		$this->comment('- - - Modules');
340
-		foreach ($registerModuleCompilerOutput as $file)
341
-		{
342
-			$this->info('- - - - ' . $file);
343
-		}
344
-
345
-		$this->comment('- - - Controllers');
346
-		foreach ($registerControllerCompilerOutput as $file)
347
-		{
348
-			$this->info('- - - - ' . $file);
349
-		}
350
-
351
-		$this->comment('- - - Templates');
352
-		foreach ($registerTemplateCompilerOutput as $file)
353
-		{
354
-			$this->info('- - - - ' . $file);
355
-		}
356
-
357
-		$this->comment('- - List');
358
-
359
-		$this->comment('- - - Modules');
360
-		foreach ($listModuleCompilerOutput as $file)
361
-		{
362
-			$this->info('- - - - ' . $file);
363
-		}
364
-
365
-
366
-		$this->comment('- - - Controllers');
367
-		foreach ($listControllerCompilerOutput as $file)
368
-		{
369
-			$this->info('- - - - ' . $file);
370
-		}
371
-
372
-		$this->comment('- - - Templates');
373
-		foreach ($listTemplateCompilerOutput as $file)
374
-		{
375
-			$this->info('- - - - ' . $file);
376
-		}
377
-		/*
309
+        // Finish progress
310
+        $this->output->progressFinish();
311
+
312
+        // Summary
313
+        $this->comment('- Files created');
314
+
315
+        $this->comment('- - Index Api');
316
+
317
+        $this->info('- - - ' . $fileApi);
318
+
319
+        $this->comment('- - Resources');
320
+        foreach ($resourceCompilerOutput as $file)
321
+        {
322
+            $this->info('- - - ' . $file);
323
+        }
324
+
325
+        $this->comment('- - Modules');
326
+        foreach ($moduleCompilerOutput as $file)
327
+        {
328
+            $this->info('- - - ' . $file);
329
+        }
330
+
331
+        $this->comment('- - Translate');
332
+        foreach ($translateCompilerOutput as $file)
333
+        {
334
+            $this->info('- - - ' . $file);
335
+        }
336
+
337
+        $this->comment('- - Register');
338
+
339
+        $this->comment('- - - Modules');
340
+        foreach ($registerModuleCompilerOutput as $file)
341
+        {
342
+            $this->info('- - - - ' . $file);
343
+        }
344
+
345
+        $this->comment('- - - Controllers');
346
+        foreach ($registerControllerCompilerOutput as $file)
347
+        {
348
+            $this->info('- - - - ' . $file);
349
+        }
350
+
351
+        $this->comment('- - - Templates');
352
+        foreach ($registerTemplateCompilerOutput as $file)
353
+        {
354
+            $this->info('- - - - ' . $file);
355
+        }
356
+
357
+        $this->comment('- - List');
358
+
359
+        $this->comment('- - - Modules');
360
+        foreach ($listModuleCompilerOutput as $file)
361
+        {
362
+            $this->info('- - - - ' . $file);
363
+        }
364
+
365
+
366
+        $this->comment('- - - Controllers');
367
+        foreach ($listControllerCompilerOutput as $file)
368
+        {
369
+            $this->info('- - - - ' . $file);
370
+        }
371
+
372
+        $this->comment('- - - Templates');
373
+        foreach ($listTemplateCompilerOutput as $file)
374
+        {
375
+            $this->info('- - - - ' . $file);
376
+        }
377
+        /*
378 378
 		$this->comment('- - - Detail Dialog');
379 379
 		foreach ($listDetailCompilerOutput as $file)
380 380
 		{
@@ -388,296 +388,296 @@  discard block
 block discarded – undo
388 388
 		}
389 389
 		*/
390 390
 		
391
-	}
392
-
393
-	/**
394
-	 * Generation command for Blade. 
395
-	 * Generates Blade templates
396
-	 * @return void
397
-	 */
398
-	private function handleBlade(){
399
-		// Get all the models
400
-		$modelsData = $this->getAllModelsData();
401
-
402
-		// Start progress bar
403
-		$this->output->progressStart(count($modelsData));
404
-
405
-		// Get app config
406
-		$scaffolderConfig = $this->getScaffolderConfig();
407
-
408
-		// Compilers
409
-		$indexViewCompiler = new IndexViewCompiler();
410
-		$createViewCompiler = new CreateViewCompiler();
411
-		$editViewCompiler = new EditViewCompiler();
412
-		$pageLayoutViewCompiler = new PageLayoutCompiler();
413
-
414
-		// Compiler output
415
-		$viewCompilerOutput = [];
391
+    }
392
+
393
+    /**
394
+     * Generation command for Blade. 
395
+     * Generates Blade templates
396
+     * @return void
397
+     */
398
+    private function handleBlade(){
399
+        // Get all the models
400
+        $modelsData = $this->getAllModelsData();
401
+
402
+        // Start progress bar
403
+        $this->output->progressStart(count($modelsData));
404
+
405
+        // Get app config
406
+        $scaffolderConfig = $this->getScaffolderConfig();
407
+
408
+        // Compilers
409
+        $indexViewCompiler = new IndexViewCompiler();
410
+        $createViewCompiler = new CreateViewCompiler();
411
+        $editViewCompiler = new EditViewCompiler();
412
+        $pageLayoutViewCompiler = new PageLayoutCompiler();
413
+
414
+        // Compiler output
415
+        $viewCompilerOutput = [];
416 416
 		
417
-		// Sidenav links
418
-		$sidenavLinks = [];
417
+        // Sidenav links
418
+        $sidenavLinks = [];
419 419
 
420
-		// Compiled routes
421
-		$compiledRoutes = '';
420
+        // Compiled routes
421
+        $compiledRoutes = '';
422 422
 
423
-		// Get stubs
424
-		$indexViewStub = File::get($this->themeViews->getIndexPath());
425
-		$createViewStub = File::get($this->themeViews->getCreatePath());
426
-		$editViewStub = File::get($this->themeViews->getEditPath());
423
+        // Get stubs
424
+        $indexViewStub = File::get($this->themeViews->getIndexPath());
425
+        $createViewStub = File::get($this->themeViews->getCreatePath());
426
+        $editViewStub = File::get($this->themeViews->getEditPath());
427 427
 	
428
-		// views
429
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->views), 0755, true);
430
-		// layouts
431
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->layouts), 0755, true);
432
-		// assets
433
-		Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->assets), 0755, true);
428
+        // views
429
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->views), 0755, true);
430
+        // layouts
431
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->layouts), 0755, true);
432
+        // assets
433
+        Directory::createIfNotExists(PathParser::parse($scaffolderConfig->generator->paths->assets), 0755, true);
434 434
 	
435 435
 		
436
-		// Iterate over model files
437
-		foreach ($modelsData as $modelData)
438
-		{
439
-			// Get model name
440
-			$modelName = $modelData->modelName;
441
-
442
-			// Create views directory
443
-			Directory::createIfNotExists(base_path('resources/views/' . strtolower($modelName)));
444
-
445
-			//set hash
446
-			$modelHash = $modelData->modelHash;
447
-
448
-
449
-			// Compile stubs
450
-			array_push($viewCompilerOutput, $indexViewCompiler->compile($indexViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
451
-			array_push($viewCompilerOutput, $createViewCompiler->compile($createViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
452
-			array_push($viewCompilerOutput, $editViewCompiler->compile($editViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
453
-			// Add entity link
454
-			array_push($sidenavLinks, $modelName);
455
-
456
-			// Advance progress
457
-			$this->output->progressAdvance();
458
-		}
459
-
460
-		// Create layouts directory
461
-		Directory::createIfNotExists(base_path('resources/views/layouts'), 0755, true);
462
-
463
-		// Store compiled page layout
464
-		array_push($viewCompilerOutput, $pageLayoutViewCompiler->compile(File::get($this->themeLayouts->getPagePath()), null, null, $scaffolderConfig, null, ['links' => $sidenavLinks]));
465
-
466
-		// Store create layout
467
-		$createLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/create.blade.php' ;
468
-		File::copy($this->themeLayouts->getCreatePath(), $createLayout);
469
-		array_push($viewCompilerOutput, $createLayout);
470
-
471
-		// Store edit layout
472
-		$editLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/edit.blade.php' ;
473
-		File::copy($this->themeLayouts->getCreatePath(), $editLayout);
474
-		array_push($viewCompilerOutput, $editLayout);
475
-
476
-		// Store dashboard
477
-		$dashboardLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/dashboard.blade.php' ;
478
-		File::copy($this->themeLayouts->getCreatePath(), $dashboardLayout);
479
-		array_push($viewCompilerOutput, $dashboardLayout);
480
-
481
-		// Finish progress
482
-		$this->output->progressFinish();
483
-
484
-		// Summary
485
-		$this->comment('- Files created');
486
-
487
-		$this->comment('- - Views');
488
-		foreach ($viewCompilerOutput as $viewFile)
489
-		{
490
-			$this->info('- - - ' . $viewFile);
491
-		}
492
-
493
-	}
494
-
495
-	/**
496
-	 * Generation command for laravel. 
497
-	 * Generates API Code 
498
-	 * Generates Blade templates
499
-	 * @return void
500
-	 */
501
-	private function handleLaravel(){
502
-		// generate API
503
-		$this->handleApi();
504
-
505
-		// generate BLADE
506
-		$this->handleApi();
507
-
508
-	}
509
-
510
-	/**
511
-	 * Get the app.json configuration and parse to an object
512
-	 *
513
-	 * @return void
514
-	 */
515
-	private function getScaffolderConfig(){
516
-		// Get app config
517
-		$scaffolderConfig = Json::decodeFile(base_path('scaffolder-config/app.json'));
518
-
519
-		$scaffolderConfig->generator = $scaffolderConfig->generators->{$this->argument('app')};
520
-
521
-		return $scaffolderConfig ;
522
-	}
523
-
524
-	/**
525
-	 * Get all model files and ordenates by
526
-	 *
527
-	 * @return object
528
-	 */
529
-	private function getAllModelsData(){
530
-
531
-		$modelFiles = File::allFiles(base_path('scaffolder-config/models/'));
532
-
533
-		$modelsData = [];
534
-		$orderedModelsData = [];
535
-
536
-		// set indexes
537
-		//$firstKey = 
538
-		foreach ($modelFiles as $modelFile)
539
-		{
436
+        // Iterate over model files
437
+        foreach ($modelsData as $modelData)
438
+        {
439
+            // Get model name
440
+            $modelName = $modelData->modelName;
441
+
442
+            // Create views directory
443
+            Directory::createIfNotExists(base_path('resources/views/' . strtolower($modelName)));
540 444
 
541
-			// Get model data
542
-			$modelData = Json::decodeFile($modelFile->getRealPath());
445
+            //set hash
446
+            $modelHash = $modelData->modelHash;
543 447
 
544 448
 
545
-			// Get model name
546
-			$modelName = CamelCase::convertToCamelCase(($modelFile->getBasename('.' . $modelFile->getExtension())));
449
+            // Compile stubs
450
+            array_push($viewCompilerOutput, $indexViewCompiler->compile($indexViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
451
+            array_push($viewCompilerOutput, $createViewCompiler->compile($createViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
452
+            array_push($viewCompilerOutput, $editViewCompiler->compile($editViewStub, $modelName, $modelData, $scaffolderConfig, $modelHash));
453
+            // Add entity link
454
+            array_push($sidenavLinks, $modelName);
547 455
 
548
-			// Get model hash
549
-			$modelHash = md5_file($modelFile->getRealPath());
456
+            // Advance progress
457
+            $this->output->progressAdvance();
458
+        }
550 459
 
551
-			// Set model name
552
-			$modelData->modelName = $modelName ;
460
+        // Create layouts directory
461
+        Directory::createIfNotExists(base_path('resources/views/layouts'), 0755, true);
553 462
 
554
-			// Set model name
555
-			$modelData->modelHash = $modelHash ;
463
+        // Store compiled page layout
464
+        array_push($viewCompilerOutput, $pageLayoutViewCompiler->compile(File::get($this->themeLayouts->getPagePath()), null, null, $scaffolderConfig, null, ['links' => $sidenavLinks]));
556 465
 
557
-			// get primary field or create 
558
-			$primaryField = $this->getPrimaryKeyField($modelData);
466
+        // Store create layout
467
+        $createLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/create.blade.php' ;
468
+        File::copy($this->themeLayouts->getCreatePath(), $createLayout);
469
+        array_push($viewCompilerOutput, $createLayout);
559 470
 
560
-			// put primary key at first position
561
-			if(isset($primaryField->declared) && !$primaryField->declared){
562
-				$modelData->fields = array_pad($modelData->fields, -(count($modelData->fields)+1), $primaryField);
563
-			}
564
-
565
-			// set timestamps
566
-			if($modelData->timeStamps){
567
-				$createdAtField = new stdClass;
568
-				$createdAtField->name = "created_at" ;
569
-				$createdAtField->index = "none" ;
570
-				$createdAtField->declared =  false ;
571
-				$createdAtField->type = new stdClass ;
572
-				$createdAtField->type->ui = 'timestamp' ;
573
-				$createdAtField->type->db = 'datetime' ;
574
-				$createdAtField->foreignKey = [];
575
-				$createdAtField->validations = "required" ;
576
-				$updatedAtField = clone($createdAtField);
577
-				$updatedAtField->name = "updated_at" ;
578
-
579
-				array_push($modelData->fields, $createdAtField);
580
-				array_push($modelData->fields, $updatedAtField);
581
-			}
582
-
583
-			$modelsData[$modelData->tableName] = $modelData ;
584
-
585
-			// put all migrations pre-requisites in top of generation hieraquical
586
-			if(count($modelData->migrationPreRequisites) == 0){
587
-				$modelsData = Arrays::moveElement($modelsData, $modelData->tableName, 0);
588
-			}
589
-
590
-		}
591
-
592
-		// let put all pre-requisites in order
593
-		$actualTablePosition = 0 ;
594
-		foreach ($modelsData as $key => $modelData)
595
-		{
596
-			// set migration order
597
-			$modelData->migrationOrder = isset($modelData->migrationOrder) ? $modelData->migrationOrder : $actualTablePosition ;
598
-
599
-			$positions = array_keys($modelsData);
600
-
601
-			foreach($modelData->migrationPreRequisites as $preRequiste){
602
-				$preRequisitePosition = array_search($preRequiste, $positions);
603
-				// change positions
604
-				if( $preRequisitePosition >  $actualTablePosition){
605
-					$modelData->migrationOrder = $preRequisitePosition ;
606
-					$modelsData[$preRequiste]->migrationOrder = $actualTablePosition ;
607
-					$modelsData = Arrays::moveElement($modelsData, $preRequiste, $actualTablePosition);
471
+        // Store edit layout
472
+        $editLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/edit.blade.php' ;
473
+        File::copy($this->themeLayouts->getCreatePath(), $editLayout);
474
+        array_push($viewCompilerOutput, $editLayout);
475
+
476
+        // Store dashboard
477
+        $dashboardLayout = PathParser::parse($scaffolderConfig->generator->paths->views). 'layouts/dashboard.blade.php' ;
478
+        File::copy($this->themeLayouts->getCreatePath(), $dashboardLayout);
479
+        array_push($viewCompilerOutput, $dashboardLayout);
480
+
481
+        // Finish progress
482
+        $this->output->progressFinish();
483
+
484
+        // Summary
485
+        $this->comment('- Files created');
486
+
487
+        $this->comment('- - Views');
488
+        foreach ($viewCompilerOutput as $viewFile)
489
+        {
490
+            $this->info('- - - ' . $viewFile);
491
+        }
492
+
493
+    }
494
+
495
+    /**
496
+     * Generation command for laravel. 
497
+     * Generates API Code 
498
+     * Generates Blade templates
499
+     * @return void
500
+     */
501
+    private function handleLaravel(){
502
+        // generate API
503
+        $this->handleApi();
504
+
505
+        // generate BLADE
506
+        $this->handleApi();
507
+
508
+    }
509
+
510
+    /**
511
+     * Get the app.json configuration and parse to an object
512
+     *
513
+     * @return void
514
+     */
515
+    private function getScaffolderConfig(){
516
+        // Get app config
517
+        $scaffolderConfig = Json::decodeFile(base_path('scaffolder-config/app.json'));
518
+
519
+        $scaffolderConfig->generator = $scaffolderConfig->generators->{$this->argument('app')};
520
+
521
+        return $scaffolderConfig ;
522
+    }
523
+
524
+    /**
525
+     * Get all model files and ordenates by
526
+     *
527
+     * @return object
528
+     */
529
+    private function getAllModelsData(){
530
+
531
+        $modelFiles = File::allFiles(base_path('scaffolder-config/models/'));
532
+
533
+        $modelsData = [];
534
+        $orderedModelsData = [];
535
+
536
+        // set indexes
537
+        //$firstKey = 
538
+        foreach ($modelFiles as $modelFile)
539
+        {
540
+
541
+            // Get model data
542
+            $modelData = Json::decodeFile($modelFile->getRealPath());
543
+
544
+
545
+            // Get model name
546
+            $modelName = CamelCase::convertToCamelCase(($modelFile->getBasename('.' . $modelFile->getExtension())));
547
+
548
+            // Get model hash
549
+            $modelHash = md5_file($modelFile->getRealPath());
550
+
551
+            // Set model name
552
+            $modelData->modelName = $modelName ;
553
+
554
+            // Set model name
555
+            $modelData->modelHash = $modelHash ;
556
+
557
+            // get primary field or create 
558
+            $primaryField = $this->getPrimaryKeyField($modelData);
559
+
560
+            // put primary key at first position
561
+            if(isset($primaryField->declared) && !$primaryField->declared){
562
+                $modelData->fields = array_pad($modelData->fields, -(count($modelData->fields)+1), $primaryField);
563
+            }
564
+
565
+            // set timestamps
566
+            if($modelData->timeStamps){
567
+                $createdAtField = new stdClass;
568
+                $createdAtField->name = "created_at" ;
569
+                $createdAtField->index = "none" ;
570
+                $createdAtField->declared =  false ;
571
+                $createdAtField->type = new stdClass ;
572
+                $createdAtField->type->ui = 'timestamp' ;
573
+                $createdAtField->type->db = 'datetime' ;
574
+                $createdAtField->foreignKey = [];
575
+                $createdAtField->validations = "required" ;
576
+                $updatedAtField = clone($createdAtField);
577
+                $updatedAtField->name = "updated_at" ;
578
+
579
+                array_push($modelData->fields, $createdAtField);
580
+                array_push($modelData->fields, $updatedAtField);
581
+            }
582
+
583
+            $modelsData[$modelData->tableName] = $modelData ;
584
+
585
+            // put all migrations pre-requisites in top of generation hieraquical
586
+            if(count($modelData->migrationPreRequisites) == 0){
587
+                $modelsData = Arrays::moveElement($modelsData, $modelData->tableName, 0);
588
+            }
589
+
590
+        }
591
+
592
+        // let put all pre-requisites in order
593
+        $actualTablePosition = 0 ;
594
+        foreach ($modelsData as $key => $modelData)
595
+        {
596
+            // set migration order
597
+            $modelData->migrationOrder = isset($modelData->migrationOrder) ? $modelData->migrationOrder : $actualTablePosition ;
598
+
599
+            $positions = array_keys($modelsData);
600
+
601
+            foreach($modelData->migrationPreRequisites as $preRequiste){
602
+                $preRequisitePosition = array_search($preRequiste, $positions);
603
+                // change positions
604
+                if( $preRequisitePosition >  $actualTablePosition){
605
+                    $modelData->migrationOrder = $preRequisitePosition ;
606
+                    $modelsData[$preRequiste]->migrationOrder = $actualTablePosition ;
607
+                    $modelsData = Arrays::moveElement($modelsData, $preRequiste, $actualTablePosition);
608 608
 					
609
-				}
610
-			}
609
+                }
610
+            }
611 611
 
612 612
 
613
-			// search for other fields relationships
614
-			foreach($modelData->fields as $field){
613
+            // search for other fields relationships
614
+            foreach($modelData->fields as $field){
615 615
 				
616 616
 
617
-				if(isset($field->foreignKey->relationship)){
618
-					switch ($field->foreignKey->relationship) {
619
-						case 'belongsTo':
620
-							// hasOne or hasMay are the inverse relationship for belongsTo
621
-							$relationship = new stdClass ;
622
-							$relationship->type  = $field->foreignKey->reverse ;
623
-							$relationship->foreignKey = $field->name ;
624
-							$relationship->localKey = $field->foreignKey->field ;
625
-							$relationship->modelName = $modelData->modelName ;
626
-							array_push($modelsData[$field->foreignKey->table]->reverseRelationships, $relationship);
627
-							break;
628
-						case 'belongsToMany':
629
-							// belongsToMany is the inverse relationship for belongsTo
630
-							$relationship = new stdClass ;
631
-							$relationship->type  = $field->foreignKey->reverse ;
632
-							$relationship->foreignKey = $field->name ;
633
-							$relationship->relatedTable = isset($field->relatedTable) ? $field->relatedTable : '';
634
-							$relationship->relatedField = isset($field->relatedField) ? $field->relatedField : '';
635
-							$relationship->ui = $field->type->ui;
636
-							$relationship->localKey = $field->foreignKey->field ;
637
-							$relationship->modelName = $modelData->modelName ;
638
-							$relationship->tableName = $modelData->tableName ;
639
-							array_push($modelsData[$field->foreignKey->table]->reverseRelationships, $relationship);
640
-							break;
641
-						default:
642
-							# code...
643
-							break;
644
-					}
617
+                if(isset($field->foreignKey->relationship)){
618
+                    switch ($field->foreignKey->relationship) {
619
+                        case 'belongsTo':
620
+                            // hasOne or hasMay are the inverse relationship for belongsTo
621
+                            $relationship = new stdClass ;
622
+                            $relationship->type  = $field->foreignKey->reverse ;
623
+                            $relationship->foreignKey = $field->name ;
624
+                            $relationship->localKey = $field->foreignKey->field ;
625
+                            $relationship->modelName = $modelData->modelName ;
626
+                            array_push($modelsData[$field->foreignKey->table]->reverseRelationships, $relationship);
627
+                            break;
628
+                        case 'belongsToMany':
629
+                            // belongsToMany is the inverse relationship for belongsTo
630
+                            $relationship = new stdClass ;
631
+                            $relationship->type  = $field->foreignKey->reverse ;
632
+                            $relationship->foreignKey = $field->name ;
633
+                            $relationship->relatedTable = isset($field->relatedTable) ? $field->relatedTable : '';
634
+                            $relationship->relatedField = isset($field->relatedField) ? $field->relatedField : '';
635
+                            $relationship->ui = $field->type->ui;
636
+                            $relationship->localKey = $field->foreignKey->field ;
637
+                            $relationship->modelName = $modelData->modelName ;
638
+                            $relationship->tableName = $modelData->tableName ;
639
+                            array_push($modelsData[$field->foreignKey->table]->reverseRelationships, $relationship);
640
+                            break;
641
+                        default:
642
+                            # code...
643
+                            break;
644
+                    }
645 645
 				
646
-				}
646
+                }
647 647
 				
648
-			}
648
+            }
649 649
 			
650 650
 
651
-			$actualTablePosition++ ;
652
-		}
651
+            $actualTablePosition++ ;
652
+        }
653 653
 	
654
-		// $this->info(print_r($modelsData, 1));
654
+        // $this->info(print_r($modelsData, 1));
655 655
 	
656
-		return $modelsData ;
656
+        return $modelsData ;
657 657
 	
658
-	}
659
-
660
-	protected function getPrimaryKeyField($modelData){
661
-		$primaryKey = new stdClass;
662
-		$primaryKey->name = "id" ;
663
-		$primaryKey->index = "primary" ;
664
-		$primaryKey->declared =  false ;
665
-		$primaryKey->type = new stdClass ;
666
-		$primaryKey->type->ui = 'label' ;
667
-		$primaryKey->type->db = 'integer' ;
668
-		$primaryKey->foreignKey = [];
669
-		$primaryKey->validations = "required" ;
670
-
671
-		foreach ($modelData->fields as $field)
672
-		{
673
-			if ($field->index == 'primary')
674
-			{
675
-				$primaryKey = $field ;
676
-				break;
677
-			}
678
-		}
679
-
680
-		return $primaryKey ;
681
-	}
658
+    }
659
+
660
+    protected function getPrimaryKeyField($modelData){
661
+        $primaryKey = new stdClass;
662
+        $primaryKey->name = "id" ;
663
+        $primaryKey->index = "primary" ;
664
+        $primaryKey->declared =  false ;
665
+        $primaryKey->type = new stdClass ;
666
+        $primaryKey->type->ui = 'label' ;
667
+        $primaryKey->type->db = 'integer' ;
668
+        $primaryKey->foreignKey = [];
669
+        $primaryKey->validations = "required" ;
670
+
671
+        foreach ($modelData->fields as $field)
672
+        {
673
+            if ($field->index == 'primary')
674
+            {
675
+                $primaryKey = $field ;
676
+                break;
677
+            }
678
+        }
679
+
680
+        return $primaryKey ;
681
+    }
682 682
 
683 683
 }
684 684
\ No newline at end of file
Please login to merge, or discard this patch.