@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | |
122 | 122 | /** |
123 | 123 | * Método que guarda en fichero los datos pasados |
124 | - * @param $path |
|
124 | + * @param string $path |
|
125 | 125 | * @param $data |
126 | 126 | * @param int $transform |
127 | 127 | * @param boolean $absolutePath |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | |
157 | 157 | /** |
158 | 158 | * Método estático que revisa si se necesita cachear la respuesta de un servicio o no |
159 | - * @return integer|boolean |
|
159 | + * @return integer |
|
160 | 160 | */ |
161 | 161 | public static function needCache() |
162 | 162 | { |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | private function saveTextToFile($data, $path, $absolute = false) |
31 | 31 | { |
32 | - $absolutePath = ($absolute) ? $path : CACHE_DIR . DIRECTORY_SEPARATOR . $path; |
|
32 | + $absolutePath = ($absolute) ? $path : CACHE_DIR.DIRECTORY_SEPARATOR.$path; |
|
33 | 33 | $filename = basename($absolutePath); |
34 | 34 | Config::createDir(str_replace($filename, "", $absolutePath)); |
35 | 35 | if (false === file_put_contents($absolutePath, $data)) { |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | public function getDataFromFile($path, $transform = Cache::TEXT, $absolute = false) |
49 | 49 | { |
50 | 50 | $data = null; |
51 | - $absolutePath = ($absolute) ? $path : CACHE_DIR . DIRECTORY_SEPARATOR . $path; |
|
51 | + $absolutePath = ($absolute) ? $path : CACHE_DIR.DIRECTORY_SEPARATOR.$path; |
|
52 | 52 | if (file_exists($absolutePath)) { |
53 | 53 | $data = file_get_contents($absolutePath); |
54 | 54 | } |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | */ |
65 | 65 | private function hasExpiredCache($path, $expires = 300, $absolute = false) |
66 | 66 | { |
67 | - $absolutePath = ($absolute) ? $path : CACHE_DIR . DIRECTORY_SEPARATOR . $path; |
|
67 | + $absolutePath = ($absolute) ? $path : CACHE_DIR.DIRECTORY_SEPARATOR.$path; |
|
68 | 68 | $lasModificationDate = filemtime($absolutePath); |
69 | 69 | return ($lasModificationDate + $expires <= time()); |
70 | 70 | } |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | break; |
88 | 88 | case Cache::GZIP: |
89 | 89 | // TODO implementar |
90 | - if(function_exists('gzuncompress')) { |
|
90 | + if (function_exists('gzuncompress')) { |
|
91 | 91 | $data = gzuncompress($data); |
92 | 92 | } |
93 | 93 | break; |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $data = Cache::transformData($data, Cache::GZIP); |
113 | 113 | break; |
114 | 114 | case Cache::GZIP: |
115 | - if(function_exists('gzcompress')) { |
|
115 | + if (function_exists('gzcompress')) { |
|
116 | 116 | $data = gzcompress($data); |
117 | 117 | } |
118 | 118 | break; |
@@ -144,11 +144,11 @@ discard block |
||
144 | 144 | public function readFromCache($path, $expires = 300, callable $function, $transform = Cache::TEXT) |
145 | 145 | { |
146 | 146 | $data = null; |
147 | - if (file_exists(CACHE_DIR . DIRECTORY_SEPARATOR . $path)) { |
|
147 | + if (file_exists(CACHE_DIR.DIRECTORY_SEPARATOR.$path)) { |
|
148 | 148 | if (null !== $function && $this->hasExpiredCache($path, $expires)) { |
149 | 149 | $data = call_user_func($function); |
150 | 150 | $this->storeData($path, $data, $transform); |
151 | - } else { |
|
151 | + }else { |
|
152 | 152 | $data = $this->getDataFromFile($path, $transform); |
153 | 153 | } |
154 | 154 | } |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | $hash = ""; |
179 | 179 | $action = Security::getInstance()->getSessionKey("__CACHE__"); |
180 | 180 | if (null !== $action && $action["cache"] > 0) { |
181 | - $hash = $action["http"] . " " . $action["slug"]; |
|
181 | + $hash = $action["http"]." ".$action["slug"]; |
|
182 | 182 | } |
183 | 183 | return sha1($hash); |
184 | 184 | } |
@@ -32,18 +32,18 @@ |
||
32 | 32 | 'robots' => 'robots.txt', |
33 | 33 | ]; |
34 | 34 | foreach ($files as $templates => $filename) { |
35 | - $text = \PSFS\base\Template::getInstance()->dump("generator/html/". $templates . '.html.twig'); |
|
36 | - if(false === file_put_contents($path . DIRECTORY_SEPARATOR . $filename, $text)) { |
|
37 | - $output->writeln('Can\t create the file ' . $filename); |
|
38 | - } else { |
|
39 | - $output->writeln($filename . ' created successfully'); |
|
35 | + $text = \PSFS\base\Template::getInstance()->dump("generator/html/".$templates.'.html.twig'); |
|
36 | + if (false === file_put_contents($path.DIRECTORY_SEPARATOR.$filename, $text)) { |
|
37 | + $output->writeln('Can\t create the file '.$filename); |
|
38 | + }else { |
|
39 | + $output->writeln($filename.' created successfully'); |
|
40 | 40 | } |
41 | 41 | } |
42 | 42 | |
43 | 43 | //Export base locale translations |
44 | - if(!file_exists(BASE_DIR.DIRECTORY_SEPARATOR.'locale')) { |
|
44 | + if (!file_exists(BASE_DIR.DIRECTORY_SEPARATOR.'locale')) { |
|
45 | 45 | \PSFS\base\config\Config::createDir(BASE_DIR.DIRECTORY_SEPARATOR.'locale'); |
46 | - \PSFS\Services\GeneratorService::copyr(SOURCE_DIR . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'locale', BASE_DIR . DIRECTORY_SEPARATOR . 'locale'); |
|
46 | + \PSFS\Services\GeneratorService::copyr(SOURCE_DIR.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'locale', BASE_DIR.DIRECTORY_SEPARATOR.'locale'); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | $output->writeln("Document root generado en ".$path); |
@@ -6,7 +6,9 @@ discard block |
||
6 | 6 | use Symfony\Component\Console\Input\InputInterface; |
7 | 7 | use Symfony\Component\Console\Output\OutputInterface; |
8 | 8 | |
9 | - if (!isset($console)) $console = new Application(); |
|
9 | + if (!isset($console)) { |
|
10 | + $console = new Application(); |
|
11 | + } |
|
10 | 12 | $console |
11 | 13 | ->register('psfs:create:root') |
12 | 14 | ->setDefinition(array( |
@@ -16,7 +18,9 @@ discard block |
||
16 | 18 | ->setCode(function(InputInterface $input, OutputInterface $output) { |
17 | 19 | // Creates the html path |
18 | 20 | $path = $input->getArgument('path'); |
19 | - if (empty($path)) $path = WEB_DIR; |
|
21 | + if (empty($path)) { |
|
22 | + $path = WEB_DIR; |
|
23 | + } |
|
20 | 24 | \PSFS\base\config\Config::createDir($path); |
21 | 25 | $paths = array("js", "css", "img", "media", "font"); |
22 | 26 | foreach ($paths as $htmlPath) { |
@@ -28,7 +28,7 @@ |
||
28 | 28 | * @GET |
29 | 29 | * @route /admin/routes/show |
30 | 30 | * @visible false |
31 | - * @return mixed |
|
31 | + * @return string|null |
|
32 | 32 | */ |
33 | 33 | public function getRouting() |
34 | 34 | { |
@@ -51,7 +51,7 @@ |
||
51 | 51 | $router->simpatize(); |
52 | 52 | Security::getInstance()->setFlash("callback_message", _("Rutas generadas correctamente")); |
53 | 53 | Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-routes", true)); |
54 | - } catch(\Exception $e) { |
|
54 | + }catch (\Exception $e) { |
|
55 | 55 | Logger::log($e->getMessage(), LOG_ERR); |
56 | 56 | Security::getInstance()->setFlash("callback_message", _("Algo no ha salido bien, revisa los logs")); |
57 | 57 | Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-routes", true)); |
@@ -38,8 +38,8 @@ |
||
38 | 38 | //Generating the templates translations |
39 | 39 | $translations = $this->tpl->regenerateTemplates(); |
40 | 40 | |
41 | - $locale_path = realpath(BASE_DIR . DIRECTORY_SEPARATOR . 'locale'); |
|
42 | - $locale_path .= DIRECTORY_SEPARATOR . $locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR; |
|
41 | + $locale_path = realpath(BASE_DIR.DIRECTORY_SEPARATOR.'locale'); |
|
42 | + $locale_path .= DIRECTORY_SEPARATOR.$locale.DIRECTORY_SEPARATOR.'LC_MESSAGES'.DIRECTORY_SEPARATOR; |
|
43 | 43 | |
44 | 44 | //xgettext localizations |
45 | 45 | $translations = array_merge($translations, GeneratorService::findTranslations(SOURCE_DIR, $locale)); |
@@ -33,7 +33,9 @@ |
||
33 | 33 | public function getTranslations($locale) |
34 | 34 | { |
35 | 35 | //Default locale |
36 | - if (null === $locale) $locale = $this->config->get("default_language"); |
|
36 | + if (null === $locale) { |
|
37 | + $locale = $this->config->get("default_language"); |
|
38 | + } |
|
37 | 39 | |
38 | 40 | //Generating the templates translations |
39 | 41 | $translations = $this->tpl->regenerateTemplates(); |
@@ -25,10 +25,10 @@ discard block |
||
25 | 25 | public function getConfigParams() { |
26 | 26 | $response = array_merge(Config::$required, Config::$optional); |
27 | 27 | $domains = Router::getInstance()->getDomains(); |
28 | - foreach($domains as $domain => $routes) { |
|
28 | + foreach ($domains as $domain => $routes) { |
|
29 | 29 | $pDomain = str_replace('@', '', $domain); |
30 | 30 | $pDomain = str_replace('/', '', $pDomain); |
31 | - $response[] = strtolower($pDomain) . '.api.secret'; |
|
31 | + $response[] = strtolower($pDomain).'.api.secret'; |
|
32 | 32 | } |
33 | 33 | return $this->json($response); |
34 | 34 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | */ |
43 | 43 | public function config() |
44 | 44 | { |
45 | - Logger::log("Config loaded executed by " . $this->getRequest()->getRequestUri()); |
|
45 | + Logger::log("Config loaded executed by ".$this->getRequest()->getRequestUri()); |
|
46 | 46 | /* @var $form \PSFS\base\config\ConfigForm */ |
47 | 47 | $form = new ConfigForm(); |
48 | 48 | $form->build(); |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | } |
80 | 80 | Security::getInstance()->setFlash("callback_message", _("Configuración actualizada correctamente")); |
81 | 81 | Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-config", true)); |
82 | - } else { |
|
82 | + }else { |
|
83 | 83 | throw new \HttpException(_('Error al guardar la configuración, prueba a cambiar los permisos'), 403); |
84 | 84 | } |
85 | 85 | } |
@@ -28,7 +28,7 @@ |
||
28 | 28 | * @GET |
29 | 29 | * @route /admin/routes/show |
30 | 30 | * @visible false |
31 | - * @return mixed |
|
31 | + * @return string|null |
|
32 | 32 | */ |
33 | 33 | public function getRouting() |
34 | 34 | { |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | */ |
31 | 31 | public function generateModule() |
32 | 32 | { |
33 | - Logger::log("Arranque generador de módulos al solicitar " . $this->getRequest()->getRequestUri()); |
|
33 | + Logger::log("Arranque generador de módulos al solicitar ".$this->getRequest()->getRequestUri()); |
|
34 | 34 | /* @var $form \PSFS\base\config\ConfigForm */ |
35 | 35 | $form = new ModuleForm(); |
36 | 36 | $form->build(); |
@@ -61,9 +61,9 @@ discard block |
||
61 | 61 | $this->gen->createStructureModule($module, $force, $type, (bool)$is_module); |
62 | 62 | Security::getInstance()->setFlash("callback_message", str_replace("%s", $module, _("Módulo %s generado correctamente"))); |
63 | 63 | Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-module", true)); |
64 | - } catch (\Exception $e) { |
|
64 | + }catch (\Exception $e) { |
|
65 | 65 | pre($e->getMessage(), true); |
66 | - Logger::getInstance()->infoLog($e->getMessage() . " [" . $e->getFile() . ":" . $e->getLine() . "]"); |
|
66 | + Logger::getInstance()->infoLog($e->getMessage()." [".$e->getFile().":".$e->getLine()."]"); |
|
67 | 67 | throw new ConfigException('Error al generar el módulo, prueba a cambiar los permisos', 403); |
68 | 68 | } |
69 | 69 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | /** |
28 | 28 | * Método que revisa las traducciones directorio a directorio |
29 | - * @param $path |
|
29 | + * @param string $path |
|
30 | 30 | * @param $locale |
31 | 31 | * @return array |
32 | 32 | */ |
@@ -99,8 +99,8 @@ discard block |
||
99 | 99 | |
100 | 100 | /** |
101 | 101 | * Servicio que genera la estructura base |
102 | - * @param $module |
|
103 | - * @param $mod_path |
|
102 | + * @param string $module |
|
103 | + * @param string $mod_path |
|
104 | 104 | * @param boolean $isModule |
105 | 105 | */ |
106 | 106 | private function createModulePathTree($module, $mod_path, $isModule = false) |
@@ -453,7 +453,7 @@ discard block |
||
453 | 453 | * Method that copy resources recursively |
454 | 454 | * @param string $dest |
455 | 455 | * @param boolean $force |
456 | - * @param $filename_path |
|
456 | + * @param string $filename_path |
|
457 | 457 | * @param boolean $debug |
458 | 458 | */ |
459 | 459 | public static function copyResources($dest, $force, $filename_path, $debug) |
@@ -32,24 +32,24 @@ discard block |
||
32 | 32 | */ |
33 | 33 | public static function findTranslations($path, $locale) |
34 | 34 | { |
35 | - $locale_path = realpath(BASE_DIR . DIRECTORY_SEPARATOR . 'locale'); |
|
36 | - $locale_path .= DIRECTORY_SEPARATOR . $locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR; |
|
35 | + $locale_path = realpath(BASE_DIR.DIRECTORY_SEPARATOR.'locale'); |
|
36 | + $locale_path .= DIRECTORY_SEPARATOR.$locale.DIRECTORY_SEPARATOR.'LC_MESSAGES'.DIRECTORY_SEPARATOR; |
|
37 | 37 | |
38 | 38 | $translations = array(); |
39 | 39 | if (file_exists($path)) { |
40 | 40 | $d = dir($path); |
41 | 41 | while (false !== ($dir = $d->read())) { |
42 | 42 | Config::createDir($locale_path); |
43 | - if (!file_exists($locale_path . 'translations.po')) { |
|
44 | - file_put_contents($locale_path . 'translations.po', ''); |
|
43 | + if (!file_exists($locale_path.'translations.po')) { |
|
44 | + file_put_contents($locale_path.'translations.po', ''); |
|
45 | 45 | } |
46 | - $inspect_path = realpath($path . DIRECTORY_SEPARATOR . $dir); |
|
47 | - $cmd_php = "export PATH=\$PATH:/opt/local/bin; xgettext " . |
|
48 | - $inspect_path . DIRECTORY_SEPARATOR . |
|
46 | + $inspect_path = realpath($path.DIRECTORY_SEPARATOR.$dir); |
|
47 | + $cmd_php = "export PATH=\$PATH:/opt/local/bin; xgettext ". |
|
48 | + $inspect_path.DIRECTORY_SEPARATOR. |
|
49 | 49 | "*.php --from-code=UTF-8 -j -L PHP --debug --force-po -o {$locale_path}translations.po"; |
50 | - if (is_dir($path . DIRECTORY_SEPARATOR . $dir) && preg_match('/^\./', $dir) == 0) { |
|
51 | - $res = _('Revisando directorio: ') . $inspect_path; |
|
52 | - $res .= _('Comando ejecutado: ') . $cmd_php; |
|
50 | + if (is_dir($path.DIRECTORY_SEPARATOR.$dir) && preg_match('/^\./', $dir) == 0) { |
|
51 | + $res = _('Revisando directorio: ').$inspect_path; |
|
52 | + $res .= _('Comando ejecutado: ').$cmd_php; |
|
53 | 53 | $res .= shell_exec($cmd_php); |
54 | 54 | usleep(10); |
55 | 55 | $translations[] = $res; |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | */ |
71 | 71 | public function createStructureModule($module, $force = false, $type = "", $isModule = false) |
72 | 72 | { |
73 | - $mod_path = CORE_DIR . DIRECTORY_SEPARATOR; |
|
73 | + $mod_path = CORE_DIR.DIRECTORY_SEPARATOR; |
|
74 | 74 | $module = ucfirst($module); |
75 | 75 | $this->createModulePath($module, $mod_path, $isModule); |
76 | 76 | $this->createModulePathTree($module, $mod_path, $isModule); |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | Config::createDir($mod_path); |
94 | 94 | // Create module path |
95 | 95 | if (false === $isModule) { |
96 | - Config::createDir($mod_path . $module); |
|
96 | + Config::createDir($mod_path.$module); |
|
97 | 97 | } |
98 | 98 | } |
99 | 99 | |
@@ -110,20 +110,20 @@ discard block |
||
110 | 110 | $paths = [ |
111 | 111 | "Api", "Api/base", "Config", "Controller", "Form", "Models", "Public", "Templates", "Services", "Test" |
112 | 112 | ]; |
113 | - $module_path = $isModule ? $mod_path : $mod_path . $module; |
|
113 | + $module_path = $isModule ? $mod_path : $mod_path.$module; |
|
114 | 114 | foreach ($paths as $path) { |
115 | - Config::createDir($module_path . DIRECTORY_SEPARATOR . $path); |
|
115 | + Config::createDir($module_path.DIRECTORY_SEPARATOR.$path); |
|
116 | 116 | } |
117 | 117 | //Creamos las carpetas de los assets |
118 | 118 | $htmlPaths = array("css", "js", "img", "media", "font"); |
119 | 119 | foreach ($htmlPaths as $path) { |
120 | - Config::createDir($module_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . $path); |
|
120 | + Config::createDir($module_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR.$path); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | if ($isModule) { |
124 | 124 | return $this->writeTemplateToFile(json_encode([ |
125 | - "module" => "\\" . preg_replace('/(\\\|\/)/', '\\\\', $module), |
|
126 | - ], JSON_PRETTY_PRINT), $mod_path . DIRECTORY_SEPARATOR . "module.json", true); |
|
125 | + "module" => "\\".preg_replace('/(\\\|\/)/', '\\\\', $module), |
|
126 | + ], JSON_PRETTY_PRINT), $mod_path.DIRECTORY_SEPARATOR."module.json", true); |
|
127 | 127 | } |
128 | 128 | } |
129 | 129 | |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | */ |
138 | 138 | private function createModuleBaseFiles($module, $mod_path, $force = false, $controllerType = '', $isModule = false) |
139 | 139 | { |
140 | - $module_path = $isModule ? $mod_path : $mod_path . $module; |
|
140 | + $module_path = $isModule ? $mod_path : $mod_path.$module; |
|
141 | 141 | $this->generateControllerTemplate($module, $module_path, $force, $controllerType); |
142 | 142 | $this->generateServiceTemplate($module, $module_path, $force); |
143 | 143 | $this->genereateAutoloaderTemplate($module, $module_path, $force, $isModule); |
@@ -156,24 +156,24 @@ discard block |
||
156 | 156 | */ |
157 | 157 | private function createModuleModels($module, $path, $isModule = false) |
158 | 158 | { |
159 | - $module_path = $isModule ? $path : $path . $module; |
|
160 | - $module_path = str_replace(CORE_DIR . DIRECTORY_SEPARATOR, '', $module_path); |
|
159 | + $module_path = $isModule ? $path : $path.$module; |
|
160 | + $module_path = str_replace(CORE_DIR.DIRECTORY_SEPARATOR, '', $module_path); |
|
161 | 161 | //Generamos las clases de propel y la configuración |
162 | - $exec = "export PATH=\$PATH:/opt/local/bin; " . BASE_DIR . DIRECTORY_SEPARATOR . |
|
163 | - "vendor" . DIRECTORY_SEPARATOR . "bin" . DIRECTORY_SEPARATOR . "propel "; |
|
164 | - $schemaOpt = " --schema-dir=" . CORE_DIR . DIRECTORY_SEPARATOR . $module_path . |
|
165 | - DIRECTORY_SEPARATOR . "Config"; |
|
166 | - $opt = " --config-dir=" . CORE_DIR . DIRECTORY_SEPARATOR . $module_path . DIRECTORY_SEPARATOR . |
|
167 | - "Config --output-dir=" . CORE_DIR . " --verbose"; |
|
168 | - $this->log->infoLog("[GENERATOR] Ejecutamos propel:\n" . $exec . "build" . $opt . $schemaOpt); |
|
169 | - $ret = shell_exec($exec . "build" . $opt . $schemaOpt); |
|
162 | + $exec = "export PATH=\$PATH:/opt/local/bin; ".BASE_DIR.DIRECTORY_SEPARATOR. |
|
163 | + "vendor".DIRECTORY_SEPARATOR."bin".DIRECTORY_SEPARATOR."propel "; |
|
164 | + $schemaOpt = " --schema-dir=".CORE_DIR.DIRECTORY_SEPARATOR.$module_path. |
|
165 | + DIRECTORY_SEPARATOR."Config"; |
|
166 | + $opt = " --config-dir=".CORE_DIR.DIRECTORY_SEPARATOR.$module_path.DIRECTORY_SEPARATOR. |
|
167 | + "Config --output-dir=".CORE_DIR." --verbose"; |
|
168 | + $this->log->infoLog("[GENERATOR] Ejecutamos propel:\n".$exec."build".$opt.$schemaOpt); |
|
169 | + $ret = shell_exec($exec."build".$opt.$schemaOpt); |
|
170 | 170 | |
171 | 171 | $this->log->infoLog("[GENERATOR] Generamos clases invocando a propel:\n $ret"); |
172 | - $ret = shell_exec($exec . "sql:build" . $opt . " --output-dir=" . CORE_DIR . DIRECTORY_SEPARATOR . |
|
173 | - $module_path . DIRECTORY_SEPARATOR . "Config" . $schemaOpt); |
|
172 | + $ret = shell_exec($exec."sql:build".$opt." --output-dir=".CORE_DIR.DIRECTORY_SEPARATOR. |
|
173 | + $module_path.DIRECTORY_SEPARATOR."Config".$schemaOpt); |
|
174 | 174 | $this->log->infoLog("[GENERATOR] Generamos sql invocando a propel:\n $ret"); |
175 | - $ret = shell_exec($exec . "config:convert" . $opt . " --output-dir=" . CORE_DIR . DIRECTORY_SEPARATOR . |
|
176 | - $module_path . DIRECTORY_SEPARATOR . "Config"); |
|
175 | + $ret = shell_exec($exec."config:convert".$opt." --output-dir=".CORE_DIR.DIRECTORY_SEPARATOR. |
|
176 | + $module_path.DIRECTORY_SEPARATOR."Config"); |
|
177 | 177 | $this->log->infoLog("[GENERATOR] Generamos configuración invocando a propel:\n $ret"); |
178 | 178 | } |
179 | 179 | |
@@ -194,23 +194,23 @@ discard block |
||
194 | 194 | "namespace" => preg_replace('/(\\\|\/)/', '\\', $module), |
195 | 195 | "url" => preg_replace('/(\\\|\/)/', '/', $module), |
196 | 196 | "class" => $class, |
197 | - "controllerType" => $class . "Base", |
|
197 | + "controllerType" => $class."Base", |
|
198 | 198 | "is_base" => false |
199 | 199 | )); |
200 | - $controller = $this->writeTemplateToFile($controllerBody, $mod_path . DIRECTORY_SEPARATOR . "Controller" . |
|
201 | - DIRECTORY_SEPARATOR . "{$class}Controller.php", $force); |
|
200 | + $controller = $this->writeTemplateToFile($controllerBody, $mod_path.DIRECTORY_SEPARATOR."Controller". |
|
201 | + DIRECTORY_SEPARATOR."{$class}Controller.php", $force); |
|
202 | 202 | |
203 | 203 | $controllerBody = $this->tpl->dump("generator/controller.template.twig", array( |
204 | 204 | "module" => $module, |
205 | 205 | "namespace" => preg_replace('/(\\\|\/)/', '\\', $module), |
206 | 206 | "url" => preg_replace('/(\\\|\/)/', '/', $module), |
207 | - "class" => $class . "Base", |
|
207 | + "class" => $class."Base", |
|
208 | 208 | "service" => $class, |
209 | 209 | "controllerType" => $controllerType, |
210 | 210 | "is_base" => true |
211 | 211 | )); |
212 | - $controllerBase = $this->writeTemplateToFile($controllerBody, $mod_path . DIRECTORY_SEPARATOR . "Controller" . |
|
213 | - DIRECTORY_SEPARATOR . "base" . DIRECTORY_SEPARATOR . "{$class}BaseController.php", true); |
|
212 | + $controllerBase = $this->writeTemplateToFile($controllerBody, $mod_path.DIRECTORY_SEPARATOR."Controller". |
|
213 | + DIRECTORY_SEPARATOR."base".DIRECTORY_SEPARATOR."{$class}BaseController.php", true); |
|
214 | 214 | return ($controller && $controllerBase); |
215 | 215 | } |
216 | 216 | |
@@ -225,11 +225,9 @@ discard block |
||
225 | 225 | { |
226 | 226 | $created = true; |
227 | 227 | $modelPath = $isModule ? |
228 | - $mod_path . DIRECTORY_SEPARATOR . 'Models' : |
|
229 | - $mod_path . $module . DIRECTORY_SEPARATOR . 'Models'; |
|
228 | + $mod_path.DIRECTORY_SEPARATOR.'Models' : $mod_path.$module.DIRECTORY_SEPARATOR.'Models'; |
|
230 | 229 | $api_path = $isModule ? |
231 | - $mod_path . DIRECTORY_SEPARATOR . 'Api' : |
|
232 | - $mod_path . $module . DIRECTORY_SEPARATOR . 'Api'; |
|
230 | + $mod_path.DIRECTORY_SEPARATOR.'Api' : $mod_path.$module.DIRECTORY_SEPARATOR.'Api'; |
|
233 | 231 | if (file_exists($modelPath)) { |
234 | 232 | $dir = dir($modelPath); |
235 | 233 | while ($file = $dir->read()) { |
@@ -257,7 +255,7 @@ discard block |
||
257 | 255 | //Generamos el fichero de configuración |
258 | 256 | $this->log->infoLog("Generamos fichero vacío de configuración"); |
259 | 257 | return $this->writeTemplateToFile("<?php\n\t", |
260 | - $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "config.php", |
|
258 | + $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."config.php", |
|
261 | 259 | $force); |
262 | 260 | } |
263 | 261 | |
@@ -272,10 +270,10 @@ discard block |
||
272 | 270 | //Generamos el fichero de configuración |
273 | 271 | $this->log->infoLog("Generamos ficheros para assets base"); |
274 | 272 | $css = $this->writeTemplateToFile("/* CSS3 STYLES */\n\n", |
275 | - $mod_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . "css" . DIRECTORY_SEPARATOR . "styles.css", |
|
273 | + $mod_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR."css".DIRECTORY_SEPARATOR."styles.css", |
|
276 | 274 | $force); |
277 | 275 | $js = $this->writeTemplateToFile("/* APP MODULE JS */\n\n(function() {\n\t'use strict';\n})();", |
278 | - $mod_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . "js" . DIRECTORY_SEPARATOR . "app.js", |
|
276 | + $mod_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR."js".DIRECTORY_SEPARATOR."app.js", |
|
279 | 277 | $force); |
280 | 278 | return ($css && $js); |
281 | 279 | } |
@@ -297,7 +295,7 @@ discard block |
||
297 | 295 | "class" => $class, |
298 | 296 | )); |
299 | 297 | return $this->writeTemplateToFile($controller, |
300 | - $mod_path . DIRECTORY_SEPARATOR . "Services" . DIRECTORY_SEPARATOR . "{$class}Service.php", |
|
298 | + $mod_path.DIRECTORY_SEPARATOR."Services".DIRECTORY_SEPARATOR."{$class}Service.php", |
|
301 | 299 | $force); |
302 | 300 | } |
303 | 301 | |
@@ -318,7 +316,7 @@ discard block |
||
318 | 316 | "regex" => preg_replace('/(\\\|\/)/m', '\\\\\\\\\\\\', $module), |
319 | 317 | "is_module" => $isModule, |
320 | 318 | )); |
321 | - return $this->writeTemplateToFile($autoloader, $mod_path . DIRECTORY_SEPARATOR . "autoload.php", $force); |
|
319 | + return $this->writeTemplateToFile($autoloader, $mod_path.DIRECTORY_SEPARATOR."autoload.php", $force); |
|
322 | 320 | } |
323 | 321 | |
324 | 322 | /** |
@@ -338,7 +336,7 @@ discard block |
||
338 | 336 | "db" => $this->config->get("db_name"), |
339 | 337 | )); |
340 | 338 | return $this->writeTemplateToFile($schema, |
341 | - $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "schema.xml", |
|
339 | + $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."schema.xml", |
|
342 | 340 | $force); |
343 | 341 | } |
344 | 342 | |
@@ -361,7 +359,7 @@ discard block |
||
361 | 359 | "namespace" => preg_replace('/(\\\|\/)/', '', $module), |
362 | 360 | )); |
363 | 361 | return $this->writeTemplateToFile($build_properties, |
364 | - $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "propel.yml", |
|
362 | + $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."propel.yml", |
|
365 | 363 | $force); |
366 | 364 | } |
367 | 365 | |
@@ -379,7 +377,7 @@ discard block |
||
379 | 377 | "module" => $module, |
380 | 378 | )); |
381 | 379 | return $this->writeTemplateToFile($index, |
382 | - $mod_path . DIRECTORY_SEPARATOR . "Templates" . DIRECTORY_SEPARATOR . "index.html.twig", |
|
380 | + $mod_path.DIRECTORY_SEPARATOR."Templates".DIRECTORY_SEPARATOR."index.html.twig", |
|
383 | 381 | $force); |
384 | 382 | } |
385 | 383 | |
@@ -397,11 +395,11 @@ discard block |
||
397 | 395 | try { |
398 | 396 | $this->cache->storeData($filename, $fileContent, Cache::TEXT, true); |
399 | 397 | $created = true; |
400 | - } catch (\Exception $e) { |
|
398 | + }catch (\Exception $e) { |
|
401 | 399 | $this->log->errorLog($e->getMessage()); |
402 | 400 | } |
403 | - } else { |
|
404 | - $this->log->errorLog($filename . _(' not exists or cant write')); |
|
401 | + }else { |
|
402 | + $this->log->errorLog($filename._(' not exists or cant write')); |
|
405 | 403 | } |
406 | 404 | return $created; |
407 | 405 | } |
@@ -426,7 +424,7 @@ discard block |
||
426 | 424 | )); |
427 | 425 | |
428 | 426 | return $this->writeTemplateToFile($controller, |
429 | - $mod_path . DIRECTORY_SEPARATOR . 'base' . DIRECTORY_SEPARATOR . "{$api}BaseApi.php", true); |
|
427 | + $mod_path.DIRECTORY_SEPARATOR.'base'.DIRECTORY_SEPARATOR."{$api}BaseApi.php", true); |
|
430 | 428 | } |
431 | 429 | |
432 | 430 | /** |
@@ -449,7 +447,7 @@ discard block |
||
449 | 447 | "class" => $class, |
450 | 448 | )); |
451 | 449 | |
452 | - return $this->writeTemplateToFile($controller, $mod_path . DIRECTORY_SEPARATOR . "{$api}.php", $force); |
|
450 | + return $this->writeTemplateToFile($controller, $mod_path.DIRECTORY_SEPARATOR."{$api}.php", $force); |
|
453 | 451 | } |
454 | 452 | |
455 | 453 | /** |
@@ -463,12 +461,12 @@ discard block |
||
463 | 461 | { |
464 | 462 | if (file_exists($filename_path)) { |
465 | 463 | $destfolder = basename($filename_path); |
466 | - if (!file_exists(WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder) || $debug || $force) { |
|
464 | + if (!file_exists(WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder) || $debug || $force) { |
|
467 | 465 | if (is_dir($filename_path)) { |
468 | - self::copyr($filename_path, WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder); |
|
469 | - } else { |
|
470 | - if (@copy($filename_path, WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder) === FALSE) { |
|
471 | - throw new ConfigException("Can't copy " . $filename_path . " to " . WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder); |
|
466 | + self::copyr($filename_path, WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder); |
|
467 | + }else { |
|
468 | + if (@copy($filename_path, WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder) === FALSE) { |
|
469 | + throw new ConfigException("Can't copy ".$filename_path." to ".WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder); |
|
472 | 470 | } |
473 | 471 | } |
474 | 472 | } |
@@ -487,10 +485,10 @@ discard block |
||
487 | 485 | Config::createDir($dst); |
488 | 486 | while (false !== ($file = readdir($dir))) { |
489 | 487 | if (($file != '.') && ($file != '..')) { |
490 | - if (is_dir($src . '/' . $file)) { |
|
491 | - self::copyr($src . '/' . $file, $dst . '/' . $file); |
|
492 | - } elseif (@copy($src . '/' . $file, $dst . '/' . $file) === false) { |
|
493 | - throw new ConfigException("Can't copy " . $src . " to " . $dst); |
|
488 | + if (is_dir($src.'/'.$file)) { |
|
489 | + self::copyr($src.'/'.$file, $dst.'/'.$file); |
|
490 | + } elseif (@copy($src.'/'.$file, $dst.'/'.$file) === false) { |
|
491 | + throw new ConfigException("Can't copy ".$src." to ".$dst); |
|
494 | 492 | } |
495 | 493 | } |
496 | 494 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | protected function init() |
48 | 48 | { |
49 | - if (file_exists(CONFIG_DIR . DIRECTORY_SEPARATOR . "config.json")) { |
|
49 | + if (file_exists(CONFIG_DIR.DIRECTORY_SEPARATOR."config.json")) { |
|
50 | 50 | $this->loadConfigData(); |
51 | 51 | } |
52 | 52 | return $this; |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | */ |
117 | 117 | public function getTemplatePath() |
118 | 118 | { |
119 | - $path = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'templates' . DIRECTORY_SEPARATOR; |
|
119 | + $path = __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'templates'.DIRECTORY_SEPARATOR; |
|
120 | 120 | return realpath($path); |
121 | 121 | } |
122 | 122 | |
@@ -163,10 +163,10 @@ discard block |
||
163 | 163 | $final_data = self::saveExtraParams($data); |
164 | 164 | $saved = false; |
165 | 165 | try { |
166 | - Cache::getInstance()->storeData(CONFIG_DIR . DIRECTORY_SEPARATOR . "config.json", $final_data, Cache::JSON, true); |
|
166 | + Cache::getInstance()->storeData(CONFIG_DIR.DIRECTORY_SEPARATOR."config.json", $final_data, Cache::JSON, true); |
|
167 | 167 | Config::getInstance()->loadConfigData(); |
168 | 168 | $saved = true; |
169 | - } catch (ConfigException $e) { |
|
169 | + }catch (ConfigException $e) { |
|
170 | 170 | Logger::log($e->getMessage(), LOG_ERR); |
171 | 171 | } |
172 | 172 | return $saved; |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | */ |
199 | 199 | public function getPropelParams() |
200 | 200 | { |
201 | - return Cache::getInstance()->getDataFromFile(__DIR__ . DIRECTORY_SEPARATOR . 'properties.json', Cache::JSON, true); |
|
201 | + return Cache::getInstance()->getDataFromFile(__DIR__.DIRECTORY_SEPARATOR.'properties.json', Cache::JSON, true); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
@@ -210,12 +210,12 @@ discard block |
||
210 | 210 | { |
211 | 211 | try { |
212 | 212 | if (!is_dir($dir) && @mkdir($dir, 0775, true) === false) { |
213 | - throw new \Exception(_('Can\'t create directory ') . $dir); |
|
213 | + throw new \Exception(_('Can\'t create directory ').$dir); |
|
214 | 214 | } |
215 | - } catch (\Exception $e) { |
|
215 | + }catch (\Exception $e) { |
|
216 | 216 | Logger::log($e->getMessage(), LOG_WARNING); |
217 | 217 | if (!file_exists(dirname($dir))) { |
218 | - throw new ConfigException($e->getMessage() . $dir); |
|
218 | + throw new ConfigException($e->getMessage().$dir); |
|
219 | 219 | } |
220 | 220 | } |
221 | 221 | } |
@@ -227,10 +227,10 @@ discard block |
||
227 | 227 | { |
228 | 228 | $rootDirs = array("css", "js", "media", "font"); |
229 | 229 | foreach ($rootDirs as $dir) { |
230 | - if (file_exists(WEB_DIR . DIRECTORY_SEPARATOR . $dir)) { |
|
230 | + if (file_exists(WEB_DIR.DIRECTORY_SEPARATOR.$dir)) { |
|
231 | 231 | try { |
232 | - @shell_exec("rm -rf " . WEB_DIR . DIRECTORY_SEPARATOR . $dir); |
|
233 | - } catch (\Exception $e) { |
|
232 | + @shell_exec("rm -rf ".WEB_DIR.DIRECTORY_SEPARATOR.$dir); |
|
233 | + }catch (\Exception $e) { |
|
234 | 234 | Logger::log($e->getMessage()); |
235 | 235 | } |
236 | 236 | } |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | */ |
243 | 243 | public function loadConfigData() |
244 | 244 | { |
245 | - $this->config = Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . "config.json", |
|
245 | + $this->config = Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR."config.json", |
|
246 | 246 | Cache::JSON, |
247 | 247 | TRUE) ?: []; |
248 | 248 | $this->debug = (array_key_exists('debug', $this->config)) ? (bool)$this->config['debug'] : FALSE; |
@@ -5,12 +5,9 @@ |
||
5 | 5 | use Propel\Runtime\ActiveQuery\ModelCriteria; |
6 | 6 | use Propel\Runtime\ActiveRecord\ActiveRecordInterface; |
7 | 7 | use Propel\Runtime\Connection\ConnectionInterface; |
8 | - use Propel\Runtime\Map\ColumnMap; |
|
9 | 8 | use Propel\Runtime\Map\TableMap; |
10 | 9 | use Propel\Runtime\Propel; |
11 | 10 | use PSFS\base\config\Config; |
12 | - use PSFS\base\dto\Field; |
|
13 | - use PSFS\base\dto\Form; |
|
14 | 11 | use PSFS\base\dto\JsonResponse; |
15 | 12 | use PSFS\base\dto\Order; |
16 | 13 | use PSFS\base\Logger; |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | * |
172 | 172 | * @param ModelCriteria $query |
173 | 173 | */ |
174 | - private function addOrders(ModelCriteria &$query) |
|
174 | + private function addOrders(ModelCriteria & $query) |
|
175 | 175 | { |
176 | 176 | $orderAdded = FALSE; |
177 | 177 | foreach ($this->order->getOrders() as $field => $direction) { |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | $orderAdded = TRUE; |
180 | 180 | if ($direction === Order::ASC) { |
181 | 181 | $query->addAscendingOrderByColumn($field); |
182 | - } else { |
|
182 | + }else { |
|
183 | 183 | $query->addDescendingOrderByColumn($field); |
184 | 184 | } |
185 | 185 | } |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | * |
195 | 195 | * @param ModelCriteria $query |
196 | 196 | */ |
197 | - private function addExtraColumns(ModelCriteria &$query) |
|
197 | + private function addExtraColumns(ModelCriteria & $query) |
|
198 | 198 | { |
199 | 199 | if (!empty($this->extraColumns)) { |
200 | 200 | foreach ($this->extraColumns as $expression => $columnName) { |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | * |
209 | 209 | * @param ModelCriteria $query |
210 | 210 | */ |
211 | - protected function joinTables(ModelCriteria &$query) |
|
211 | + protected function joinTables(ModelCriteria & $query) |
|
212 | 212 | { |
213 | 213 | //TODO for specific implementations |
214 | 214 | } |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * |
219 | 219 | * @param ModelCriteria $query |
220 | 220 | */ |
221 | - private function addFilters(ModelCriteria &$query) |
|
221 | + private function addFilters(ModelCriteria & $query) |
|
222 | 222 | { |
223 | 223 | if (count($this->query) > 0) { |
224 | 224 | foreach ($this->query as $field => $value) { |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | $text = preg_replace('/(\'|\")/', '', $value); |
237 | 237 | $text = preg_replace('/\ /', '%', $text); |
238 | 238 | $query->filterBy($tableField, '%'.$text.'%', Criteria::LIKE); |
239 | - } else { |
|
239 | + }else { |
|
240 | 240 | $query->filterBy($tableField, $value, Criteria::EQUAL); |
241 | 241 | } |
242 | 242 | } |
@@ -259,10 +259,10 @@ discard block |
||
259 | 259 | list($page, $limit) = $this->extractPagination(); |
260 | 260 | if ($limit == -1) { |
261 | 261 | $this->list = $query->find($this->con); |
262 | - } else { |
|
262 | + }else { |
|
263 | 263 | $this->list = $query->paginate($page, $limit, $this->con); |
264 | 264 | } |
265 | - } catch (\Exception $e) { |
|
265 | + }catch (\Exception $e) { |
|
266 | 266 | Logger::log($e->getMessage(), LOG_ERR); |
267 | 267 | } |
268 | 268 | } |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | $this->joinTables($query); |
280 | 280 | $this->addExtraColumns($query); |
281 | 281 | $this->model = $query->findPk($pk); |
282 | - } catch (\Exception $e) { |
|
282 | + }catch (\Exception $e) { |
|
283 | 283 | Logger::getInstance(get_class($this))->errorLog($e->getMessage()); |
284 | 284 | } |
285 | 285 | } |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | $saved = TRUE; |
368 | 368 | $model = $this->model->toArray(); |
369 | 369 | } |
370 | - } catch (\Exception $e) { |
|
370 | + }catch (\Exception $e) { |
|
371 | 371 | Logger::log($e->getMessage(), LOG_ERR); |
372 | 372 | } |
373 | 373 | |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | $this->model->delete($this->con); |
396 | 396 | $deleted = TRUE; |
397 | 397 | } |
398 | - } catch (\Exception $e) { |
|
398 | + }catch (\Exception $e) { |
|
399 | 399 | Logger::getInstance(get_class($this->model))->errorLog($e->getMessage()); |
400 | 400 | } |
401 | 401 | } |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | */ |
440 | 440 | private function extractQuery() |
441 | 441 | { |
442 | - $queryReflector = new \ReflectionClass($this->getModelNamespace() . "Query"); |
|
442 | + $queryReflector = new \ReflectionClass($this->getModelNamespace()."Query"); |
|
443 | 443 | /** @var \Propel\Runtime\ActiveQuery\ModelCriteria $query */ |
444 | 444 | $query = $queryReflector->getMethod('create')->invoke($this->con); |
445 | 445 | |
@@ -483,7 +483,7 @@ discard block |
||
483 | 483 | if (null !== $this->con && $this->con->inTransaction()) { |
484 | 484 | if ($status === 200) { |
485 | 485 | $this->con->commit(); |
486 | - } else { |
|
486 | + }else { |
|
487 | 487 | $this->con->rollBack(); |
488 | 488 | } |
489 | 489 | } |
@@ -527,7 +527,7 @@ discard block |
||
527 | 527 | return $this->render('api.admin.html.twig', array( |
528 | 528 | "api" => $this->getApi(), |
529 | 529 | "domain" => $this->domain, |
530 | - "url" => preg_replace('/\/\{(.*)\}$/i', '', $this->getRoute(strtolower('api-' . $this->getApi() . "-pk"), TRUE)), |
|
530 | + "url" => preg_replace('/\/\{(.*)\}$/i', '', $this->getRoute(strtolower('api-'.$this->getApi()."-pk"), TRUE)), |
|
531 | 531 | ), [], ''); |
532 | 532 | } |
533 | 533 | |
@@ -561,12 +561,12 @@ discard block |
||
561 | 561 | $pages = 0; |
562 | 562 | try { |
563 | 563 | $this->paginate(); |
564 | - if(null !== $this->list) { |
|
564 | + if (null !== $this->list) { |
|
565 | 565 | $return = $this->list->toArray(); |
566 | 566 | $total = $this->list->getNbResults(); |
567 | 567 | $pages = $this->list->getLastPage(); |
568 | 568 | } |
569 | - } catch (\Exception $e) { |
|
569 | + }catch (\Exception $e) { |
|
570 | 570 | Logger::getInstance(get_class($this))->errorLog($e->getMessage()); |
571 | 571 | } |
572 | 572 | |
@@ -585,7 +585,7 @@ discard block |
||
585 | 585 | $return = array(); |
586 | 586 | if (NULL === $model && method_exists($model, 'toArray')) { |
587 | 587 | $code = 404; |
588 | - } else { |
|
588 | + }else { |
|
589 | 589 | $return = $model->toArray(); |
590 | 590 | } |
591 | 591 |