]> Raphaël G. Git Repositories - airbundle/commitdiff
Rename Command/Command in Command
authorRaphaël Gertz <git@rapsys.eu>
Wed, 28 Feb 2024 11:29:28 +0000 (12:29 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Wed, 28 Feb 2024 11:29:28 +0000 (12:29 +0100)
Strict types

Command/AttributeCommand.php
Command/Calendar2Command.php
Command/CalendarCommand.php
Command/RekeyCommand.php
Command/WeatherCommand.php

index 48f5f01287c8f4675e6315b485762617dd44037b..f4fa13368564d3453f6b94f9d19c6632447ce8a3 100644 (file)
@@ -1,10 +1,21 @@
-<?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;
 
 use Doctrine\Bundle\DoctrineBundle\Command\DoctrineCommand;
+
 use Symfony\Component\Console\Input\InputInterface;
 use Symfony\Component\Console\Output\OutputInterface;
+
 use Rapsys\AirBundle\Entity\Session;
 
 class AttributeCommand extends DoctrineCommand {
index 76d5c4c34ee20af9e4445751b38664aa40013bee..0ddcd3ff3213a5d4c1a42e4a05df29c4a62dc9a4 100644 (file)
@@ -26,9 +26,10 @@ use Symfony\Contracts\Translation\TranslatorInterface;
 
 use Twig\Extra\Markdown\DefaultMarkdown;
 
-use Rapsys\AirBundle\Entity\Session;
+use Rapsys\AirBundle\Command;
 use Rapsys\AirBundle\Entity\GoogleCalendar;
 use Rapsys\AirBundle\Entity\GoogleToken;
+use Rapsys\AirBundle\Entity\Session;
 
 use Rapsys\PackBundle\Util\SluggerUtil;
 
index 2488f51d3840262a512c2c6a54abd0cdffa9c770..003910a8f8040e129609fcfbe2168f8812aa1ac9 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;
 
@@ -13,6 +22,7 @@ use Symfony\Component\Routing\RouterInterface;
 use Symfony\Contracts\Translation\TranslatorInterface;
 use Twig\Extra\Markdown\DefaultMarkdown;
 
+use Rapsys\AirBundle\Command;
 use Rapsys\AirBundle\Entity\Session;
 
 use Rapsys\PackBundle\Util\SluggerUtil;
index 630d443c79b33289433155c793f616168cc71e03..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 {
index ed7b8bec947c10d7ece6127ecd164164ddbee72d..840635b3225b5f6c497fa50d33b535951cc516db 100644 (file)
@@ -1,9 +1,19 @@
-<?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;
 
 use Doctrine\Bundle\DoctrineBundle\Command\DoctrineCommand;
 use Doctrine\Persistence\ManagerRegistry;
+
 use Symfony\Component\Console\Input\InputInterface;
 use Symfony\Component\Console\Output\OutputInterface;
 use Symfony\Component\Filesystem\Exception\IOException;