[backend] accept articles from crawler

This commit is contained in:
2025-10-07 00:15:38 +02:00
parent 327ba5179d
commit 449718cdf2
397 changed files with 1490 additions and 3063 deletions
@@ -4,8 +4,8 @@ declare(strict_types=1);
namespace Tests\Behat\Context;
use App\SharedKernel\Application\Messaging\CommandBus;
use App\SharedKernel\Application\Messaging\QueryBus;
use Basango\SharedKernel\Application\Messaging\CommandBus;
use Basango\SharedKernel\Application\Messaging\QueryBus;
use Behat\Behat\Context\Context;
use Symfony\Contracts\Service\ServiceMethodsSubscriberTrait;
use Symfony\Contracts\Service\ServiceSubscriberInterface;
@@ -4,8 +4,8 @@ declare(strict_types=1);
namespace Tests\Unit\Aggregator\Domain\Model\ValueObject;
use App\Aggregator\Domain\Model\ValueObject\Crawling\PageRange;
use App\SharedKernel\Domain\Exception\InvalidArgument;
use Basango\Aggregator\Domain\Model\ValueObject\Crawling\PageRange;
use Basango\SharedKernel\Domain\Exception\InvalidArgument;
use PHPUnit\Framework\TestCase;
/**
@@ -4,7 +4,7 @@ declare(strict_types=1);
namespace Tests\Unit\Aggregator\Domain\Service;
use App\Aggregator\Domain\Service\Crawling\DateParser;
use Basango\Aggregator\Domain\Service\Crawling\DateParser;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
@@ -4,8 +4,8 @@ declare(strict_types=1);
namespace Tests\Unit\SharedKernel\Domain\Model\ValueObject;
use App\SharedKernel\Domain\Exception\InvalidArgument;
use App\SharedKernel\Domain\Model\ValueObject\DateRange;
use Basango\SharedKernel\Domain\Exception\InvalidArgument;
use Basango\SharedKernel\Domain\Model\ValueObject\DateRange;
use PHPUnit\Framework\TestCase;
/**
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
use App\SharedKernel\Infrastructure\Framework\Symfony\Kernel;
use Basango\SharedKernel\Infrastructure\Framework\Symfony\Kernel;
use Symfony\Component\Dotenv\Dotenv;
require __DIR__ . '/../vendor/autoload.php';