Remove the CoreBundle namespace

This commit is contained in:
Yassine Guedidi
2024-02-19 01:30:12 +01:00
parent fe039247b5
commit 0b44170e83
338 changed files with 1061 additions and 1061 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Wallabag\CoreBundle\Import;
namespace Tests\Wallabag\Import;
use Doctrine\ORM\EntityManager;
use M6Web\Component\RedisMock\RedisMockFactory;
@ -10,13 +10,13 @@ use PHPUnit\Framework\TestCase;
use Predis\Client;
use Simpleue\Queue\RedisQueue;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\CoreBundle\Helper\ContentProxy;
use Wallabag\CoreBundle\Helper\TagsAssigner;
use Wallabag\CoreBundle\Import\ChromeImport;
use Wallabag\CoreBundle\Redis\Producer;
use Wallabag\CoreBundle\Repository\EntryRepository;
use Wallabag\Entity\Entry;
use Wallabag\Entity\User;
use Wallabag\Helper\ContentProxy;
use Wallabag\Helper\TagsAssigner;
use Wallabag\Import\ChromeImport;
use Wallabag\Redis\Producer;
use Wallabag\Repository\EntryRepository;
class ChromeImportTest extends TestCase
{

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Wallabag\CoreBundle\Import;
namespace Tests\Wallabag\Import;
use Doctrine\ORM\EntityManager;
use M6Web\Component\RedisMock\RedisMockFactory;
@ -10,13 +10,13 @@ use PHPUnit\Framework\TestCase;
use Predis\Client;
use Simpleue\Queue\RedisQueue;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\CoreBundle\Helper\ContentProxy;
use Wallabag\CoreBundle\Helper\TagsAssigner;
use Wallabag\CoreBundle\Import\FirefoxImport;
use Wallabag\CoreBundle\Redis\Producer;
use Wallabag\CoreBundle\Repository\EntryRepository;
use Wallabag\Entity\Entry;
use Wallabag\Entity\User;
use Wallabag\Helper\ContentProxy;
use Wallabag\Helper\TagsAssigner;
use Wallabag\Import\FirefoxImport;
use Wallabag\Redis\Producer;
use Wallabag\Repository\EntryRepository;
class FirefoxImportTest extends TestCase
{

View File

@ -1,10 +1,10 @@
<?php
namespace Tests\Wallabag\CoreBundle\Import;
namespace Tests\Wallabag\Import;
use PHPUnit\Framework\TestCase;
use Wallabag\CoreBundle\Import\ImportChain;
use Wallabag\CoreBundle\Import\ImportInterface;
use Wallabag\Import\ImportChain;
use Wallabag\Import\ImportInterface;
class ImportChainTest extends TestCase
{

View File

@ -1,11 +1,11 @@
<?php
namespace Tests\Wallabag\CoreBundle\Import;
namespace Tests\Wallabag\Import;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Wallabag\CoreBundle\Import\ImportChain;
use Wallabag\CoreBundle\Import\ImportCompilerPass;
use Wallabag\Import\ImportChain;
use Wallabag\Import\ImportCompilerPass;
class ImportCompilerPassTest extends TestCase
{

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Wallabag\CoreBundle\Import;
namespace Tests\Wallabag\Import;
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\UnitOfWork;
@ -11,13 +11,13 @@ use PHPUnit\Framework\TestCase;
use Predis\Client;
use Simpleue\Queue\RedisQueue;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\CoreBundle\Helper\ContentProxy;
use Wallabag\CoreBundle\Helper\TagsAssigner;
use Wallabag\CoreBundle\Import\InstapaperImport;
use Wallabag\CoreBundle\Redis\Producer;
use Wallabag\CoreBundle\Repository\EntryRepository;
use Wallabag\Entity\Entry;
use Wallabag\Entity\User;
use Wallabag\Helper\ContentProxy;
use Wallabag\Helper\TagsAssigner;
use Wallabag\Import\InstapaperImport;
use Wallabag\Redis\Producer;
use Wallabag\Repository\EntryRepository;
class InstapaperImportTest extends TestCase
{

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Wallabag\CoreBundle\Import;
namespace Tests\Wallabag\Import;
use Doctrine\ORM\EntityManager;
use M6Web\Component\RedisMock\RedisMockFactory;
@ -10,13 +10,13 @@ use PHPUnit\Framework\TestCase;
use Predis\Client;
use Simpleue\Queue\RedisQueue;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\CoreBundle\Helper\ContentProxy;
use Wallabag\CoreBundle\Helper\TagsAssigner;
use Wallabag\CoreBundle\Import\PocketHtmlImport;
use Wallabag\CoreBundle\Redis\Producer;
use Wallabag\CoreBundle\Repository\EntryRepository;
use Wallabag\Entity\Entry;
use Wallabag\Entity\User;
use Wallabag\Helper\ContentProxy;
use Wallabag\Helper\TagsAssigner;
use Wallabag\Import\PocketHtmlImport;
use Wallabag\Redis\Producer;
use Wallabag\Repository\EntryRepository;
class PocketHtmlImportTest extends TestCase
{

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Wallabag\CoreBundle\Import;
namespace Tests\Wallabag\Import;
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\UnitOfWork;
@ -13,14 +13,14 @@ use Simpleue\Queue\RedisQueue;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\HttpClient\MockHttpClient;
use Symfony\Component\HttpClient\Response\MockResponse;
use Wallabag\CoreBundle\Entity\Config;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\CoreBundle\Helper\ContentProxy;
use Wallabag\CoreBundle\Helper\TagsAssigner;
use Wallabag\CoreBundle\Import\PocketImport;
use Wallabag\CoreBundle\Redis\Producer;
use Wallabag\CoreBundle\Repository\EntryRepository;
use Wallabag\Entity\Config;
use Wallabag\Entity\Entry;
use Wallabag\Entity\User;
use Wallabag\Helper\ContentProxy;
use Wallabag\Helper\TagsAssigner;
use Wallabag\Import\PocketImport;
use Wallabag\Redis\Producer;
use Wallabag\Repository\EntryRepository;
class PocketImportTest extends TestCase
{

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Wallabag\CoreBundle\Import;
namespace Tests\Wallabag\Import;
use Doctrine\ORM\EntityManager;
use M6Web\Component\RedisMock\RedisMockFactory;
@ -10,13 +10,13 @@ use PHPUnit\Framework\TestCase;
use Predis\Client;
use Simpleue\Queue\RedisQueue;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\CoreBundle\Helper\ContentProxy;
use Wallabag\CoreBundle\Helper\TagsAssigner;
use Wallabag\CoreBundle\Import\ReadabilityImport;
use Wallabag\CoreBundle\Redis\Producer;
use Wallabag\CoreBundle\Repository\EntryRepository;
use Wallabag\Entity\Entry;
use Wallabag\Entity\User;
use Wallabag\Helper\ContentProxy;
use Wallabag\Helper\TagsAssigner;
use Wallabag\Import\ReadabilityImport;
use Wallabag\Redis\Producer;
use Wallabag\Repository\EntryRepository;
class ReadabilityImportTest extends TestCase
{

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Wallabag\CoreBundle\Import;
namespace Tests\Wallabag\Import;
use Doctrine\ORM\EntityManager;
use M6Web\Component\RedisMock\RedisMockFactory;
@ -10,13 +10,13 @@ use PHPUnit\Framework\TestCase;
use Predis\Client;
use Simpleue\Queue\RedisQueue;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\CoreBundle\Helper\ContentProxy;
use Wallabag\CoreBundle\Helper\TagsAssigner;
use Wallabag\CoreBundle\Import\ShaarliImport;
use Wallabag\CoreBundle\Redis\Producer;
use Wallabag\CoreBundle\Repository\EntryRepository;
use Wallabag\Entity\Entry;
use Wallabag\Entity\User;
use Wallabag\Helper\ContentProxy;
use Wallabag\Helper\TagsAssigner;
use Wallabag\Import\ShaarliImport;
use Wallabag\Redis\Producer;
use Wallabag\Repository\EntryRepository;
class ShaarliImportTest extends TestCase
{

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Wallabag\CoreBundle\Import;
namespace Tests\Wallabag\Import;
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\UnitOfWork;
@ -11,13 +11,13 @@ use PHPUnit\Framework\TestCase;
use Predis\Client;
use Simpleue\Queue\RedisQueue;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\CoreBundle\Helper\ContentProxy;
use Wallabag\CoreBundle\Helper\TagsAssigner;
use Wallabag\CoreBundle\Import\WallabagV1Import;
use Wallabag\CoreBundle\Redis\Producer;
use Wallabag\CoreBundle\Repository\EntryRepository;
use Wallabag\Entity\Entry;
use Wallabag\Entity\User;
use Wallabag\Helper\ContentProxy;
use Wallabag\Helper\TagsAssigner;
use Wallabag\Import\WallabagV1Import;
use Wallabag\Redis\Producer;
use Wallabag\Repository\EntryRepository;
class WallabagV1ImportTest extends TestCase
{

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Wallabag\CoreBundle\Import;
namespace Tests\Wallabag\Import;
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\UnitOfWork;
@ -11,13 +11,13 @@ use PHPUnit\Framework\TestCase;
use Predis\Client;
use Simpleue\Queue\RedisQueue;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\CoreBundle\Helper\ContentProxy;
use Wallabag\CoreBundle\Helper\TagsAssigner;
use Wallabag\CoreBundle\Import\WallabagV2Import;
use Wallabag\CoreBundle\Redis\Producer;
use Wallabag\CoreBundle\Repository\EntryRepository;
use Wallabag\Entity\Entry;
use Wallabag\Entity\User;
use Wallabag\Helper\ContentProxy;
use Wallabag\Helper\TagsAssigner;
use Wallabag\Import\WallabagV2Import;
use Wallabag\Redis\Producer;
use Wallabag\Repository\EntryRepository;
class WallabagV2ImportTest extends TestCase
{