]> Raphaël G. Git Repositories - airbundle/blobdiff - Command/RekeyCommand.php
Rename Command/Command in Command
[airbundle] / Command / RekeyCommand.php
index 91d7967de249a60beb2449c992dd2f03f6291261..d25009c4cab638d26e84290755dcd55e0add9c93 100644 (file)
@@ -1,4 +1,13 @@
-<?php
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys AirBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
 
 namespace Rapsys\AirBundle\Command;
 
@@ -6,6 +15,7 @@ use Doctrine\Bundle\DoctrineBundle\Command\DoctrineCommand;
 use Symfony\Component\Console\Input\InputInterface;
 use Symfony\Component\Console\Output\OutputInterface;
 
+use Rapsys\AirBundle\Command;
 use Rapsys\AirBundle\Entity\Session;
 
 class RekeyCommand extends DoctrineCommand {
@@ -28,7 +38,7 @@ class RekeyCommand extends DoctrineCommand {
        }
 
        ///Process the attribution
-       protected function execute(InputInterface $input, OutputInterface $output) {
+       protected function execute(InputInterface $input, OutputInterface $output): int {
                //Fetch doctrine
                $doctrine = $this->getDoctrine();