Skip to content

Commit

Permalink
php 8.4 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Dec 28, 2024
1 parent 62fc0a1 commit 2eaa9f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion spec/Listener/MvcSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use Closure;
use ErrorException;
use ErrorHeroModule\Compat\Logger;
use ErrorHeroModule\Handler\Logging;
use ErrorHeroModule\Listener\Mvc;
use Exception;
Expand All @@ -12,7 +13,6 @@
use Laminas\Db\Adapter\AdapterInterface;
use Laminas\EventManager\EventManagerInterface;
use Laminas\Http\PhpEnvironment\Request;
use Laminas\Log\Logger;
use Laminas\Log\Writer\Db;
use Laminas\Mvc\MvcEvent;
use Laminas\Uri\Uri;
Expand Down
2 changes: 1 addition & 1 deletion spec/Middleware/MezzioSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use Closure;
use ErrorException;
use ErrorHeroModule\Compat\Logger;
use ErrorHeroModule\Handler\Logging;
use ErrorHeroModule\Middleware\Mezzio;
use Exception;
Expand All @@ -13,7 +14,6 @@
use Laminas\Diactoros\Response;
use Laminas\Diactoros\ServerRequest;
use Laminas\Diactoros\Uri;
use Laminas\Log\Logger;
use Laminas\Log\Writer\Db;
use Laminas\View\Renderer\PhpRenderer;
use Laminas\View\Resolver\AggregateResolver;
Expand Down
2 changes: 1 addition & 1 deletion src/Handler/Logging.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
namespace ErrorHeroModule\Handler;

use ErrorException;
use ErrorHeroModule\Compat\Logger;
use ErrorHeroModule\Handler\Formatter\Json;
use ErrorHeroModule\Handler\Writer\Mail;
use ErrorHeroModule\HeroConstant;
use Laminas\Diactoros\Stream;
use Laminas\Http\Header\Cookie;
use Laminas\Http\PhpEnvironment\RemoteAddress;
use Laminas\Http\PhpEnvironment\Request as HttpRequest;
use Laminas\Log\Logger;
use Laminas\Log\Writer\Db;
use Laminas\Mail\Message;
use Laminas\Mail\Transport\TransportInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/Transformer/TransformerAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

namespace ErrorHeroModule\Transformer;

use ErrorHeroModule\Compat\Logger;
use Laminas\Db\Adapter\Adapter;
use Laminas\Log\Logger;

abstract class TransformerAbstract
{
Expand Down

0 comments on commit 2eaa9f5

Please sign in to comment.