Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions backend/app/Http/Actions/Accounts/CreateAccountAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
use HiEvents\Http\Request\Account\CreateAccountRequest;
use HiEvents\Http\ResponseCodes;
use HiEvents\Resources\Account\AccountResource;
use HiEvents\Services\Application\Handlers\Account\CreateAccountHandler;
use HiEvents\Services\Application\Handlers\Account\DTO\CreateAccountDTO;
use HiEvents\Services\Application\Handlers\Account\Exceptions\AccountRegistrationDisabledException;
use HiEvents\Services\Application\Handlers\Auth\DTO\LoginCredentialsDTO;
use HiEvents\Services\Application\Handlers\Auth\LoginHandler;
use HiEvents\Services\Application\Locale\LocaleService;
use HiEvents\Services\Handlers\Account\CreateAccountHandler;
use HiEvents\Services\Handlers\Account\DTO\CreateAccountDTO;
use HiEvents\Services\Handlers\Account\Exceptions\AccountRegistrationDisabledException;
use HiEvents\Services\Handlers\Auth\DTO\LoginCredentialsDTO;
use HiEvents\Services\Handlers\Auth\LoginHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Validation\ValidationException;
use Throwable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
use HiEvents\Exceptions\SaasModeEnabledException;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Resources\Account\Stripe\StripeConnectAccountResponseResource;
use HiEvents\Services\Handlers\Account\Payment\Stripe\CreateStripeConnectAccountHandler;
use HiEvents\Services\Handlers\Account\Payment\Stripe\DTO\CreateStripeConnectAccountDTO;
use HiEvents\Services\Application\Handlers\Account\Payment\Stripe\CreateStripeConnectAccountHandler;
use HiEvents\Services\Application\Handlers\Account\Payment\Stripe\DTO\CreateStripeConnectAccountDTO;
use Illuminate\Http\JsonResponse;
use Symfony\Component\HttpFoundation\Response;
use Throwable;
Expand Down
4 changes: 2 additions & 2 deletions backend/app/Http/Actions/Accounts/UpdateAccountAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\Account\UpdateAccountRequest;
use HiEvents\Resources\Account\AccountResource;
use HiEvents\Services\Handlers\Account\DTO\UpdateAccountDTO;
use HiEvents\Services\Handlers\Account\UpdateAccountHanlder;
use HiEvents\Services\Application\Handlers\Account\DTO\UpdateAccountDTO;
use HiEvents\Services\Application\Handlers\Account\UpdateAccountHanlder;
use Illuminate\Http\JsonResponse;

class UpdateAccountAction extends BaseAction
Expand Down
4 changes: 2 additions & 2 deletions backend/app/Http/Actions/Attendees/CheckInAttendeeAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
use HiEvents\Http\Request\Attendee\CheckInAttendeeRequest;
use HiEvents\Http\ResponseCodes;
use HiEvents\Resources\Attendee\AttendeeResource;
use HiEvents\Services\Handlers\Attendee\CheckInAttendeeHandler;
use HiEvents\Services\Handlers\Attendee\DTO\CheckInAttendeeDTO;
use HiEvents\Services\Application\Handlers\Attendee\CheckInAttendeeHandler;
use HiEvents\Services\Application\Handlers\Attendee\DTO\CheckInAttendeeDTO;
use Illuminate\Http\JsonResponse;

