Skip to content

Commit

Permalink
Update media and logger modules namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
voltan committed Nov 16, 2024
1 parent 17863dc commit f4efada
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Laminas\Mvc\Middleware\PipeSpec;
use Laminas\Router\Http\Literal;
use Logger\Middleware\LoggerRequestResponseMiddleware;
use Pi\Logger\Middleware\LoggerRequestResponseMiddleware;
use Pi\Core\Middleware\ErrorMiddleware;
use Pi\Core\Middleware\RequestPreparationMiddleware;
use Pi\Core\Middleware\SecurityMiddleware;
Expand Down
2 changes: 1 addition & 1 deletion src/Factory/Handler/Admin/Profile/ExportHandlerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Pi\User\Factory\Handler\Admin\Profile;

use Laminas\ServiceManager\Factory\FactoryInterface;
use Media\Service\MediaService;
use Pi\Media\Service\MediaService;
use Pi\User\Handler\Admin\Profile\ExportHandler;
use Pi\User\Handler\Admin\Profile\ListHandler;
use Pi\User\Service\AccountService;
Expand Down
2 changes: 1 addition & 1 deletion src/Factory/Service/HistoryServiceFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Pi\User\Factory\Service;

use Laminas\ServiceManager\Factory\FactoryInterface;
use Logger\Service\LoggerService;
use Pi\Logger\Service\LoggerService;
use Pi\User\Service\HistoryService;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\ContainerInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/Handler/Admin/Profile/ExportHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Fig\Http\Message\StatusCodeInterface;
use Laminas\Diactoros\Response\JsonResponse;
use Media\Service\MediaService;
use Pi\Media\Service\MediaService;
use Pi\User\Service\AccountService;
use Pi\User\Service\ExportService;
use Psr\Http\Message\ResponseFactoryInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/Service/HistoryService.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Pi\User\Service;

use Logger\Service\LoggerService;
use Pi\Logger\Service\LoggerService;

class HistoryService implements ServiceInterface
{
Expand Down

0 comments on commit f4efada

Please sign in to comment.