feat: replace *Service suffix with role-based class names

This commit is contained in:
Björn Fromme
2026-04-16 13:34:54 +02:00
parent 0d2cc5b998
commit d1c92f2957
88 changed files with 435 additions and 435 deletions
+3 -3
View File
@@ -5,19 +5,19 @@ declare(strict_types=1);
namespace App\Tests\Logger;
use App\Logger\ErrorCodeProcessor;
use App\Service\ErrorCodeService;
use App\Service\ErrorCodeGenerator;
use Monolog\Level;
use Monolog\LogRecord;
use PHPUnit\Framework\TestCase;
class ErrorCodeProcessorTest extends TestCase
{
private ErrorCodeService $errorCodeService;
private ErrorCodeGenerator $errorCodeService;
private ErrorCodeProcessor $processor;
protected function setUp(): void
{
$this->errorCodeService = $this->createMock(ErrorCodeService::class);
$this->errorCodeService = $this->createMock(ErrorCodeGenerator::class);
$this->processor = new ErrorCodeProcessor($this->errorCodeService);
}