class CheckInAttendeeAction extends BaseAction
Expand Down
4 changes: 2 additions & 2 deletions backend/app/Http/Actions/Attendees/CreateAttendeeAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
use HiEvents\Http\Request\Attendee\CreateAttendeeRequest;
use HiEvents\Http\ResponseCodes;
use HiEvents\Resources\Attendee\AttendeeResource;
use HiEvents\Services\Handlers\Attendee\CreateAttendeeHandler;
use HiEvents\Services\Handlers\Attendee\DTO\CreateAttendeeDTO;
use HiEvents\Services\Application\Handlers\Attendee\CreateAttendeeHandler;
use HiEvents\Services\Application\Handlers\Attendee\DTO\CreateAttendeeDTO;
use Illuminate\Http\JsonResponse;
use Illuminate\Validation\ValidationException;
use Throwable;
Expand Down
4 changes: 2 additions & 2 deletions backend/app/Http/Actions/Attendees/EditAttendeeAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\Attendee\EditAttendeeRequest;
use HiEvents\Resources\Attendee\AttendeeResource;
use HiEvents\Services\Handlers\Attendee\DTO\EditAttendeeDTO;
use HiEvents\Services\Handlers\Attendee\EditAttendeeHandler;
use HiEvents\Services\Application\Handlers\Attendee\DTO\EditAttendeeDTO;
use HiEvents\Services\Application\Handlers\Attendee\EditAttendeeHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Validation\ValidationException;
use Throwable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\Attendee\PartialEditAttendeeRequest;
use HiEvents\Resources\Attendee\AttendeeResource;
use HiEvents\Services\Handlers\Attendee\DTO\PartialEditAttendeeDTO;
use HiEvents\Services\Handlers\Attendee\PartialEditAttendeeHandler;
use HiEvents\Services\Application\Handlers\Attendee\DTO\PartialEditAttendeeDTO;
use HiEvents\Services\Application\Handlers\Attendee\PartialEditAttendeeHandler;
use Illuminate\Http\JsonResponse;

class PartialEditAttendeeAction extends BaseAction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use HiEvents\DomainObjects\EventDomainObject;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Services\Handlers\Attendee\DTO\ResendAttendeeTicketDTO;
use HiEvents\Services\Handlers\Attendee\ResendAttendeeTicketHandler;
use HiEvents\Services\Application\Handlers\Attendee\DTO\ResendAttendeeTicketDTO;
use HiEvents\Services\Application\Handlers\Attendee\ResendAttendeeTicketHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Response;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
Expand Down
4 changes: 2 additions & 2 deletions backend/app/Http/Actions/Auth/AcceptInvitationAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\Auth\AcceptInvitationRequest;
use HiEvents\Http\ResponseCodes;
use HiEvents\Services\Handlers\Auth\AcceptInvitationHandler;
use HiEvents\Services\Handlers\Auth\DTO\AcceptInvitationDTO;
use HiEvents\Services\Application\Handlers\Auth\AcceptInvitationHandler;
use HiEvents\Services\Application\Handlers\Auth\DTO\AcceptInvitationDTO;
use HiEvents\Services\Infrastructure\Encryption\Exception\DecryptionFailedException;
use HiEvents\Services\Infrastructure\Encryption\Exception\EncryptedPayloadExpiredException;
use Illuminate\Http\Response;
Expand Down
2 changes: 1 addition & 1 deletion backend/app/Http/Actions/Auth/BaseAuthAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use HiEvents\Http\Actions\BaseAction;
use HiEvents\Resources\Auth\AuthenticatedResponseResource;
use HiEvents\Services\Handlers\Auth\DTO\AuthenticatedResponseDTO;
use HiEvents\Services\Application\Handlers\Auth\DTO\AuthenticatedResponseDTO;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Response;
use Illuminate\Support\Collection;
Expand Down
2 changes: 1 addition & 1 deletion backend/app/Http/Actions/Auth/ForgotPasswordAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\Auth\ForgotPasswordRequest;
use HiEvents\Services\Handlers\Auth\ForgotPasswordHandler;
use HiEvents\Services\Application\Handlers\Auth\ForgotPasswordHandler;
use Illuminate\Http\JsonResponse;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;

Expand Down
4 changes: 2 additions & 2 deletions backend/app/Http/Actions/Auth/LoginAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
use HiEvents\Exceptions\UnauthorizedException;
use HiEvents\Http\Request\Auth\LoginRequest;
use HiEvents\Http\ResponseCodes;
use HiEvents\Services\Handlers\Auth\DTO\LoginCredentialsDTO;
use HiEvents\Services\Handlers\Auth\LoginHandler;
use HiEvents\Services\Application\Handlers\Auth\DTO\LoginCredentialsDTO;
use HiEvents\Services\Application\Handlers\Auth\LoginHandler;
use Illuminate\Http\JsonResponse;

