@@ -107,7 +107,7 @@ |
||
107 | 107 | /** |
108 | 108 | * Cria Instancias dos arquivos que devem ser gerados |
109 | 109 | * |
110 | - * @return AbstractAdapter[] |
|
110 | + * @return \Classes\AdapterMakerFile\AbstractAdapter[] |
|
111 | 111 | */ |
112 | 112 | public function getMakeFileInstances () |
113 | 113 | { |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | const SEPARETOR = "_"; |
26 | 26 | |
27 | - protected function init () |
|
27 | + protected function init() |
|
28 | 28 | { |
29 | 29 | } |
30 | 30 | |
@@ -33,75 +33,75 @@ discard block |
||
33 | 33 | * |
34 | 34 | * @return array |
35 | 35 | */ |
36 | - protected function getParams () |
|
36 | + protected function getParams() |
|
37 | 37 | { |
38 | - if ( ! $this->config or !$this->isValidFrameworkFiles ()) |
|
38 | + if ( ! $this->config or ! $this->isValidFrameworkFiles()) |
|
39 | 39 | { |
40 | - return array (); |
|
40 | + return array(); |
|
41 | 41 | } |
42 | 42 | |
43 | - return array ( |
|
43 | + return array( |
|
44 | 44 | //Driver do banco de dados |
45 | - 'driver' => $this->config[ 'adapter' ] , |
|
45 | + 'driver' => $this->config['adapter'], |
|
46 | 46 | //Nome do banco de dados |
47 | - 'database' => $this->config[ 'params' ][ 'dbname' ] , |
|
47 | + 'database' => $this->config['params']['dbname'], |
|
48 | 48 | //Host do banco |
49 | - 'host' => $this->config[ 'params' ][ 'host' ] , |
|
49 | + 'host' => $this->config['params']['host'], |
|
50 | 50 | //Port do banco |
51 | - 'port' => isset( $this->config[ 'params' ][ 'port' ] ) |
|
52 | - ? $this->config[ 'params' ][ 'port' ] : '' , |
|
51 | + 'port' => isset($this->config['params']['port']) |
|
52 | + ? $this->config['params']['port'] : '', |
|
53 | 53 | //usuario do banco |
54 | - 'username' => $this->config[ 'params' ][ 'username' ] , |
|
54 | + 'username' => $this->config['params']['username'], |
|
55 | 55 | //senha do banco |
56 | - 'password' => $this->config[ 'params' ][ 'password' ] , |
|
56 | + 'password' => $this->config['params']['password'], |
|
57 | 57 | ); |
58 | 58 | } |
59 | 59 | |
60 | - protected function parseFrameworkConfig () |
|
60 | + protected function parseFrameworkConfig() |
|
61 | 61 | { |
62 | - if(!$this->isValidFrameworkFiles ()){ |
|
62 | + if ( ! $this->isValidFrameworkFiles()) { |
|
63 | 63 | return; |
64 | 64 | } |
65 | 65 | |
66 | - $frameworkIni = $this->getFrameworkIni (); |
|
66 | + $frameworkIni = $this->getFrameworkIni(); |
|
67 | 67 | |
68 | 68 | require_once 'Zend/Config/Ini.php'; |
69 | 69 | |
70 | 70 | $objConfig = new \Zend_Config_Ini( |
71 | - realpath ( $frameworkIni ) , $this->getEnvironment () |
|
71 | + realpath($frameworkIni), $this->getEnvironment() |
|
72 | 72 | ); |
73 | 73 | |
74 | - $arrConfig = $objConfig->toArray (); |
|
74 | + $arrConfig = $objConfig->toArray(); |
|
75 | 75 | |
76 | - if ( isset( $arrConfig[ 'resources' ][ 'db' ] ) ) |
|
76 | + if (isset($arrConfig['resources']['db'])) |
|
77 | 77 | { |
78 | - $this->config = $arrConfig[ 'resources' ][ 'db' ]; |
|
78 | + $this->config = $arrConfig['resources']['db']; |
|
79 | 79 | } |
80 | 80 | } |
81 | 81 | |
82 | - public function createClassNamespace ( $table ) |
|
82 | + public function createClassNamespace($table) |
|
83 | 83 | { |
84 | - $arrNames = array ( |
|
85 | - $this->arrConfig[ 'namespace' ] , |
|
84 | + $arrNames = array( |
|
85 | + $this->arrConfig['namespace'], |
|
86 | 86 | 'Model' |
87 | 87 | ); |
88 | 88 | |
89 | - if ( isset( $this->arrConfig['folder-database'] ) |
|
89 | + if (isset($this->arrConfig['folder-database']) |
|
90 | 90 | && $this->arrConfig['folder-database'] |
91 | 91 | ) |
92 | 92 | { |
93 | - $arrNames[] = AbstractMaker::getClassName ( $this->arrConfig['driver'] ); |
|
93 | + $arrNames[] = AbstractMaker::getClassName($this->arrConfig['driver']); |
|
94 | 94 | } |
95 | 95 | |
96 | - if ( $table->hasSchema () ) |
|
96 | + if ($table->hasSchema()) |
|
97 | 97 | { |
98 | - $arrNames[] = AbstractMaker::getClassName ( $table->getSchema () ); |
|
98 | + $arrNames[] = AbstractMaker::getClassName($table->getSchema()); |
|
99 | 99 | } else |
100 | 100 | { |
101 | - $arrNames[] = AbstractMaker::getClassName ( $table->getDatabase () ); |
|
101 | + $arrNames[] = AbstractMaker::getClassName($table->getDatabase()); |
|
102 | 102 | } |
103 | 103 | |
104 | - return implode ( self::SEPARETOR , array_filter ( $arrNames ) ); |
|
104 | + return implode(self::SEPARETOR, array_filter($arrNames)); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | /** |
@@ -109,12 +109,12 @@ discard block |
||
109 | 109 | * |
110 | 110 | * @return AbstractAdapter[] |
111 | 111 | */ |
112 | - public function getMakeFileInstances () |
|
112 | + public function getMakeFileInstances() |
|
113 | 113 | { |
114 | - return array ( |
|
115 | - DbTable::getInstance () , |
|
116 | - Entity::getInstance () , |
|
117 | - Model::getInstance () |
|
114 | + return array( |
|
115 | + DbTable::getInstance(), |
|
116 | + Entity::getInstance(), |
|
117 | + Model::getInstance() |
|
118 | 118 | ); |
119 | 119 | } |
120 | 120 |
@@ -54,7 +54,6 @@ |
||
54 | 54 | |
55 | 55 | /** |
56 | 56 | * @inheritDoc |
57 | - * @param string $databaseName |
|
58 | 57 | * @return \Classes\Db\DbTable[] |
59 | 58 | */ |
60 | 59 | public function getTables($schema = 0) |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * |
79 | 79 | * @return array[] |
80 | 80 | */ |
81 | - public function getListColumns () |
|
81 | + public function getListColumns() |
|
82 | 82 | { |
83 | 83 | // TODO: Implement getListColumns() method. |
84 | 84 | } |
@@ -88,17 +88,17 @@ discard block |
||
88 | 88 | * |
89 | 89 | * @return int |
90 | 90 | */ |
91 | - public function getTotalTables () |
|
91 | + public function getTotalTables() |
|
92 | 92 | { |
93 | 93 | // TODO: Implement totalTables() method. |
94 | 94 | } |
95 | 95 | |
96 | - public function getSequence ( $table , $column ) |
|
96 | + public function getSequence($table, $column) |
|
97 | 97 | { |
98 | 98 | // TODO: Implement getSequence() method. |
99 | 99 | } |
100 | 100 | |
101 | - public function getListConstrant () |
|
101 | + public function getListConstrant() |
|
102 | 102 | { |
103 | 103 | // TODO: Implement getListConstrant() method. |
104 | 104 | } |
@@ -220,7 +220,7 @@ |
||
220 | 220 | } |
221 | 221 | |
222 | 222 | /** |
223 | - * @param string $Namespace |
|
223 | + * @param string $namespace |
|
224 | 224 | */ |
225 | 225 | public function setNamespace ( $namespace ) |
226 | 226 | { |
@@ -11,14 +11,14 @@ discard block |
||
11 | 11 | /** |
12 | 12 | * @author Pedro Alarcao <[email protected]> |
13 | 13 | */ |
14 | - final private function __construct () |
|
14 | + final private function __construct() |
|
15 | 15 | { |
16 | 16 | } |
17 | 17 | |
18 | 18 | /** |
19 | 19 | * @return \Classes\Db\DbTable |
20 | 20 | */ |
21 | - public static function getInstance(){ |
|
21 | + public static function getInstance() { |
|
22 | 22 | return new self(); |
23 | 23 | } |
24 | 24 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | /** |
41 | 41 | * @var \Classes\Db\Column[] |
42 | 42 | */ |
43 | - private $columns = array (); |
|
43 | + private $columns = array(); |
|
44 | 44 | |
45 | 45 | /** |
46 | 46 | * @var string |
@@ -50,25 +50,25 @@ discard block |
||
50 | 50 | /** |
51 | 51 | * @type \Classes\Db\Column[] |
52 | 52 | */ |
53 | - private $primarykeys = array (); |
|
53 | + private $primarykeys = array(); |
|
54 | 54 | |
55 | 55 | /** |
56 | 56 | * @type \Classes\Db\Column[] |
57 | 57 | */ |
58 | - private $foreingkeys = array (); |
|
58 | + private $foreingkeys = array(); |
|
59 | 59 | |
60 | - private $dependence = array (); |
|
60 | + private $dependence = array(); |
|
61 | 61 | |
62 | 62 | /** |
63 | 63 | * @type string[] |
64 | 64 | */ |
65 | - private $sequence = array (); |
|
65 | + private $sequence = array(); |
|
66 | 66 | |
67 | - public function populate ( $array ) |
|
67 | + public function populate($array) |
|
68 | 68 | { |
69 | - $this->name = $array[ 'table' ]; |
|
70 | - $this->schema = isset( $array[ 'schema' ] ) ? $array[ 'schema' ] : null; |
|
71 | - $this->database = $array[ 'database' ]; |
|
69 | + $this->name = $array['table']; |
|
70 | + $this->schema = isset($array['schema']) ? $array['schema'] : null; |
|
71 | + $this->database = $array['database']; |
|
72 | 72 | |
73 | 73 | return $this; |
74 | 74 | } |
@@ -78,9 +78,9 @@ discard block |
||
78 | 78 | * |
79 | 79 | * @param \Classes\Db\Column $column |
80 | 80 | */ |
81 | - public function addColumn ( Column $column ) |
|
81 | + public function addColumn(Column $column) |
|
82 | 82 | { |
83 | - $this->columns[ $column->getName () ] = $column; |
|
83 | + $this->columns[$column->getName()] = $column; |
|
84 | 84 | |
85 | 85 | return $this; |
86 | 86 | } |
@@ -90,24 +90,24 @@ discard block |
||
90 | 90 | * |
91 | 91 | * @return \Classes\Db\Column |
92 | 92 | */ |
93 | - public function getColumn ( $columnName ) |
|
93 | + public function getColumn($columnName) |
|
94 | 94 | { |
95 | - return $this->columns[ $columnName ]; |
|
95 | + return $this->columns[$columnName]; |
|
96 | 96 | } |
97 | 97 | |
98 | - public function hasColumn ( $columnName ) |
|
98 | + public function hasColumn($columnName) |
|
99 | 99 | { |
100 | - return isset( $this->columns[ $columnName ] ); |
|
100 | + return isset($this->columns[$columnName]); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
104 | 104 | * @return \Classes\Db\Column[] |
105 | 105 | */ |
106 | - public function getPrimaryKeys () |
|
106 | + public function getPrimaryKeys() |
|
107 | 107 | { |
108 | - if ( empty ( $this->primarykeys ) ) |
|
108 | + if (empty ($this->primarykeys)) |
|
109 | 109 | { |
110 | - $this->primarykeys = array_filter ( $this->columns , function ( $column ){ return $column->isPrimaryKey (); } ); |
|
110 | + $this->primarykeys = array_filter($this->columns, function($column) { return $column->isPrimaryKey(); } ); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | return $this->primarykeys; |
@@ -116,25 +116,25 @@ discard block |
||
116 | 116 | /** |
117 | 117 | * @return bool |
118 | 118 | */ |
119 | - public function hasPrimaryKey () |
|
119 | + public function hasPrimaryKey() |
|
120 | 120 | { |
121 | - if ( empty ( $this->sequence ) ) |
|
121 | + if (empty ($this->sequence)) |
|
122 | 122 | { |
123 | - $this->getPrimaryKeys (); |
|
123 | + $this->getPrimaryKeys(); |
|
124 | 124 | } |
125 | 125 | |
126 | - return ! empty ( $this->sequence ); |
|
126 | + return ! empty ($this->sequence); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | /** |
130 | 130 | * @return \Classes\Db\Column[] |
131 | 131 | */ |
132 | - public function getForeingkeys () |
|
132 | + public function getForeingkeys() |
|
133 | 133 | { |
134 | 134 | |
135 | - if ( empty ( $this->foreingkeys ) ) |
|
135 | + if (empty ($this->foreingkeys)) |
|
136 | 136 | { |
137 | - $this->foreingkeys = array_filter ( $this->columns , function ( $column ){ return $column->isForeingkey (); } ); |
|
137 | + $this->foreingkeys = array_filter($this->columns, function($column) { return $column->isForeingkey(); } ); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | return $this->foreingkeys; |
@@ -144,11 +144,11 @@ discard block |
||
144 | 144 | /** |
145 | 145 | * @return \Classes\Db\Column[] |
146 | 146 | */ |
147 | - public function getDependences () |
|
147 | + public function getDependences() |
|
148 | 148 | { |
149 | - if ( empty ( $this->dependence ) ) |
|
149 | + if (empty ($this->dependence)) |
|
150 | 150 | { |
151 | - $this->dependence = array_filter ( $this->columns , function ( $column ){ return $column->hasDependence (); } ); |
|
151 | + $this->dependence = array_filter($this->columns, function($column) { return $column->hasDependence(); } ); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | return $this->dependence; |
@@ -157,11 +157,11 @@ discard block |
||
157 | 157 | /** |
158 | 158 | * @return string[] |
159 | 159 | */ |
160 | - public function getSequences () |
|
160 | + public function getSequences() |
|
161 | 161 | { |
162 | - if ( empty ( $this->sequence ) ) |
|
162 | + if (empty ($this->sequence)) |
|
163 | 163 | { |
164 | - $this->sequence = array_filter ( $this->columns , function ( $column ){ return $column->hasSequence (); } ); |
|
164 | + $this->sequence = array_filter($this->columns, function($column) { return $column->hasSequence(); } ); |
|
165 | 165 | } |
166 | 166 | |
167 | 167 | return $this->sequence; |
@@ -170,20 +170,20 @@ discard block |
||
170 | 170 | /** |
171 | 171 | * @return bool |
172 | 172 | */ |
173 | - public function hasSequences () |
|
173 | + public function hasSequences() |
|
174 | 174 | { |
175 | - if ( empty ( $this->sequence ) ) |
|
175 | + if (empty ($this->sequence)) |
|
176 | 176 | { |
177 | - $this->getSequences (); |
|
177 | + $this->getSequences(); |
|
178 | 178 | } |
179 | 179 | |
180 | - return ! empty ( $this->sequence ); |
|
180 | + return ! empty ($this->sequence); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
184 | 184 | * @return \Classes\Db\Column[] |
185 | 185 | */ |
186 | - public function getColumns () |
|
186 | + public function getColumns() |
|
187 | 187 | { |
188 | 188 | return $this->columns; |
189 | 189 | } |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | /** |
192 | 192 | * @return string |
193 | 193 | */ |
194 | - public function getName () |
|
194 | + public function getName() |
|
195 | 195 | { |
196 | 196 | return $this->name; |
197 | 197 | } |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | /** |
200 | 200 | * @return string |
201 | 201 | */ |
202 | - public function getSchema () |
|
202 | + public function getSchema() |
|
203 | 203 | { |
204 | 204 | return $this->schema; |
205 | 205 | } |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | /** |
208 | 208 | * @return bool |
209 | 209 | */ |
210 | - public function hasSchema () |
|
210 | + public function hasSchema() |
|
211 | 211 | { |
212 | 212 | return (bool) $this->schema; |
213 | 213 | } |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | /** |
216 | 216 | * @return string |
217 | 217 | */ |
218 | - public function getDatabase () |
|
218 | + public function getDatabase() |
|
219 | 219 | { |
220 | 220 | return $this->database; |
221 | 221 | } |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | /** |
224 | 224 | * @return string |
225 | 225 | */ |
226 | - public function getNamespace () |
|
226 | + public function getNamespace() |
|
227 | 227 | { |
228 | 228 | return $this->namespace; |
229 | 229 | } |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | /** |
232 | 232 | * @param string $Namespace |
233 | 233 | */ |
234 | - public function setNamespace ( $namespace ) |
|
234 | + public function setNamespace($namespace) |
|
235 | 235 | { |
236 | 236 | $this->namespace = $namespace; |
237 | 237 | } |
@@ -44,7 +44,6 @@ |
||
44 | 44 | /** |
45 | 45 | * Analisa e estrutura a Configuracao do generate |
46 | 46 | * |
47 | - * @param string $_path |
|
48 | 47 | * @param array $argv |
49 | 48 | * |
50 | 49 | * @return array |
@@ -24,21 +24,21 @@ discard block |
||
24 | 24 | |
25 | 25 | private $msg = "\033[0mPlease enter the value for %index% \033[1;33m[%config%]:\033[0m "; |
26 | 26 | |
27 | - private $configs = array ( |
|
28 | - 'config-env' => 'config' , |
|
29 | - 'framework' => 'none' , |
|
30 | - 'driver' => 'pgsql' , |
|
31 | - 'environment' => 'dev' , |
|
32 | - 'host' => 'localhost' , |
|
33 | - 'database' => null , |
|
34 | - 'schema' => null , |
|
35 | - 'username' => null , |
|
27 | + private $configs = array( |
|
28 | + 'config-env' => 'config', |
|
29 | + 'framework' => 'none', |
|
30 | + 'driver' => 'pgsql', |
|
31 | + 'environment' => 'dev', |
|
32 | + 'host' => 'localhost', |
|
33 | + 'database' => null, |
|
34 | + 'schema' => null, |
|
35 | + 'username' => null, |
|
36 | 36 | 'password' => null |
37 | 37 | ); |
38 | 38 | |
39 | - public function __construct ( $argv , $basePath ) |
|
39 | + public function __construct($argv, $basePath) |
|
40 | 40 | { |
41 | - $this->argv = $this->parseConfig ( $basePath , $argv ); |
|
41 | + $this->argv = $this->parseConfig($basePath, $argv); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -50,32 +50,32 @@ discard block |
||
50 | 50 | * @return array |
51 | 51 | * @throws \Exception |
52 | 52 | */ |
53 | - private function parseConfig ( $basePath , $argv ) |
|
53 | + private function parseConfig($basePath, $argv) |
|
54 | 54 | { |
55 | - $this->baseLocation = dirname ( $basePath ); |
|
55 | + $this->baseLocation = dirname($basePath); |
|
56 | 56 | |
57 | - $arrayIO = array_diff_key ( $this->configs , $argv ); |
|
58 | - foreach ( $arrayIO as $index => $config ) |
|
57 | + $arrayIO = array_diff_key($this->configs, $argv); |
|
58 | + foreach ($arrayIO as $index => $config) |
|
59 | 59 | { |
60 | - $attribs = array ( "%index%" => $index , "%config%" => $config ); |
|
61 | - echo strtr ( $this->msg , $attribs ); |
|
62 | - $line = trim ( fgets ( STDIN ) ); |
|
63 | - if ( ! empty( $line ) ) |
|
60 | + $attribs = array("%index%" => $index, "%config%" => $config); |
|
61 | + echo strtr($this->msg, $attribs); |
|
62 | + $line = trim(fgets(STDIN)); |
|
63 | + if ( ! empty($line)) |
|
64 | 64 | { |
65 | - $this->configs[ $index ] = strtolower ( $line ); |
|
65 | + $this->configs[$index] = strtolower($line); |
|
66 | 66 | } |
67 | 67 | } |
68 | - $this->configs ['version'] = Config::$version; |
|
69 | - return $argv + array_filter ( $this->configs ); |
|
68 | + $this->configs ['version'] = Config::$version; |
|
69 | + return $argv + array_filter($this->configs); |
|
70 | 70 | } |
71 | 71 | |
72 | - public function run () |
|
72 | + public function run() |
|
73 | 73 | { |
74 | 74 | $path = $this->baseLocation . DIRECTORY_SEPARATOR . "configs"; |
75 | - self::makeDir ( $path ); |
|
76 | - self::makeSourcer ( |
|
77 | - $path . DIRECTORY_SEPARATOR . $this->argv[ 'config-env' ] . '.ini' , |
|
78 | - $this->getParsedTplContents ( $this->template , $this->argv ) |
|
75 | + self::makeDir($path); |
|
76 | + self::makeSourcer( |
|
77 | + $path . DIRECTORY_SEPARATOR . $this->argv['config-env'] . '.ini', |
|
78 | + $this->getParsedTplContents($this->template, $this->argv) |
|
79 | 79 | ); |
80 | 80 | echo "\n\033[1;32mSuccessfully process finished!\n\033[0m"; |
81 | 81 | } |
@@ -46,6 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | /** |
48 | 48 | * Analisa os caminhos das pastas base |
49 | + * @param string $basePath |
|
49 | 50 | */ |
50 | 51 | public function parseLocation ( $basePath ) |
51 | 52 | { |
@@ -175,6 +176,9 @@ discard block |
||
175 | 176 | echo "\n\033[1;32mSuccessfully process finished!\n\033[0m"; |
176 | 177 | } |
177 | 178 | |
179 | + /** |
|
180 | + * @param integer $countFiles |
|
181 | + */ |
|
178 | 182 | private function reportProcess ( $countFiles ) |
179 | 183 | { |
180 | 184 | if ( $this->config->isStatusEnabled () ) |
@@ -194,7 +198,7 @@ discard block |
||
194 | 198 | /** |
195 | 199 | * Instancia os Modulos de diretorios e tampletes |
196 | 200 | * |
197 | - * @return AbstractAdapter[] |
|
201 | + * @return AdapterConfig\AbstractAdapter[] |
|
198 | 202 | */ |
199 | 203 | public function factoryMakerFile () |
200 | 204 | { |
@@ -225,6 +229,7 @@ discard block |
||
225 | 229 | * parse a tpl file and return the result |
226 | 230 | * |
227 | 231 | * @param String $tplFile |
232 | + * @param AdapterConfig\AbstractAdapter $objMakeFile |
|
228 | 233 | * |
229 | 234 | * @return String |
230 | 235 | */ |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | /** |
19 | 19 | * @type string[] |
20 | 20 | */ |
21 | - public $location = array (); |
|
21 | + public $location = array(); |
|
22 | 22 | |
23 | 23 | /** |
24 | 24 | * caminho de pastas Base |
@@ -37,154 +37,154 @@ discard block |
||
37 | 37 | */ |
38 | 38 | private $driver; |
39 | 39 | |
40 | - public function __construct ( Config $config ) |
|
40 | + public function __construct(Config $config) |
|
41 | 41 | { |
42 | - $this->config = $config->getAdapterConfig (); |
|
43 | - $this->driver = $config->getAdapterDriver (); |
|
44 | - $this->parseLocation ( $config->_basePath ); |
|
42 | + $this->config = $config->getAdapterConfig(); |
|
43 | + $this->driver = $config->getAdapterDriver(); |
|
44 | + $this->parseLocation($config->_basePath); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | /** |
48 | 48 | * Analisa os caminhos das pastas base |
49 | 49 | */ |
50 | - public function parseLocation ( $basePath ) |
|
50 | + public function parseLocation($basePath) |
|
51 | 51 | { |
52 | 52 | |
53 | - $arrBase = array ( |
|
54 | - $basePath , |
|
53 | + $arrBase = array( |
|
54 | + $basePath, |
|
55 | 55 | $this->config->path |
56 | 56 | ); |
57 | 57 | |
58 | - $this->baseLocation = implode ( DIRECTORY_SEPARATOR , array_filter ( $arrBase ) ); |
|
58 | + $this->baseLocation = implode(DIRECTORY_SEPARATOR, array_filter($arrBase)); |
|
59 | 59 | |
60 | 60 | # pasta com nome do driver do banco |
61 | 61 | $driverBase = ''; |
62 | - if ( $this->config->{"folder-database"} ) |
|
62 | + if ($this->config->{"folder-database"} ) |
|
63 | 63 | { |
64 | - $classDriver = explode ( '\\' , get_class ( $this->driver ) ); |
|
65 | - $driverBase = end ( $classDriver ); |
|
64 | + $classDriver = explode('\\', get_class($this->driver)); |
|
65 | + $driverBase = end($classDriver); |
|
66 | 66 | } |
67 | 67 | |
68 | - if ( $this->config->hasSchemas () ) |
|
68 | + if ($this->config->hasSchemas()) |
|
69 | 69 | { |
70 | 70 | |
71 | - $schemas = $this->config->getSchemas (); |
|
72 | - foreach ( $schemas as $schema ) |
|
71 | + $schemas = $this->config->getSchemas(); |
|
72 | + foreach ($schemas as $schema) |
|
73 | 73 | { |
74 | - $arrUrl = array ( |
|
75 | - $this->baseLocation , |
|
76 | - $driverBase , |
|
77 | - $this->getClassName ( $schema ) |
|
74 | + $arrUrl = array( |
|
75 | + $this->baseLocation, |
|
76 | + $driverBase, |
|
77 | + $this->getClassName($schema) |
|
78 | 78 | ); |
79 | 79 | |
80 | - $this->location[ $schema ] = implode ( DIRECTORY_SEPARATOR , array_filter ( $arrUrl ) ); |
|
81 | - unset( $arrUrl ); |
|
80 | + $this->location[$schema] = implode(DIRECTORY_SEPARATOR, array_filter($arrUrl)); |
|
81 | + unset($arrUrl); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | |
85 | 85 | } else |
86 | 86 | { |
87 | - $baseLocation = implode ( |
|
88 | - DIRECTORY_SEPARATOR , array_filter ( array ( |
|
89 | - $this->baseLocation , |
|
90 | - $driverBase , |
|
91 | - $this->getClassName ( $this->getConfig ()->getDatabase () ) |
|
87 | + $baseLocation = implode( |
|
88 | + DIRECTORY_SEPARATOR, array_filter(array( |
|
89 | + $this->baseLocation, |
|
90 | + $driverBase, |
|
91 | + $this->getClassName($this->getConfig()->getDatabase()) |
|
92 | 92 | ) |
93 | 93 | ) |
94 | 94 | ); |
95 | - $this->location = array ( $baseLocation ); |
|
95 | + $this->location = array($baseLocation); |
|
96 | 96 | } |
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
100 | 100 | * @return AdapterConfig\AbstractAdapter |
101 | 101 | */ |
102 | - public function getConfig () |
|
102 | + public function getConfig() |
|
103 | 103 | { |
104 | 104 | return $this->config; |
105 | 105 | } |
106 | 106 | |
107 | 107 | /* Get current time */ |
108 | - public function startTime () |
|
108 | + public function startTime() |
|
109 | 109 | { |
110 | 110 | echo "Starting..\n"; |
111 | - $this->startTime = microtime ( true ); |
|
111 | + $this->startTime = microtime(true); |
|
112 | 112 | } |
113 | 113 | |
114 | - private function getRunTime () |
|
114 | + private function getRunTime() |
|
115 | 115 | { |
116 | - return round ( ( microtime ( true ) - $this->startTime ) , 3 ); |
|
116 | + return round((microtime(true) - $this->startTime), 3); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
120 | 120 | * Executa o Make, criando arquivos e Diretorios |
121 | 121 | */ |
122 | - public function run () |
|
122 | + public function run() |
|
123 | 123 | { |
124 | - $this->startTime (); |
|
125 | - $this->driver->runDatabase (); |
|
126 | - $max = $this->driver->getTotalTables () * count ( $this->factoryMakerFile () ); |
|
124 | + $this->startTime(); |
|
125 | + $this->driver->runDatabase(); |
|
126 | + $max = $this->driver->getTotalTables() * count($this->factoryMakerFile()); |
|
127 | 127 | $cur = 0; |
128 | 128 | |
129 | 129 | |
130 | - foreach ( $this->location as $schema => $location ) |
|
130 | + foreach ($this->location as $schema => $location) |
|
131 | 131 | { |
132 | - foreach ( $this->factoryMakerFile () as $objMakeFile ) |
|
132 | + foreach ($this->factoryMakerFile() as $objMakeFile) |
|
133 | 133 | { |
134 | - $path = $location . DIRECTORY_SEPARATOR . $objMakeFile->getPastName (); |
|
135 | - self::makeDir ( $path ); |
|
134 | + $path = $location . DIRECTORY_SEPARATOR . $objMakeFile->getPastName(); |
|
135 | + self::makeDir($path); |
|
136 | 136 | |
137 | - if ( $objMakeFile->getParentFileTpl () != '' ) |
|
137 | + if ($objMakeFile->getParentFileTpl() != '') |
|
138 | 138 | { |
139 | 139 | $fileAbstract = $this->baseLocation |
140 | 140 | . DIRECTORY_SEPARATOR |
141 | - . $objMakeFile->getParentClass () . '.php'; |
|
141 | + . $objMakeFile->getParentClass() . '.php'; |
|
142 | 142 | |
143 | - $tplAbstract = $this->getParsedTplContents ( $objMakeFile->getParentFileTpl () ); |
|
144 | - self::makeSourcer ( $fileAbstract , $tplAbstract , $objMakeFile->isOverwrite () ); |
|
145 | - unset( $fileAbstract , $tplAbstract ); |
|
143 | + $tplAbstract = $this->getParsedTplContents($objMakeFile->getParentFileTpl()); |
|
144 | + self::makeSourcer($fileAbstract, $tplAbstract, $objMakeFile->isOverwrite()); |
|
145 | + unset($fileAbstract, $tplAbstract); |
|
146 | 146 | } |
147 | 147 | |
148 | - foreach ( $this->driver->getTables ( $schema ) as $key => $objTables ) |
|
148 | + foreach ($this->driver->getTables($schema) as $key => $objTables) |
|
149 | 149 | { |
150 | - $total = ceil ( $cur / $max ) * 100; |
|
151 | - printf ( "\r Creating: %6.2f%%" , $total ); |
|
152 | - $cur ++; |
|
150 | + $total = ceil($cur / $max) * 100; |
|
151 | + printf("\r Creating: %6.2f%%", $total); |
|
152 | + $cur++; |
|
153 | 153 | |
154 | 154 | $file = $path |
155 | 155 | . DIRECTORY_SEPARATOR |
156 | - . self::getClassName ( $objTables->getName () ) |
|
156 | + . self::getClassName($objTables->getName()) |
|
157 | 157 | . '.php'; |
158 | 158 | |
159 | 159 | |
160 | - $tpl = $this->getParsedTplContents ( |
|
161 | - $objMakeFile->getFileTpl () , |
|
162 | - $objMakeFile->parseRelation ( $this , $objTables ) |
|
163 | - , $objTables , $objMakeFile |
|
160 | + $tpl = $this->getParsedTplContents( |
|
161 | + $objMakeFile->getFileTpl(), |
|
162 | + $objMakeFile->parseRelation($this, $objTables) |
|
163 | + , $objTables, $objMakeFile |
|
164 | 164 | |
165 | 165 | ); |
166 | - self::makeSourcer ( $file , $tpl , $objMakeFile->isOverwrite () ); |
|
166 | + self::makeSourcer($file, $tpl, $objMakeFile->isOverwrite()); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | } |
170 | 170 | } |
171 | 171 | |
172 | - $this->reportProcess ( $cur ); |
|
172 | + $this->reportProcess($cur); |
|
173 | 173 | echo "\n\033[1;32mSuccessfully process finished!\n\033[0m"; |
174 | 174 | } |
175 | 175 | |
176 | - private function reportProcess ( $countFiles ) |
|
176 | + private function reportProcess($countFiles) |
|
177 | 177 | { |
178 | - if ( $this->config->isStatusEnabled () ) |
|
178 | + if ($this->config->isStatusEnabled()) |
|
179 | 179 | { |
180 | - $databases = count ( $this->location ); |
|
181 | - $countDir = $this->countDiretory (); |
|
182 | - $totalTable = $this->driver->getTotalTables (); |
|
180 | + $databases = count($this->location); |
|
181 | + $countDir = $this->countDiretory(); |
|
182 | + $totalTable = $this->driver->getTotalTables(); |
|
183 | 183 | echo "\n------"; |
184 | - printf ( "\n\r-Files generated:%s" , $countFiles ); |
|
185 | - printf ( "\n\r-Diretory generated:%s" , $databases * $countDir ); |
|
186 | - printf ( "\n\r-Scanned tables:%s" , $totalTable ); |
|
187 | - printf ( "\n\r-Execution time: %ssec" , $this->getRunTime () ); |
|
184 | + printf("\n\r-Files generated:%s", $countFiles); |
|
185 | + printf("\n\r-Diretory generated:%s", $databases * $countDir); |
|
186 | + printf("\n\r-Scanned tables:%s", $totalTable); |
|
187 | + printf("\n\r-Execution time: %ssec", $this->getRunTime()); |
|
188 | 188 | echo "\n------"; |
189 | 189 | } |
190 | 190 | } |
@@ -194,9 +194,9 @@ discard block |
||
194 | 194 | * |
195 | 195 | * @return AbstractAdapter[] |
196 | 196 | */ |
197 | - public function factoryMakerFile () |
|
197 | + public function factoryMakerFile() |
|
198 | 198 | { |
199 | - return $this->config->getMakeFileInstances (); |
|
199 | + return $this->config->getMakeFileInstances(); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | /** |
@@ -204,14 +204,14 @@ discard block |
||
204 | 204 | * |
205 | 205 | * @return int |
206 | 206 | */ |
207 | - public function countDiretory () |
|
207 | + public function countDiretory() |
|
208 | 208 | { |
209 | 209 | $dir = 0; |
210 | - foreach ( $this->factoryMakerFile () as $abstractAdapter ) |
|
210 | + foreach ($this->factoryMakerFile() as $abstractAdapter) |
|
211 | 211 | { |
212 | - if ( $abstractAdapter->hasDiretory () ) |
|
212 | + if ($abstractAdapter->hasDiretory()) |
|
213 | 213 | { |
214 | - $dir ++; |
|
214 | + $dir++; |
|
215 | 215 | } |
216 | 216 | } |
217 | 217 | |
@@ -226,23 +226,23 @@ discard block |
||
226 | 226 | * |
227 | 227 | * @return String |
228 | 228 | */ |
229 | - protected function getParsedTplContents ( $tplFile , $vars = array () , \Classes\Db\DbTable $objTables = null , $objMakeFile = null ) |
|
229 | + protected function getParsedTplContents($tplFile, $vars = array(), \Classes\Db\DbTable $objTables = null, $objMakeFile = null) |
|
230 | 230 | { |
231 | 231 | |
232 | - $arrUrl = array ( |
|
233 | - __DIR__ , |
|
234 | - 'templates' , |
|
235 | - $this->config->framework , |
|
232 | + $arrUrl = array( |
|
233 | + __DIR__, |
|
234 | + 'templates', |
|
235 | + $this->config->framework, |
|
236 | 236 | $tplFile |
237 | 237 | ); |
238 | 238 | |
239 | - $filePath = implode ( DIRECTORY_SEPARATOR , filter_var_array ( $arrUrl ) ); |
|
239 | + $filePath = implode(DIRECTORY_SEPARATOR, filter_var_array($arrUrl)); |
|
240 | 240 | |
241 | - extract ( $vars ); |
|
242 | - ob_start (); |
|
241 | + extract($vars); |
|
242 | + ob_start(); |
|
243 | 243 | require $filePath; |
244 | - $data = ob_get_contents (); |
|
245 | - ob_end_clean (); |
|
244 | + $data = ob_get_contents(); |
|
245 | + ob_end_clean(); |
|
246 | 246 | |
247 | 247 | return $data; |
248 | 248 | } |
@@ -1,22 +1,22 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if ( ! ini_get ( 'short_open_tag' ) ) |
|
3 | +if ( ! ini_get('short_open_tag')) |
|
4 | 4 | { |
5 | - die( "please enable short_open_tag directive in php.ini\n" ); |
|
5 | + die("please enable short_open_tag directive in php.ini\n"); |
|
6 | 6 | } |
7 | 7 | |
8 | -if ( ! ini_get ( 'register_argc_argv' ) ) |
|
8 | +if ( ! ini_get('register_argc_argv')) |
|
9 | 9 | { |
10 | - die( "please enable register_argc_argv directive in php.ini\n" ); |
|
10 | + die("please enable register_argc_argv directive in php.ini\n"); |
|
11 | 11 | } |
12 | 12 | |
13 | 13 | if (function_exists('ini_set')) { |
14 | 14 | @ini_set('display_errors', 1); |
15 | 15 | |
16 | - $memoryInBytes = function ($value) { |
|
16 | + $memoryInBytes = function($value) { |
|
17 | 17 | $unit = strtolower(substr($value, -1, 1)); |
18 | 18 | $value = (int) $value; |
19 | - switch($unit) { |
|
19 | + switch ($unit) { |
|
20 | 20 | case 'g': |
21 | 21 | $value *= 1024; |
22 | 22 | // no break (cumulative multiplier) |
@@ -38,14 +38,14 @@ discard block |
||
38 | 38 | unset($memoryInBytes, $memoryLimit); |
39 | 39 | } |
40 | 40 | |
41 | -\Phar::interceptFileFuncs (); |
|
41 | +\Phar::interceptFileFuncs(); |
|
42 | 42 | |
43 | -set_include_path ( |
|
44 | - implode ( |
|
45 | - PATH_SEPARATOR , |
|
46 | - array ( |
|
47 | - realpath ( __DIR__ ) , |
|
48 | - get_include_path () , |
|
43 | +set_include_path( |
|
44 | + implode( |
|
45 | + PATH_SEPARATOR, |
|
46 | + array( |
|
47 | + realpath(__DIR__), |
|
48 | + get_include_path(), |
|
49 | 49 | ) |
50 | 50 | ) |
51 | 51 | ); |
@@ -56,43 +56,43 @@ discard block |
||
56 | 56 | |
57 | 57 | try |
58 | 58 | { |
59 | - $_path = realpath ( |
|
60 | - str_replace ( |
|
59 | + $_path = realpath( |
|
60 | + str_replace( |
|
61 | 61 | 'phar://' |
62 | - , '' , __DIR__ |
|
62 | + , '', __DIR__ |
|
63 | 63 | ) |
64 | 64 | ); |
65 | 65 | |
66 | - $arrValid = array ( |
|
67 | - 'version' , |
|
68 | - 'help' , |
|
69 | - 'status' , |
|
70 | - 'init' , |
|
71 | - 'config-env:' , |
|
72 | - 'config-ini:' , |
|
73 | - 'database:' , |
|
74 | - 'schema:' , |
|
75 | - 'driver:' , |
|
76 | - 'framework:' , |
|
66 | + $arrValid = array( |
|
67 | + 'version', |
|
68 | + 'help', |
|
69 | + 'status', |
|
70 | + 'init', |
|
71 | + 'config-env:', |
|
72 | + 'config-ini:', |
|
73 | + 'database:', |
|
74 | + 'schema:', |
|
75 | + 'driver:', |
|
76 | + 'framework:', |
|
77 | 77 | 'path:' |
78 | 78 | ); |
79 | 79 | |
80 | - $argv = getopt ( null, $arrValid ); |
|
80 | + $argv = getopt(null, $arrValid); |
|
81 | 81 | |
82 | - if ( array_key_exists ( 'init', $argv ) ) |
|
82 | + if (array_key_exists('init', $argv)) |
|
83 | 83 | { |
84 | - $maker = new \Classes\MakerConfigFile( $argv, $_path ); |
|
84 | + $maker = new \Classes\MakerConfigFile($argv, $_path); |
|
85 | 85 | } |
86 | 86 | else |
87 | 87 | { |
88 | - $maker = new \Classes\MakerFile( new \Classes\Config( $argv, $_path ) ); |
|
88 | + $maker = new \Classes\MakerFile(new \Classes\Config($argv, $_path)); |
|
89 | 89 | } |
90 | 90 | |
91 | - $maker->run (); |
|
91 | + $maker->run(); |
|
92 | 92 | |
93 | -} catch ( \Exception $e ) |
|
93 | +} catch (\Exception $e) |
|
94 | 94 | { |
95 | - die( $e->getMessage () ); |
|
95 | + die($e->getMessage()); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | __halt_compiler(); |
99 | 99 | \ No newline at end of file |
@@ -82,8 +82,7 @@ |
||
82 | 82 | if ( array_key_exists ( 'init', $argv ) ) |
83 | 83 | { |
84 | 84 | $maker = new \Classes\MakerConfigFile( $argv, $_path ); |
85 | - } |
|
86 | - else |
|
85 | + } else |
|
87 | 86 | { |
88 | 87 | $maker = new \Classes\MakerFile( new \Classes\Config( $argv, $_path ) ); |
89 | 88 | } |
@@ -19,6 +19,6 @@ |
||
19 | 19 | |
20 | 20 | public function parseRelation ( \Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable ) |
21 | 21 | { |
22 | - return array(); |
|
22 | + return array(); |
|
23 | 23 | } |
24 | 24 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | protected $parentFileTpl = ""; |
18 | 18 | protected $fileTpl = "model.php"; |
19 | 19 | |
20 | - public function parseRelation ( \Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable ) |
|
20 | + public function parseRelation(\Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable) |
|
21 | 21 | { |
22 | 22 | return array(); |
23 | 23 | } |
@@ -28,60 +28,60 @@ |
||
28 | 28 | * |
29 | 29 | * @return string[] |
30 | 30 | */ |
31 | - public function parseRelation ( \Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable ) |
|
31 | + public function parseRelation(\Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable) |
|
32 | 32 | { |
33 | 33 | $referenceMap = ''; |
34 | - $references = array (); |
|
34 | + $references = array(); |
|
35 | 35 | $dependentTables = ''; |
36 | - $dependents = array (); |
|
37 | - foreach ( $dbTable->getForeingkeys () as $fk ) |
|
36 | + $dependents = array(); |
|
37 | + foreach ($dbTable->getForeingkeys() as $fk) |
|
38 | 38 | { |
39 | - $constrant = $fk->getFks (); |
|
40 | - $references[] = sprintf ( |
|
39 | + $constrant = $fk->getFks(); |
|
40 | + $references[] = sprintf( |
|
41 | 41 | " |
42 | 42 | '%s' => array ( |
43 | 43 | 'columns' => '%s' , |
44 | 44 | 'refTableClass' => '%s', |
45 | 45 | 'refColumns' =>'%s' |
46 | 46 | )", |
47 | - AbstractMaker::getClassName ( $constrant->getNameConstrant () ), |
|
48 | - $fk->getName (), |
|
49 | - $makerFile->getConfig ()->createClassNamespace ( $constrant ) |
|
47 | + AbstractMaker::getClassName($constrant->getNameConstrant()), |
|
48 | + $fk->getName(), |
|
49 | + $makerFile->getConfig()->createClassNamespace($constrant) |
|
50 | 50 | . ZendFrameworkOne::SEPARETOR |
51 | 51 | . 'DbTable' |
52 | 52 | . ZendFrameworkOne::SEPARETOR |
53 | - . AbstractMaker::getClassName ( $constrant->getTable () ), |
|
54 | - $constrant->getColumn () |
|
53 | + . AbstractMaker::getClassName($constrant->getTable()), |
|
54 | + $constrant->getColumn() |
|
55 | 55 | |
56 | 56 | ); |
57 | 57 | } |
58 | 58 | |
59 | - if ( sizeof ( $references ) > 0 ) |
|
59 | + if (sizeof($references) > 0) |
|
60 | 60 | { |
61 | 61 | $referenceMap = "protected \$_referenceMap = array(" . |
62 | - join ( ',', $references ) . "\n );"; |
|
62 | + join(',', $references) . "\n );"; |
|
63 | 63 | } |
64 | 64 | |
65 | - foreach ( $dbTable->getDependences () as $objColumn ) |
|
65 | + foreach ($dbTable->getDependences() as $objColumn) |
|
66 | 66 | { |
67 | - foreach ( $objColumn->getDependences () as $dependence ) |
|
67 | + foreach ($objColumn->getDependences() as $dependence) |
|
68 | 68 | { |
69 | - $dependents[] = $makerFile->getConfig ()->createClassNamespace ( $dependence ) |
|
69 | + $dependents[] = $makerFile->getConfig()->createClassNamespace($dependence) |
|
70 | 70 | . ZendFrameworkOne::SEPARETOR |
71 | 71 | . 'DbTable' |
72 | 72 | . ZendFrameworkOne::SEPARETOR |
73 | - . AbstractMaker::getClassName ( $dependence->getTable () ); |
|
73 | + . AbstractMaker::getClassName($dependence->getTable()); |
|
74 | 74 | } |
75 | 75 | } |
76 | 76 | |
77 | - if ( sizeof ( $dependents ) > 0 ) |
|
77 | + if (sizeof($dependents) > 0) |
|
78 | 78 | { |
79 | 79 | $dependentTables = "protected \$_dependentTables = array(\n '" . |
80 | - join ( "',\n '", $dependents ) . "'\n );"; |
|
80 | + join("',\n '", $dependents) . "'\n );"; |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | |
84 | - return array ( |
|
84 | + return array( |
|
85 | 85 | 'referenceMap' => $referenceMap, |
86 | 86 | 'dependentTables' => $dependentTables |
87 | 87 | ); |
@@ -117,7 +117,7 @@ |
||
117 | 117 | */ |
118 | 118 | public function isOverwrite () |
119 | 119 | { |
120 | - return $this->overwrite; |
|
120 | + return $this->overwrite; |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | } |
@@ -11,29 +11,29 @@ discard block |
||
11 | 11 | /** |
12 | 12 | * @type AbstractAdapter[] |
13 | 13 | */ |
14 | - private static $_instance = array (); |
|
14 | + private static $_instance = array(); |
|
15 | 15 | |
16 | 16 | /** |
17 | 17 | * |
18 | 18 | */ |
19 | - private function __construct () |
|
19 | + private function __construct() |
|
20 | 20 | { |
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
24 | 24 | * @return \Classes\AdapterMakerFile\AbstractAdapter |
25 | 25 | */ |
26 | - public static function getInstance () |
|
26 | + public static function getInstance() |
|
27 | 27 | { |
28 | - $class = get_called_class (); |
|
29 | - $arr = explode ( '\\', $class ); |
|
30 | - $classEnd = end ( $arr ); |
|
31 | - if ( !isset( self::$_instance[ $classEnd ] ) ) |
|
28 | + $class = get_called_class(); |
|
29 | + $arr = explode('\\', $class); |
|
30 | + $classEnd = end($arr); |
|
31 | + if ( ! isset(self::$_instance[$classEnd])) |
|
32 | 32 | { |
33 | - self::$_instance[ $classEnd ] = new $class(); |
|
33 | + self::$_instance[$classEnd] = new $class(); |
|
34 | 34 | } |
35 | 35 | |
36 | - return self::$_instance[ $classEnd ]; |
|
36 | + return self::$_instance[$classEnd]; |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * |
43 | 43 | * @return string[] |
44 | 44 | */ |
45 | - public abstract function parseRelation ( \Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable ); |
|
45 | + public abstract function parseRelation(\Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable); |
|
46 | 46 | |
47 | 47 | /** |
48 | 48 | * @type string |
@@ -74,15 +74,15 @@ discard block |
||
74 | 74 | * |
75 | 75 | * @return bool |
76 | 76 | */ |
77 | - public function hasDiretory () |
|
77 | + public function hasDiretory() |
|
78 | 78 | { |
79 | - return !empty( $this->pastName ); |
|
79 | + return ! empty($this->pastName); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
83 | 83 | * @return string |
84 | 84 | */ |
85 | - public function getParentClass () |
|
85 | + public function getParentClass() |
|
86 | 86 | { |
87 | 87 | return $this->parentClass; |
88 | 88 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | /** |
92 | 92 | * @return string |
93 | 93 | */ |
94 | - public function getFileTpl () |
|
94 | + public function getFileTpl() |
|
95 | 95 | { |
96 | 96 | return $this->fileTpl; |
97 | 97 | } |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | /** |
100 | 100 | * @return string |
101 | 101 | */ |
102 | - public function getParentFileTpl () |
|
102 | + public function getParentFileTpl() |
|
103 | 103 | { |
104 | 104 | return $this->parentFileTpl; |
105 | 105 | } |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | /** |
108 | 108 | * @return string |
109 | 109 | */ |
110 | - public function getPastName () |
|
110 | + public function getPastName() |
|
111 | 111 | { |
112 | 112 | return $this->pastName; |
113 | 113 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | /** |
116 | 116 | * @return bool |
117 | 117 | */ |
118 | - public function isOverwrite () |
|
118 | + public function isOverwrite() |
|
119 | 119 | { |
120 | 120 | return $this->overwrite; |
121 | 121 | } |