@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | { |
| 30 | 30 | $container = $this->provideLocaleFacade($container); |
| 31 | 31 | |
| 32 | - $container[self::QUERY_CONTAINER_TOUCH] = function (Container $container) { |
|
| 32 | + $container[self::QUERY_CONTAINER_TOUCH] = function(Container $container) { |
|
| 33 | 33 | return $container->getLocator()->touch()->queryContainer(); |
| 34 | 34 | }; |
| 35 | 35 | |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | */ |
| 56 | 56 | private function provideLocaleFacade(Container $container) |
| 57 | 57 | { |
| 58 | - $container[self::FACADE_LOCALE] = function (Container $container) { |
|
| 58 | + $container[self::FACADE_LOCALE] = function(Container $container) { |
|
| 59 | 59 | return new CollectorToLocaleBridge($container->getLocator()->locale()->facade()); |
| 60 | 60 | }; |
| 61 | 61 | |
@@ -23,8 +23,8 @@ |
||
| 23 | 23 | |
| 24 | 24 | use _generated\CollectorBusinessTesterActions; |
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * Define custom actions here |
|
| 28 | - */ |
|
| 26 | + /** |
|
| 27 | + * Define custom actions here |
|
| 28 | + */ |
|
| 29 | 29 | |
| 30 | 30 | } |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | { |
| 25 | 25 | $container = parent::provideBusinessLayerDependencies($container); |
| 26 | 26 | |
| 27 | - $container[static::INSTALLER_PLUGINS] = function (Container $container) { |
|
| 27 | + $container[static::INSTALLER_PLUGINS] = function(Container $container) { |
|
| 28 | 28 | return $this->getInstallerPlugins(); |
| 29 | 29 | }; |
| 30 | 30 | |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | */ |
| 27 | 27 | public function register(Application $app) |
| 28 | 28 | { |
| 29 | - $app[static::TWIG_LOADER_YVES] = function () { |
|
| 29 | + $app[static::TWIG_LOADER_YVES] = function() { |
|
| 30 | 30 | return $this->getFactory()->createFilesystemLoader(); |
| 31 | 31 | }; |
| 32 | 32 | } |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | */ |
| 36 | 36 | protected function addUtilTextService(Container $container) |
| 37 | 37 | { |
| 38 | - $container[static::SERVICE_UTIL_TEXT] = function (Container $container) { |
|
| 38 | + $container[static::SERVICE_UTIL_TEXT] = function(Container $container) { |
|
| 39 | 39 | return new TwigToUtilTextServiceBridge($container->getLocator()->utilText()->service()); |
| 40 | 40 | }; |
| 41 | 41 | |
@@ -44,11 +44,11 @@ discard block |
||
| 44 | 44 | |
| 45 | 45 | $this->provideFormTypeTemplates(); |
| 46 | 46 | |
| 47 | - $app['twig.loader.zed'] = $app->share(function () { |
|
| 47 | + $app['twig.loader.zed'] = $app->share(function() { |
|
| 48 | 48 | return $this->getFactory()->createFilesystemLoader(); |
| 49 | 49 | }); |
| 50 | 50 | |
| 51 | - $app['twig.loader'] = $app->share(function ($app) { |
|
| 51 | + $app['twig.loader'] = $app->share(function($app) { |
|
| 52 | 52 | return new Twig_Loader_Chain( |
| 53 | 53 | [ |
| 54 | 54 | $app['twig.loader.zed'], |
@@ -59,14 +59,14 @@ discard block |
||
| 59 | 59 | |
| 60 | 60 | $app['twig.options'] = Config::get(TwigConstants::ZED_TWIG_OPTIONS); |
| 61 | 61 | |
| 62 | - $app['twig.global.variables'] = $app->share(function () { |
|
| 62 | + $app['twig.global.variables'] = $app->share(function() { |
|
| 63 | 63 | return []; |
| 64 | 64 | }); |
| 65 | 65 | |
| 66 | 66 | $app['twig'] = $app->share( |
| 67 | 67 | $app->extend( |
| 68 | 68 | 'twig', |
| 69 | - function (Twig_Environment $twig) use ($app) { |
|
| 69 | + function(Twig_Environment $twig) use ($app) { |
|
| 70 | 70 | foreach ($app['twig.global.variables'] as $name => $value) { |
| 71 | 71 | $twig->addGlobal($name, $value); |
| 72 | 72 | } |
@@ -23,8 +23,8 @@ |
||
| 23 | 23 | |
| 24 | 24 | use _generated\TwigYvesTesterActions; |
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * Define custom actions here |
|
| 28 | - */ |
|
| 26 | + /** |
|
| 27 | + * Define custom actions here |
|
| 28 | + */ |
|
| 29 | 29 | |
| 30 | 30 | } |
@@ -23,8 +23,8 @@ |
||
| 23 | 23 | |
| 24 | 24 | use _generated\TwigSharedTesterActions; |
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * Define custom actions here |
|
| 28 | - */ |
|
| 26 | + /** |
|
| 27 | + * Define custom actions here |
|
| 28 | + */ |
|
| 29 | 29 | |
| 30 | 30 | } |
@@ -79,7 +79,7 @@ |
||
| 79 | 79 | 'invalid key' => false, |
| 80 | 80 | ]; |
| 81 | 81 | |
| 82 | -TXT |
|
| 82 | +txt |
|
| 83 | 83 | ); |
| 84 | 84 | } |
| 85 | 85 | |