class LoginAction extends BaseAuthAction
Expand Down
4 changes: 2 additions & 2 deletions backend/app/Http/Actions/Auth/ResetPasswordAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
use HiEvents\Exceptions\PasswordInvalidException;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\Auth\ResetPasswordRequest;
use HiEvents\Services\Handlers\Auth\DTO\ResetPasswordDTO;
use HiEvents\Services\Handlers\Auth\ResetPasswordHandler;
use HiEvents\Services\Application\Handlers\Auth\DTO\ResetPasswordDTO;
use HiEvents\Services\Application\Handlers\Auth\ResetPasswordHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Validation\ValidationException;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use HiEvents\Exceptions\InvalidPasswordResetTokenException;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Services\Handlers\Auth\ValidateResetPasswordTokenHandler;
use HiEvents\Services\Application\Handlers\Auth\ValidateResetPasswordTokenHandler;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\CapacityAssigment\UpsertCapacityAssignmentRequest;
use HiEvents\Resources\CapacityAssignment\CapacityAssignmentResource;
use HiEvents\Services\Application\Handlers\CapacityAssignment\CreateCapacityAssignmentHandler;
use HiEvents\Services\Application\Handlers\CapacityAssignment\DTO\UpsertCapacityAssignmentDTO;
use HiEvents\Services\Domain\Product\Exception\UnrecognizedProductIdException;
use HiEvents\Services\Handlers\CapacityAssignment\CreateCapacityAssignmentHandler;
use HiEvents\Services\Handlers\CapacityAssignment\DTO\UpsertCapacityAssignmentDTO;
use Illuminate\Http\JsonResponse;
use Symfony\Component\HttpFoundation\Response;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use HiEvents\DomainObjects\EventDomainObject;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Services\Handlers\CapacityAssignment\DeleteCapacityAssignmentHandler;
use HiEvents\Services\Application\Handlers\CapacityAssignment\DeleteCapacityAssignmentHandler;
use Illuminate\Http\Response;

class DeleteCapacityAssignmentAction extends BaseAction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use HiEvents\DomainObjects\EventDomainObject;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Resources\CapacityAssignment\CapacityAssignmentResource;
use HiEvents\Services\Handlers\CapacityAssignment\GetCapacityAssignmentHandler;
use HiEvents\Services\Application\Handlers\CapacityAssignment\GetCapacityAssignmentHandler;
use Illuminate\Http\JsonResponse;

class GetCapacityAssignmentAction extends BaseAction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use HiEvents\DomainObjects\EventDomainObject;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Resources\CapacityAssignment\CapacityAssignmentResource;
use HiEvents\Services\Handlers\CapacityAssignment\DTO\GetCapacityAssignmentsDTO;
use HiEvents\Services\Handlers\CapacityAssignment\GetCapacityAssignmentsHandler;
use HiEvents\Services\Application\Handlers\CapacityAssignment\DTO\GetCapacityAssignmentsDTO;
use HiEvents\Services\Application\Handlers\CapacityAssignment\GetCapacityAssignmentsHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\CapacityAssigment\UpsertCapacityAssignmentRequest;
use HiEvents\Resources\CapacityAssignment\CapacityAssignmentResource;
use HiEvents\Services\Application\Handlers\CapacityAssignment\DTO\UpsertCapacityAssignmentDTO;
use HiEvents\Services\Application\Handlers\CapacityAssignment\UpdateCapacityAssignmentHandler;
use HiEvents\Services\Domain\Product\Exception\UnrecognizedProductIdException;
use HiEvents\Services\Handlers\CapacityAssignment\DTO\UpsertCapacityAssignmentDTO;
use HiEvents\Services\Handlers\CapacityAssignment\UpdateCapacityAssignmentHandler;
use Illuminate\Http\JsonResponse;
use Symfony\Component\HttpFoundation\Response;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\CheckInList\UpsertCheckInListRequest;
use HiEvents\Resources\CheckInList\CheckInListResource;
use HiEvents\Services\Application\Handlers\CheckInList\CreateCheckInListHandler;
use HiEvents\Services\Application\Handlers\CheckInList\DTO\UpsertCheckInListDTO;
use HiEvents\Services\Domain\Product\Exception\UnrecognizedProductIdException;
use HiEvents\Services\Handlers\CheckInList\CreateCheckInListHandler;
use HiEvents\Services\Handlers\CheckInList\DTO\UpsertCheckInListDTO;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Response;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use HiEvents\DomainObjects\EventDomainObject;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Services\Handlers\CheckInList\DeleteCheckInListHandler;
use HiEvents\Services\Application\Handlers\CheckInList\DeleteCheckInListHandler;
use Illuminate\Http\Response;

