@@ -32,20 +32,20 @@ |
||
32 | 32 | /** @var ControllerCollection $controller */ |
33 | 33 | $controller = $app['controllers_factory']; |
34 | 34 | |
35 | - $controller->get('/', function (Request $request) { |
|
36 | - return $this->respond($request, function (BreadCrumbsTrail $crumbs, ParameterReader $reader) { |
|
35 | + $controller->get('/', function(Request $request) { |
|
36 | + return $this->respond($request, function(BreadCrumbsTrail $crumbs, ParameterReader $reader) { |
|
37 | 37 | $execution = new ExecutionResource($this->domin, $reader, $crumbs); |
38 | 38 | return $execution->handleGet(null); |
39 | 39 | }); |
40 | 40 | }); |
41 | - $controller->get('/{action}', function (Request $request, $action) { |
|
42 | - return $this->respond($request, function (BreadCrumbsTrail $crumbs, ParameterReader $reader) use ($action, $request) { |
|
41 | + $controller->get('/{action}', function(Request $request, $action) { |
|
42 | + return $this->respond($request, function(BreadCrumbsTrail $crumbs, ParameterReader $reader) use ($action, $request) { |
|
43 | 43 | $execution = new ExecutionResource($this->domin, $reader, $crumbs); |
44 | 44 | return $execution->handleGet($action, $request->get(ExecutionResource::TOKEN_ARG)); |
45 | 45 | }); |
46 | 46 | }); |
47 | - $controller->post('/{action}', function (Request $request, $action) { |
|
48 | - return $this->respond($request, function (BreadCrumbsTrail $crumbs, ParameterReader $reader) use ($action, $request) { |
|
47 | + $controller->post('/{action}', function(Request $request, $action) { |
|
48 | + return $this->respond($request, function(BreadCrumbsTrail $crumbs, ParameterReader $reader) use ($action, $request) { |
|
49 | 49 | $execution = new ExecutionResource($this->domin, $reader, $crumbs); |
50 | 50 | return $execution->handlePost($action, $request->get(ExecutionResource::TOKEN_ARG)); |
51 | 51 | }); |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | */ |
31 | 31 | private function readCrumbs(CookieStore $cookies) { |
32 | 32 | if ($cookies->has(self::COOKIE_KEY)) { |
33 | - return array_map(function ($array) { |
|
33 | + return array_map(function($array) { |
|
34 | 34 | return new BreadCrumb($array['caption'], $array['target']); |
35 | 35 | }, $cookies->read(self::COOKIE_KEY)->payload); |
36 | 36 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * @return BreadCrumb[] |
43 | 43 | */ |
44 | 44 | private function saveCrumbs($crumbs) { |
45 | - $this->cookies->write(new Cookie(array_map(function (BreadCrumb $crumb) { |
|
45 | + $this->cookies->write(new Cookie(array_map(function(BreadCrumb $crumb) { |
|
46 | 46 | return [ |
47 | 47 | 'caption' => $crumb->getCaption(), |
48 | 48 | 'target' => $crumb->getTarget() |