Passed
Push — main ( 987cb0...4f2490 )
by De Cramer
02:59
created
DependencyInjection/Oliverde8PhpEtlExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
Controller/Admin/EtlExecutionCrudController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
                 Field::new('startTime'),
92 92
                 Field::new('endTime'),
93 93
                 Field::new('failTime'),
94
-                TextField::new('Files')->formatValue(function ($value, EtlExecution $entity) {
94
+                TextField::new('Files')->formatValue(function($value, EtlExecution $entity) {
95 95
                     $urls = [];
96 96
                     if ($this->isGranted(EtlExecutionVoter::DOWNLOAD, EtlExecution::class)) {
97 97
                         $files = $this->chainWorkDirManager->listFiles($entity);
Please login to merge, or discard this patch.
Entity/EtlExecution.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
  */
11 11
 class EtlExecution
12 12
 {
13
-    public const STATUS_WAITING ="waiting";
14
-    public const STATUS_QUEUED ="queued";
13
+    public const STATUS_WAITING = "waiting";
14
+    public const STATUS_QUEUED = "queued";
15 15
     public const STATUS_RUNNING = "running";
16 16
     public const STATUS_SUCCESS = "success";
17 17
     public const STATUS_FAILURE = "failure";
Please login to merge, or discard this patch.