class DeleteCheckInListAction extends BaseAction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use HiEvents\DomainObjects\EventDomainObject;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Resources\CheckInList\CheckInListResource;
use HiEvents\Services\Handlers\CheckInList\GetCheckInListHandler;
use HiEvents\Services\Application\Handlers\CheckInList\GetCheckInListHandler;
use Illuminate\Http\JsonResponse;

class GetCheckInListAction extends BaseAction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use HiEvents\DomainObjects\EventDomainObject;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Resources\CheckInList\CheckInListResource;
use HiEvents\Services\Handlers\CheckInList\DTO\GetCheckInListsDTO;
use HiEvents\Services\Handlers\CheckInList\GetCheckInListsHandler;
use HiEvents\Services\Application\Handlers\CheckInList\DTO\GetCheckInListsDTO;
use HiEvents\Services\Application\Handlers\CheckInList\GetCheckInListsHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\CheckInList\CreateAttendeeCheckInPublicRequest;
use HiEvents\Resources\CheckInList\AttendeeCheckInPublicResource;
use HiEvents\Services\Handlers\CheckInList\Public\CreateAttendeeCheckInPublicHandler;
use HiEvents\Services\Handlers\CheckInList\Public\DTO\CreateAttendeeCheckInPublicDTO;
use HiEvents\Services\Application\Handlers\CheckInList\Public\CreateAttendeeCheckInPublicHandler;
use HiEvents\Services\Application\Handlers\CheckInList\Public\DTO\CreateAttendeeCheckInPublicDTO;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Response;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use HiEvents\Exceptions\CannotCheckInException;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Services\Handlers\CheckInList\Public\DeleteAttendeeCheckInPublicHandler;
use HiEvents\Services\Handlers\CheckInList\Public\DTO\DeleteAttendeeCheckInPublicDTO;
use HiEvents\Services\Application\Handlers\CheckInList\Public\DeleteAttendeeCheckInPublicHandler;
use HiEvents\Services\Application\Handlers\CheckInList\Public\DTO\DeleteAttendeeCheckInPublicDTO;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\DTO\QueryParamsDTO;
use HiEvents\Resources\Attendee\AttendeeWithCheckInPublicResource;
use HiEvents\Services\Handlers\CheckInList\Public\GetCheckInListAttendeesPublicHandler;
use HiEvents\Services\Application\Handlers\CheckInList\Public\GetCheckInListAttendeesPublicHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Symfony\Component\HttpFoundation\Response;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use HiEvents\Http\Actions\BaseAction;
use HiEvents\Resources\CheckInList\CheckInListResourcePublic;
use HiEvents\Services\Handlers\CheckInList\Public\GetCheckInListPublicHandler;
use HiEvents\Services\Application\Handlers\CheckInList\Public\GetCheckInListPublicHandler;
use Illuminate\Http\JsonResponse;

class GetCheckInListPublicAction extends BaseAction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\CheckInList\UpsertCheckInListRequest;
use HiEvents\Resources\CheckInList\CheckInListResource;
use HiEvents\Services\Application\Handlers\CheckInList\DTO\UpsertCheckInListDTO;
use HiEvents\Services\Application\Handlers\CheckInList\UpdateCheckInlistHandler;
use HiEvents\Services\Domain\Product\Exception\UnrecognizedProductIdException;
use HiEvents\Services\Handlers\CheckInList\DTO\UpsertCheckInListDTO;
use HiEvents\Services\Handlers\CheckInList\UpdateCheckInlistHandler;
use Illuminate\Http\JsonResponse;
use Symfony\Component\HttpFoundation\Response;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\ResponseCodes;
use HiEvents\Services\Handlers\Order\Payment\Stripe\DTO\StripeWebhookDTO;
use HiEvents\Services\Handlers\Order\Payment\Stripe\IncomingWebhookHandler;
use HiEvents\Services\Application\Handlers\Order\Payment\Stripe\DTO\StripeWebhookDTO;
use HiEvents\Services\Application\Handlers\Order\Payment\Stripe\IncomingWebhookHandler;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Throwable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\EventSettings\UpdateEventSettingsRequest;
use HiEvents\Resources\Event\EventSettingsResource;
use HiEvents\Services\Handlers\EventSettings\DTO\UpdateEventSettingsDTO;
use HiEvents\Services\Handlers\EventSettings\UpdateEventSettingsHandler;
use HiEvents\Services\Application\Handlers\EventSettings\DTO\UpdateEventSettingsDTO;
use HiEvents\Services\Application\Handlers\EventSettings\UpdateEventSettingsHandler;
use Illuminate\Http\JsonResponse;

