Skip to content
This repository was archived by the owner on Oct 24, 2024. It is now read-only.

Commit 7a65076

Browse files
fix some warnings
1 parent 44b6ca9 commit 7a65076

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Command/PurgeProcessExecution.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use CleverAge\ProcessUiBundle\Entity\ProcessExecution;
66
use CleverAge\ProcessUiBundle\Repository\ProcessExecutionRepository;
7+
use DateTimeInterface;
78
use Doctrine\Persistence\ManagerRegistry;
89
use Symfony\Component\Console\Command\Command;
910
use Symfony\Component\Console\Input\InputDefinition;
@@ -67,7 +68,7 @@ public function execute(InputInterface $input, OutputInterface $output): int
6768
if ($removeFiles) {
6869
$finder = new Finder();
6970
$fs = new Filesystem();
70-
$finder->in($this->processLogDir)->date("before " . $date->format(\DateTime::ATOM));
71+
$finder->in($this->processLogDir)->date("before " . $date->format(DateTimeInterface::ATOM));
7172
$count = $finder->count();
7273
$fs->remove($finder);
7374
$output->writeln("<info>$count log files are deleted on filesystem.</info>");
@@ -77,7 +78,7 @@ public function execute(InputInterface $input, OutputInterface $output): int
7778
$repository->deleteBefore($date);
7879

7980
$output->writeln(<<<EOT
80-
<info>Process Execution before {$date->format(\DateTime::ATOM)} are deleted into database.</info>
81+
<info>Process Execution before {$date->format(DateTimeInterface::ATOM)} are deleted into database.</info>
8182
EOT);
8283
return Command::SUCCESS;
8384
}

src/Controller/DashboardController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class DashboardController extends AbstractDashboardController
1919
public function index(): Response
2020
{
2121
/** @var AdminUrlGenerator $routeBuilder */
22-
$routeBuilder = $this->get(AdminUrlGenerator::class);
22+
$routeBuilder = $this->container->get(AdminUrlGenerator::class);
2323

2424
return $this->redirect($routeBuilder->setController(ProcessCrudController::class)->generateUrl());
2525
}

src/DependencyInjection/CleverAgeProcessUiExtension.php

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use CleverAge\ProcessUiBundle\Message\LogIndexerMessage;
66
use CleverAge\ProcessUiBundle\Message\ProcessRunMessage;
7+
use Exception;
78
use Symfony\Component\Config\FileLocator;
89
use Symfony\Component\DependencyInjection\ContainerBuilder;
910
use Symfony\Component\DependencyInjection\Extension\Extension;

src/DependencyInjection/Configuration.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function getConfigTreeBuilder(): TreeBuilder
1717
->addDefaultsIfNotSet()
1818
->children()
1919
->booleanNode('enabled')->defaultFalse()->end()
20-
->end();
20+
?->end();
2121

2222
return $treeBuilder;
2323
}

src/Entity/ProcessExecution.php

-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,6 @@ public function getReport(): array
248248
public function setReport(?array $report): ProcessExecution
249249
{
250250
$this->report = $report;
251-
252251
return $this;
253252
}
254253
}

src/Message/LogIndexerMessage.php

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
class LogIndexerMessage
66
{
77
public const DEFAULT_OFFSET = 2500;
8-
98
private int $processExecutionId;
109
private string $logPath;
1110
private int $start;

0 commit comments

Comments
 (0)