@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * |
56 | 56 | * @param string $key |
57 | 57 | * |
58 | - * @return string|array |
|
58 | + * @return string |
|
59 | 59 | */ |
60 | 60 | protected function argument($key = null) |
61 | 61 | { |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * |
84 | 84 | * @param string $key |
85 | 85 | * |
86 | - * @return string|array |
|
86 | + * @return string |
|
87 | 87 | */ |
88 | 88 | protected function option($key = null) |
89 | 89 | { |
@@ -15,7 +15,7 @@ |
||
15 | 15 | public function getCommands() |
16 | 16 | { |
17 | 17 | if (property_exists($this, 'commands')) { |
18 | - return array_map(function ($command) { |
|
18 | + return array_map(function($command) { |
|
19 | 19 | $this->verifyCommand($command); |
20 | 20 | |
21 | 21 | return $command; |
@@ -70,7 +70,7 @@ |
||
70 | 70 | { |
71 | 71 | preg_match_all('/{(.*?)}/', $signature, $argumentsOption); |
72 | 72 | |
73 | - return array_map(function ($item) { |
|
73 | + return array_map(function($item) { |
|
74 | 74 | return trim($item, '{}'); |
75 | 75 | }, $argumentsOption[1]); |
76 | 76 | } |
@@ -107,9 +107,9 @@ |
||
107 | 107 | return new Security(); |
108 | 108 | }); |
109 | 109 | |
110 | - $di->set('modelsManager', function () { |
|
111 | - return new ModelsManager(); |
|
112 | - }); |
|
110 | + $di->set('modelsManager', function () { |
|
111 | + return new ModelsManager(); |
|
112 | + }); |
|
113 | 113 | |
114 | 114 | $di->set('yarak', function () { |
115 | 115 | $config = $this->getConfig(); |
@@ -12,11 +12,11 @@ discard block |
||
12 | 12 | use Phalcon\Session\Adapter\Files as SessionAdapter; |
13 | 13 | use Phalcon\Mvc\Model\Metadata\Memory as MetaDataAdapter; |
14 | 14 | |
15 | -$di->setShared('config', function () { |
|
15 | +$di->setShared('config', function() { |
|
16 | 16 | return include APP_PATH.'/config/config.php'; |
17 | 17 | }); |
18 | 18 | |
19 | -$di->setShared('url', function () { |
|
19 | +$di->setShared('url', function() { |
|
20 | 20 | $config = $this->getConfig(); |
21 | 21 | |
22 | 22 | $url = new UrlResolver(); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | return $url; |
26 | 26 | }); |
27 | 27 | |
28 | -$di->setShared('view', function () { |
|
28 | +$di->setShared('view', function() { |
|
29 | 29 | $config = $this->getConfig(); |
30 | 30 | |
31 | 31 | $view = new View(); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $view->setViewsDir($config->application->viewsDir); |
34 | 34 | |
35 | 35 | $view->registerEngines([ |
36 | - '.volt' => function ($view) { |
|
36 | + '.volt' => function($view) { |
|
37 | 37 | $config = $this->getConfig(); |
38 | 38 | |
39 | 39 | $volt = new VoltEngine($view, $this); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | return $view; |
53 | 53 | }); |
54 | 54 | |
55 | -$di->setShared('db', function () { |
|
55 | +$di->setShared('db', function() { |
|
56 | 56 | $config = $this->getConfig(); |
57 | 57 | |
58 | 58 | $class = 'Phalcon\Db\Adapter\Pdo\\'.$config->database->adapter; |
@@ -76,11 +76,11 @@ discard block |
||
76 | 76 | return $connection; |
77 | 77 | }); |
78 | 78 | |
79 | -$di->setShared('modelsMetadata', function () { |
|
79 | +$di->setShared('modelsMetadata', function() { |
|
80 | 80 | return new MetaDataAdapter(); |
81 | 81 | }); |
82 | 82 | |
83 | -$di->set('flash', function () { |
|
83 | +$di->set('flash', function() { |
|
84 | 84 | return new Flash([ |
85 | 85 | 'error' => 'alert alert-danger', |
86 | 86 | 'success' => 'alert alert-success', |
@@ -89,29 +89,29 @@ discard block |
||
89 | 89 | ]); |
90 | 90 | }); |
91 | 91 | |
92 | -$di->set('session', function () { |
|
92 | +$di->set('session', function() { |
|
93 | 93 | $session = new SessionAdapter(); |
94 | 94 | $session->start(); |
95 | 95 | |
96 | 96 | return $session; |
97 | 97 | }); |
98 | 98 | |
99 | -$di->set('dispatcher', function () { |
|
99 | +$di->set('dispatcher', function() { |
|
100 | 100 | $dispatcher = new Dispatcher(); |
101 | 101 | $dispatcher->setDefaultNamespace('Sonohini\Controllers'); |
102 | 102 | |
103 | 103 | return $dispatcher; |
104 | 104 | }); |
105 | 105 | |
106 | -$di->set('security', function () { |
|
106 | +$di->set('security', function() { |
|
107 | 107 | return new Security(); |
108 | 108 | }); |
109 | 109 | |
110 | - $di->set('modelsManager', function () { |
|
110 | + $di->set('modelsManager', function() { |
|
111 | 111 | return new ModelsManager(); |
112 | 112 | }); |
113 | 113 | |
114 | -$di->set('yarak', function () { |
|
114 | +$di->set('yarak', function() { |
|
115 | 115 | $config = $this->getConfig(); |
116 | 116 | |
117 | 117 | return new Kernel([ |