class EditEventSettingsAction extends BaseAction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\EventSettings\UpdateEventSettingsRequest;
use HiEvents\Resources\Event\EventSettingsResource;
use HiEvents\Services\Handlers\EventSettings\DTO\PartialUpdateEventSettingsDTO;
use HiEvents\Services\Handlers\EventSettings\PartialUpdateEventSettingsHandler;
use HiEvents\Services\Application\Handlers\EventSettings\DTO\PartialUpdateEventSettingsDTO;
use HiEvents\Services\Application\Handlers\EventSettings\PartialUpdateEventSettingsHandler;
use Illuminate\Http\JsonResponse;
use Throwable;

Expand Down
4 changes: 2 additions & 2 deletions backend/app/Http/Actions/Events/CreateEventAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\Event\CreateEventRequest;
use HiEvents\Resources\Event\EventResource;
use HiEvents\Services\Handlers\Event\CreateEventHandler;
use HiEvents\Services\Handlers\Event\DTO\CreateEventDTO;
use HiEvents\Services\Application\Handlers\Event\CreateEventHandler;
use HiEvents\Services\Application\Handlers\Event\DTO\CreateEventDTO;
use Illuminate\Http\JsonResponse;
use Illuminate\Validation\ValidationException;
use Throwable;
Expand Down
2 changes: 1 addition & 1 deletion backend/app/Http/Actions/Events/DuplicateEventAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\Event\DuplicateEventRequest;
use HiEvents\Resources\Event\EventResource;
use HiEvents\Services\Application\Handlers\Event\DuplicateEventHandler;
use HiEvents\Services\Domain\Event\DTO\DuplicateEventDataDTO;
use HiEvents\Services\Handlers\Event\DuplicateEventHandler;
use Illuminate\Http\JsonResponse;
use Throwable;

Expand Down
4 changes: 2 additions & 2 deletions backend/app/Http/Actions/Events/GetEventPublicAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
use HiEvents\DomainObjects\Status\EventStatus;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Resources\Event\EventResourcePublic;
use HiEvents\Services\Handlers\Event\DTO\GetPublicEventDTO;
use HiEvents\Services\Handlers\Event\GetPublicEventHandler;
use HiEvents\Services\Application\Handlers\Event\DTO\GetPublicEventDTO;
use HiEvents\Services\Application\Handlers\Event\GetPublicEventHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
Expand Down
4 changes: 2 additions & 2 deletions backend/app/Http/Actions/Events/GetEventsAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
use HiEvents\DomainObjects\EventDomainObject;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Resources\Event\EventResource;
use HiEvents\Services\Handlers\Event\DTO\GetEventsDTO;
use HiEvents\Services\Handlers\Event\GetEventsHandler;
use HiEvents\Services\Application\Handlers\Event\DTO\GetEventsDTO;
use HiEvents\Services\Application\Handlers\Event\GetEventsHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Http\Request\Event\CreateEventImageRequest;
use HiEvents\Resources\Image\ImageResource;
use HiEvents\Services\Handlers\Event\CreateEventImageHandler;
use HiEvents\Services\Handlers\Event\DTO\CreateEventImageDTO;
use HiEvents\Services\Application\Handlers\Event\CreateEventImageHandler;
use HiEvents\Services\Application\Handlers\Event\DTO\CreateEventImageDTO;
use Illuminate\Http\JsonResponse;

class CreateEventImageAction extends BaseAction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use HiEvents\DomainObjects\EventDomainObject;
use HiEvents\Http\Actions\BaseAction;
use HiEvents\Services\Handlers\Event\DeleteEventImageHandler;
use HiEvents\Services\Handlers\Event\DTO\DeleteEventImageDTO;
use HiEvents\Services\Application\Handlers\Event\DeleteEventImageHandler;
use HiEvents\Services\Application\Handlers\Event\DTO\DeleteEventImageDTO;
use Illuminate\Http\Response;

class DeleteEventImageAction extends BaseAction
Expand Down
Loading
Loading