@@ -10,7 +10,7 @@ |
||
10 | 10 | */ |
11 | 11 | class EtlExecution |
12 | 12 | { |
13 | - public const STATUS_WAITING ="waiting"; |
|
13 | + public const STATUS_WAITING = "waiting"; |
|
14 | 14 | public const STATUS_RUNNING = "running"; |
15 | 15 | public const STATUS_SUCCESS = "success"; |
16 | 16 | public const STATUS_FAILURE = "failure"; |
@@ -16,7 +16,7 @@ |
||
16 | 16 | */ |
17 | 17 | public function load(array $configs, ContainerBuilder $container) |
18 | 18 | { |
19 | - $loader = new YamlFileLoader($container, new FileLocator(\dirname(__DIR__).'/Resources/config')); |
|
19 | + $loader = new YamlFileLoader($container, new FileLocator(\dirname(__DIR__) . '/Resources/config')); |
|
20 | 20 | $loader->load('parameters.yml'); |
21 | 21 | $loader->load('services.yml'); |
22 | 22 | $loader->load('service-rule-transformers.yml'); |
@@ -64,7 +64,7 @@ |
||
64 | 64 | Field::new('startTime'), |
65 | 65 | Field::new('endTime'), |
66 | 66 | Field::new('failTime'), |
67 | - TextField::new('Files')->formatValue(function ($value, EtlExecution $entity) { |
|
67 | + TextField::new('Files')->formatValue(function($value, EtlExecution $entity) { |
|
68 | 68 | // TODO create url's. |
69 | 69 | return $this->chainWorkDirManager->listFiles($entity); |
70 | 70 | })->setTemplatePath('@Oliverde8PhpEtl/fields/files.html.twig'), |