@@ -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->setShared('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->setShared('yarak', function () { |
|
| 114 | +$di->setShared('yarak', function() { |
|
| 115 | 115 | $config = $this->getConfig(); |
| 116 | 116 | |
| 117 | 117 | return new Kernel([ |