Rename Command directory to Action to avoid confusion with symfony commands

This commit is contained in:
2024-04-17 10:29:08 +02:00
parent 36bc4dab24
commit 7c1f3b114d
7 changed files with 16 additions and 16 deletions

View File

@@ -9,12 +9,12 @@ declare(strict_types=1);
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\TicketBundle\Tests\Command\Ticket\Handler;
namespace Chill\TicketBundle\Tests\Action\Ticket\Handler;
use Chill\PersonBundle\Entity\Person;
use Chill\PersonBundle\Repository\PersonACLAwareRepositoryInterface;
use Chill\TicketBundle\Command\Ticket\AssociateByPhonenumberCommand;
use Chill\TicketBundle\Command\Ticket\Handler\AssociateByPhonenumberCommandHandler;
use Chill\TicketBundle\Action\Ticket\AssociateByPhonenumberCommand;
use Chill\TicketBundle\Action\Ticket\Handler\AssociateByPhonenumberCommandHandler;
use Chill\TicketBundle\Entity\Ticket;
use Doctrine\Persistence\ObjectManager;
use libphonenumber\PhoneNumberUtil;

View File

@@ -9,10 +9,10 @@ declare(strict_types=1);
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\TicketBundle\Tests\Command\Ticket\Handler;
namespace Chill\TicketBundle\Tests\Action\Ticket\Handler;
use Chill\TicketBundle\Command\Ticket\CreateTicketCommand;
use Chill\TicketBundle\Command\Ticket\Handler\CreateTicketCommandHandler;
use Chill\TicketBundle\Action\Ticket\CreateTicketCommand;
use Chill\TicketBundle\Action\Ticket\Handler\CreateTicketCommandHandler;
use Chill\TicketBundle\Entity\Ticket;
use PHPUnit\Framework\TestCase;