- 6 new domain repository interfaces (StoragePath, ArticlePhoto, AttributeValue, ChannelField, ArticleTypePlatformConfig, AttributeMapping) - 6 Doctrine repository implementations - StorageManager with multi-path quota-aware file storage (LocalStorageManager) - Application services: ArticleTypeService, ArticleService, ArticleValidator, PhotoService, PlatformService, MappingService - REST controllers: ArticleType, Article, Photo, Platform, Mapping (all under /api prefix) - inventory_number sequence migration - 22 unit tests passing, PHPStan level 9 clean, CS Fixer clean - Fixed phpdoc_to_comment CS Fixer rule (disabled) to preserve @var type annotations - Fixed PHPStan: User::getUserIdentifier non-empty-string, AIPipelineJob nullable missingFields Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
840 B
PHP
33 lines
840 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Infrastructure\Persistence\Repository;
|
|
|
|
use App\Domain\Order\Order;
|
|
use App\Domain\Order\Repository\OrderRepositoryInterface;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Symfony\Component\Uid\Uuid;
|
|
|
|
final class DoctrineOrderRepository implements OrderRepositoryInterface
|
|
{
|
|
public function __construct(private readonly EntityManagerInterface $em)
|
|
{
|
|
}
|
|
|
|
public function findById(Uuid $id): ?Order
|
|
{
|
|
return $this->em->find(Order::class, $id);
|
|
}
|
|
|
|
public function findByPlatformOrderId(string $platformOrderId): ?Order
|
|
{
|
|
return $this->em->getRepository(Order::class)->findOneBy(['platformOrderId' => $platformOrderId]);
|
|
}
|
|
|
|
public function save(Order $order): void
|
|
{
|
|
$this->em->persist($order);
|
|
$this->em->flush();
|
|
}
|
|
}
|