@@ -9,7 +9,7 @@ |
||
| 9 | 9 | "response" => [ |
| 10 | 10 | "shared" => true, |
| 11 | 11 | //"callback" => "\Anax\Response\Response", |
| 12 | - "callback" => function () { |
|
| 12 | + "callback" => function() { |
|
| 13 | 13 | $obj = new \Anax\Response\ResponseUtility(); |
| 14 | 14 | $obj->setDI($this); |
| 15 | 15 | return $obj; |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | "session" => [ |
| 9 | 9 | "active" => defined("ANAX_WITH_SESSION") && ANAX_WITH_SESSION, // true|false |
| 10 | 10 | "shared" => true, |
| 11 | - "callback" => function () { |
|
| 11 | + "callback" => function() { |
|
| 12 | 12 | $session = new \Anax\Session\Session(); |
| 13 | 13 | |
| 14 | 14 | // Load the configuration files |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | "services" => [ |
| 9 | 9 | "content" => [ |
| 10 | 10 | "shared" => true, |
| 11 | - "callback" => function () { |
|
| 11 | + "callback" => function() { |
|
| 12 | 12 | $content = new \Anax\Content\FileBasedContent(); |
| 13 | 13 | $content->setDI($this); |
| 14 | 14 | |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | "services" => [ |
| 8 | 8 | "request" => [ |
| 9 | 9 | "shared" => true, |
| 10 | - "callback" => function () { |
|
| 10 | + "callback" => function() { |
|
| 11 | 11 | $obj = new \Anax\Request\Request(); |
| 12 | 12 | $obj->init(); |
| 13 | 13 | return $obj; |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | "view" => [ |
| 8 | 8 | "active" => false, |
| 9 | 9 | "shared" => true, |
| 10 | - "callback" => function () { |
|
| 10 | + "callback" => function() { |
|
| 11 | 11 | $view = new \Anax\View\ViewCollection(); |
| 12 | 12 | $view->setDI($this); |
| 13 | 13 | |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | "services" => [ |
| 9 | 9 | "page" => [ |
| 10 | 10 | "shared" => true, |
| 11 | - "callback" => function () { |
|
| 11 | + "callback" => function() { |
|
| 12 | 12 | $page = new \Anax\Page\Page(); |
| 13 | 13 | $page->setDI($this); |
| 14 | 14 | |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | "services" => [ |
| 7 | 7 | "router" => [ |
| 8 | 8 | "shared" => true, |
| 9 | - "callback" => function () { |
|
| 9 | + "callback" => function() { |
|
| 10 | 10 | $router = new \Anax\Route\Router(); |
| 11 | 11 | $router->setDI($this); |
| 12 | 12 | |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | "WeatherRequest" => [ |
| 9 | 9 | "shared" => true, |
| 10 | 10 | //"callback" => "\Anax\Response\Response", |
| 11 | - "callback" => function () { |
|
| 11 | + "callback" => function() { |
|
| 12 | 12 | $obj = new \Aisa\WeatherRequest\WeatherRequest(); |
| 13 | 13 | $obj->setDI($this); |
| 14 | 14 | return $obj; |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | return [ |
| 6 | 6 | // Use for styling the menu |
| 7 | 7 | //"basePath" => ANAX_APP_PATH . "/content", |
| 8 | - "basePath" => ANAX_INSTALL_PATH . "/content", |
|
| 8 | + "basePath" => ANAX_INSTALL_PATH."/content", |
|
| 9 | 9 | |
| 10 | 10 | // Use or ignore using the cache, default is false. |
| 11 | 11 | // During development it might be good to ignore the cache, but not |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | // Wrapper for section of revision history |
| 41 | 41 | "revision-history" => [ |
| 42 | - "start" => "\n\n\n" . t("Revision history") . " {#revision}\n-------------\n\n<span class=\"revision-history\">\n", |
|
| 42 | + "start" => "\n\n\n".t("Revision history")." {#revision}\n-------------\n\n<span class=\"revision-history\">\n", |
|
| 43 | 43 | "end" => "</span>\n", |
| 44 | 44 | "class" => "revision-history", |
| 45 | 45 | ], |