Files
wyczarujprezent.pl/modules/ps_eventbus/tests/Mocks/Handler/ErrorHandlerMock.php
2024-10-28 22:14:22 +01:00

13 lines
296 B
PHP

<?php
namespace PrestaShop\Module\PsEventbus\Tests\Mocks\Handler;
use PrestaShop\Module\PsEventbus\Handler\ErrorHandler\ErrorHandlerInterface;
class ErrorHandlerMock implements ErrorHandlerInterface
{
public function handle($error, $code = null, $throw = true, $data = null)
{
}
}