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

@ -3,7 +3,7 @@
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Kernel;
use Wallabag\CoreBundle\Import\ImportCompilerPass;
use Wallabag\Import\ImportCompilerPass;
class AppKernel extends Kernel
{

View File

@ -6,7 +6,7 @@ use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Initial database structure.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added foreign keys for account resetting.

View File

@ -4,7 +4,7 @@ namespace Application\Migrations;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added name field on wallabag_oauth2_clients.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added settings for RabbitMQ and Redis imports.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added pocket_consumer_key field on wallabag_config.

View File

@ -7,7 +7,7 @@ use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added pocket_consumer_key field on wallabag_config.

View File

@ -4,7 +4,7 @@ namespace Application\Migrations;
use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Converted database to utf8mb4 encoding (for MySQL only).

View File

@ -4,7 +4,7 @@ namespace Application\Migrations;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added user_id column on oauth2_clients to prevent users to delete API clients from other users.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added the internal setting to enable/disable downloading pictures.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added created_at index on entry table.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added action_mark_as_read field on config table.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added the internal setting to share articles to unmark.it.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add http_status in `entry_table`.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add the restricted_access internal setting for articles with paywall.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Methods and properties removed from `FOS\UserBundle\Model\User`.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added list_mode in user config.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Removed locked, credentials_expire_at and expires_at.

View File

@ -6,7 +6,7 @@ use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Renamed uuid to uid in entry table.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added index on wallabag_entry.uid.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added indexes on wallabag_entry.is_starred and wallabag_entry.is_archived.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add the share_scuttle internal setting.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add published_at and published_by in `entry` table.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Remove isPublic in Entry Table.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Remove download_pictures in craue_config_setting.

View File

@ -4,7 +4,7 @@ namespace Application\Migrations;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add site credential table to store username & password for some website (behind authentication or paywall).

View File

@ -4,7 +4,7 @@ namespace Application\Migrations;
use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Changed length for username, username_canonical, email and email_canonical fields in wallabag_user table.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added `headers` field in entry table.

View File

@ -7,7 +7,7 @@ use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Increase the length of the "quote" column of "annotation" table.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add api_user_registration in craue_config_setting.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Remove wallabag_url from craue_config_setting.

View File

@ -4,7 +4,7 @@ namespace Application\Migrations;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Changed tags to lowercase.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add starred_at column and set its value to updated_at for is_starred entries.

View File

@ -6,7 +6,7 @@ use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Changed reading_time field to prevent null value.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add origin_url column.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add store_article_headers in craue_config_setting.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add shaarli_share_origin_url in craue_config_setting.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add archived_at column and set its value to updated_at for is_archived entries.

View File

@ -4,7 +4,7 @@ namespace Application\Migrations;
use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Fix varchar field from vendor to work with utf8mb4.

View File

@ -6,7 +6,7 @@ use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add 2fa OTP stuff.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add updated_at fields to site_credential table.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add missing entries in craue_config_setting.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add hashed_url in entry.

View File

@ -6,7 +6,7 @@ use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Rename rss_token & rss_limit to feed_token & feed_limit.

View File

@ -7,7 +7,7 @@ use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Enable cascade delete when deleting a user on:

View File

@ -6,7 +6,7 @@ namespace Application\Migrations;
use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Convert tab label to utf8mb4_bin (MySQL only).

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added `given_url` & `hashed_given_url` field in entry table.

View File

@ -4,7 +4,7 @@ namespace Application\Migrations;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Change reading_time field on SQLite to be integer NOT NULL

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Change reading speed value.

View File

@ -6,7 +6,7 @@ use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Adding more index to kill some slow queries:

View File

@ -6,7 +6,7 @@ use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Change the internal setting table name.

View File

@ -6,7 +6,7 @@ namespace Application\Migrations;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add tables for the ignore origin rules.

View File

@ -4,7 +4,7 @@ namespace Application\Migrations;
use Doctrine\DBAL\Migrations\SkipMigrationException;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Remove baggy theme.

View File

@ -5,7 +5,7 @@ declare(strict_types=1);
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Renamed Piwik to Matomo in configuration.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Drop theme fields from config table.

View File

@ -6,7 +6,7 @@ use Doctrine\DBAL\Platforms\MySQLPlatform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Remove the deprecated (and removed in DBAL v3) `json_array` type.

View File

@ -3,7 +3,7 @@
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Added a new setting to display or not thumbnails.

View File

@ -5,7 +5,7 @@ declare(strict_types=1);
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Remove demonstration mode settings.

View File

@ -5,7 +5,7 @@ declare(strict_types=1);
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Remove mobi export.

View File

@ -5,7 +5,7 @@ declare(strict_types=1);
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add is_not_parsed field to entry table.

View File

@ -5,7 +5,7 @@ declare(strict_types=1);
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Wallabag\CoreBundle\Doctrine\WallabagMigration;
use Wallabag\Doctrine\WallabagMigration;
/**
* Add custom_css column to config table.

View File

@ -61,7 +61,7 @@ doctrine:
dbal:
url: '%env(resolve:DATABASE_URL)%'
types:
json_array: Wallabag\CoreBundle\Doctrine\JsonArrayType
json_array: Wallabag\Doctrine\JsonArrayType
orm:
auto_generate_proxy_classes: "%kernel.debug%"
@ -73,7 +73,7 @@ doctrine:
type: annotation
is_bundle: false
dir: '%kernel.project_dir%/src/Entity'
prefix: 'Wallabag\CoreBundle\Entity'
prefix: 'Wallabag\Entity'
alias: Wallabag
stof_doctrine_extensions:
@ -177,7 +177,7 @@ nelmio_cors:
fos_user:
db_driver: orm
firewall_name: secured_area
user_class: Wallabag\CoreBundle\Entity\User
user_class: Wallabag\Entity\User
registration:
confirmation:
enabled: "%fosuser_confirmation%"
@ -185,14 +185,14 @@ fos_user:
address: "%from_email%"
sender_name: wallabag
service:
mailer: Wallabag\CoreBundle\Mailer\UserMailer
mailer: Wallabag\Mailer\UserMailer
fos_oauth_server:
db_driver: orm
client_class: Wallabag\CoreBundle\Entity\Api\Client
access_token_class: Wallabag\CoreBundle\Entity\Api\AccessToken
refresh_token_class: Wallabag\CoreBundle\Entity\Api\RefreshToken
auth_code_class: Wallabag\CoreBundle\Entity\Api\AuthCode
client_class: Wallabag\Entity\Api\Client
access_token_class: Wallabag\Entity\Api\AccessToken
refresh_token_class: Wallabag\Entity\Api\RefreshToken
auth_code_class: Wallabag\Entity\Api\AuthCode
service:
user_provider: fos_user.user_provider.username_email
options:
@ -218,7 +218,7 @@ scheb_two_factor:
sender_email: "%twofactor_sender%"
digits: 6
template: "Authentication/form.html.twig"
mailer: Wallabag\CoreBundle\Mailer\AuthCodeMailer
mailer: Wallabag\Mailer\AuthCodeMailer
rulerz:
targets:
@ -433,7 +433,7 @@ sensio_framework_extra:
httplug:
clients:
wallabag_core:
factory: Wallabag\CoreBundle\Helper\HttpClientFactory
factory: Wallabag\Helper\HttpClientFactory
config:
defaults:
timeout: 10
@ -443,7 +443,7 @@ httplug:
# define custom entity so we can override length attribute to fix utf8mb4 issue
craue_config:
entity_name: Wallabag\CoreBundle\Entity\InternalSetting
entity_name: Wallabag\Entity\InternalSetting
when@dev:
maker:

View File

@ -9,7 +9,7 @@ doc-api:
homepage:
path: "/{page}"
defaults:
_controller: 'Wallabag\CoreBundle\Controller\EntryController::showUnreadAction'
_controller: 'Wallabag\Controller\EntryController::showUnreadAction'
page : 1
requirements:
page: \d+

View File

@ -9,7 +9,7 @@ security:
providers:
administrators:
entity:
class: 'Wallabag\CoreBundle\Entity\User'
class: 'Wallabag\Entity\User'
property: username
fos_userbundle:
id: fos_user.user_provider.username_email

View File

@ -4,7 +4,7 @@ imports:
- { resource: parameters_addons.yml }
parameters:
spiriit_form_filter.get_filter.doctrine_orm.class: Wallabag\CoreBundle\Event\Subscriber\CustomDoctrineORMSubscriber
spiriit_form_filter.get_filter.doctrine_orm.class: Wallabag\Event\Subscriber\CustomDoctrineORMSubscriber
services:
_defaults:
@ -32,73 +32,73 @@ services:
$supportUrl: '@=service(''craue_config'').get(''wallabag_support_url'')'
$fonts: '%wallabag_core.fonts%'
Wallabag\CoreBundle\:
Wallabag\:
resource: '../../src/*'
exclude: ['../../src/{Consumer,Controller,Entity,ExpressionLanguage,DataFixtures,Redis}', '../../src/Event/*Event.php']
# controllers are imported separately to make sure services can be injected
# as action arguments even if you don't extend any base controller class
Wallabag\CoreBundle\Controller\:
Wallabag\Controller\:
resource: '../../src/Controller/'
tags: ['controller.service_arguments']
# inject alias service into controllers
Wallabag\CoreBundle\Controller\Import\ChromeController:
Wallabag\Controller\Import\ChromeController:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_chrome_producer'
$redisProducer: '@wallabag_core.producer.redis.chrome'
Wallabag\CoreBundle\Controller\Import\DeliciousController:
Wallabag\Controller\Import\DeliciousController:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_delicious_producer'
$redisProducer: '@wallabag_core.producer.redis.delicious'
Wallabag\CoreBundle\Controller\Import\ElcuratorController:
Wallabag\Controller\Import\ElcuratorController:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_elcurator_producer'
$redisProducer: '@wallabag_core.producer.redis.elcurator'
Wallabag\CoreBundle\Controller\Import\FirefoxController:
Wallabag\Controller\Import\FirefoxController:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_firefox_producer'
$redisProducer: '@wallabag_core.producer.redis.firefox'
Wallabag\CoreBundle\Controller\Import\InstapaperController:
Wallabag\Controller\Import\InstapaperController:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_instapaper_producer'
$redisProducer: '@wallabag_core.producer.redis.instapaper'
Wallabag\CoreBundle\Controller\Import\PinboardController:
Wallabag\Controller\Import\PinboardController:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_pinboard_producer'
$redisProducer: '@wallabag_core.producer.redis.pinboard'
Wallabag\CoreBundle\Controller\Import\PocketController:
Wallabag\Controller\Import\PocketController:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_pocket_producer'
$redisProducer: '@wallabag_core.producer.redis.pocket'
Wallabag\CoreBundle\Controller\Import\ReadabilityController:
Wallabag\Controller\Import\ReadabilityController:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_readability_producer'
$redisProducer: '@wallabag_core.producer.redis.readability'
Wallabag\CoreBundle\Controller\Import\WallabagV1Controller:
Wallabag\Controller\Import\WallabagV1Controller:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_wallabag_v1_producer'
$redisProducer: '@wallabag_core.producer.redis.wallabag_v1'
Wallabag\CoreBundle\Controller\Import\WallabagV2Controller:
Wallabag\Controller\Import\WallabagV2Controller:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_wallabag_v2_producer'
$redisProducer: '@wallabag_core.producer.redis.wallabag_v2'
Wallabag\CoreBundle\Controller\Import\ShaarliController:
Wallabag\Controller\Import\ShaarliController:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_shaarli_producer'
$redisProducer: '@wallabag_core.producer.redis.shaarli'
Wallabag\CoreBundle\Controller\Import\PocketHtmlController:
Wallabag\Controller\Import\PocketHtmlController:
arguments:
$rabbitMqProducer: '@old_sound_rabbit_mq.import_pocket_html_producer'
$redisProducer: '@wallabag_core.producer.redis.pocket_html'
@ -154,7 +154,7 @@ services:
ScssPhp\ScssPhp\Compiler:
public: false
Wallabag\CoreBundle\Event\Listener\UserLocaleListener:
Wallabag\Event\Listener\UserLocaleListener:
tags:
- { name: kernel.event_listener, event: security.interactive_login, method: onInteractiveLogin }
@ -166,11 +166,11 @@ services:
$defaultLifetime: 0
$directory: '%kernel.cache_dir%'
Wallabag\CoreBundle\ParamConverter\UsernameFeedTokenConverter:
Wallabag\ParamConverter\UsernameFeedTokenConverter:
tags:
- { name: request.param_converter, converter: username_feed_token_converter }
Wallabag\CoreBundle\Event\Subscriber\TablePrefixSubscriber:
Wallabag\Event\Subscriber\TablePrefixSubscriber:
tags:
- { name: doctrine.event_subscriber }
@ -191,42 +191,42 @@ services:
wallabag_core.http_client:
alias: 'httplug.client.wallabag_core'
Wallabag\CoreBundle\SiteConfig\GrabySiteConfigBuilder:
Wallabag\SiteConfig\GrabySiteConfigBuilder:
tags:
- { name: monolog.logger, channel: graby }
# service alias override
Wallabag\CoreBundle\SiteConfig\SiteConfigBuilder:
alias: Wallabag\CoreBundle\SiteConfig\GrabySiteConfigBuilder
Wallabag\SiteConfig\SiteConfigBuilder:
alias: Wallabag\SiteConfig\GrabySiteConfigBuilder
GuzzleHttp\Cookie\CookieJar:
alias: 'Wallabag\CoreBundle\Helper\FileCookieJar'
alias: 'Wallabag\Helper\FileCookieJar'
Wallabag\CoreBundle\Helper\HttpClientFactory:
Wallabag\Helper\HttpClientFactory:
calls:
- ['addSubscriber', ['@Wallabag\CoreBundle\Guzzle\AuthenticatorSubscriber']]
- ['addSubscriber', ['@Wallabag\CoreBundle\Guzzle\FixupMondeDiplomatiqueUriSubscriber']]
- ['addSubscriber', ['@Wallabag\Guzzle\AuthenticatorSubscriber']]
- ['addSubscriber', ['@Wallabag\Guzzle\FixupMondeDiplomatiqueUriSubscriber']]
RulerZ\RulerZ:
alias: rulerz
Wallabag\CoreBundle\Operator\PHP\Matches:
Wallabag\Operator\PHP\Matches:
tags:
- { name: rulerz.operator, target: native, operator: matches }
Wallabag\CoreBundle\Operator\Doctrine\Matches:
Wallabag\Operator\Doctrine\Matches:
tags:
- { name: rulerz.operator, target: doctrine, operator: matches, inline: true }
Wallabag\CoreBundle\Operator\PHP\NotMatches:
Wallabag\Operator\PHP\NotMatches:
tags:
- { name: rulerz.operator, target: native, operator: notmatches }
Wallabag\CoreBundle\Operator\Doctrine\NotMatches:
Wallabag\Operator\Doctrine\NotMatches:
tags:
- { name: rulerz.operator, target: doctrine, operator: notmatches, inline: true }
Wallabag\CoreBundle\Operator\PHP\PatternMatches:
Wallabag\Operator\PHP\PatternMatches:
tags:
- { name: rulerz.operator, target: native, operator: "~" }
@ -239,26 +239,26 @@ services:
path: '%redis_path%'
password: '%redis_password%'
Wallabag\CoreBundle\Event\Subscriber\SQLiteCascadeDeleteSubscriber:
Wallabag\Event\Subscriber\SQLiteCascadeDeleteSubscriber:
tags:
- { name: doctrine.event_subscriber }
Wallabag\CoreBundle\Event\Subscriber\DownloadImagesSubscriber:
Wallabag\Event\Subscriber\DownloadImagesSubscriber:
arguments:
$enabled: '@=service(''craue_config'').get(''download_images_enabled'')'
Wallabag\CoreBundle\Helper\DownloadImages:
Wallabag\Helper\DownloadImages:
arguments:
$baseFolder: "%kernel.project_dir%/web/assets/images"
Wallabag\CoreBundle\Command\InstallCommand:
Wallabag\Command\InstallCommand:
arguments:
$databaseDriver: '%database_driver%'
$databaseName: '%database_name%'
$defaultSettings: '%wallabag_core.default_internal_settings%'
$defaultIgnoreOriginInstanceRules: '%wallabag_core.default_ignore_origin_instance_rules%'
Wallabag\CoreBundle\Mailer\UserMailer:
Wallabag\Mailer\UserMailer:
arguments:
$parameters:
template:
@ -268,7 +268,7 @@ services:
confirmation: '%fos_user.registration.confirmation.from_email%'
resetting: '%fos_user.resetting.email.from_email%'
Wallabag\CoreBundle\Event\Listener\CreateConfigListener:
Wallabag\Event\Listener\CreateConfigListener:
arguments:
$itemsOnPage: "%wallabag_core.items_on_page%"
$feedLimit: "%wallabag_core.feed_limit%"
@ -278,57 +278,57 @@ services:
$listMode: "%wallabag_core.list_mode%"
$displayThumbnails: "%wallabag_core.display_thumbnails%"
Wallabag\CoreBundle\Event\Listener\AuthenticationFailureListener:
Wallabag\Event\Listener\AuthenticationFailureListener:
tags:
- { name: kernel.event_listener, event: security.authentication.failure, method: onAuthenticationFailure }
Wallabag\CoreBundle\Import\PocketImport:
Wallabag\Import\PocketImport:
calls:
- [ setClient, [ '@Symfony\Contracts\HttpClient\HttpClientInterface $pocketClient' ] ]
tags:
- { name: wallabag_core.import, alias: pocket }
Wallabag\CoreBundle\Import\WallabagV1Import:
Wallabag\Import\WallabagV1Import:
tags:
- { name: wallabag_core.import, alias: wallabag_v1 }
Wallabag\CoreBundle\Import\WallabagV2Import:
Wallabag\Import\WallabagV2Import:
tags:
- { name: wallabag_core.import, alias: wallabag_v2 }
Wallabag\CoreBundle\Import\ElcuratorImport:
Wallabag\Import\ElcuratorImport:
tags:
- { name: wallabag_core.import, alias: elcurator }
Wallabag\CoreBundle\Import\ReadabilityImport:
Wallabag\Import\ReadabilityImport:
tags:
- { name: wallabag_core.import, alias: readability }
Wallabag\CoreBundle\Import\InstapaperImport:
Wallabag\Import\InstapaperImport:
tags:
- { name: wallabag_core.import, alias: instapaper }
Wallabag\CoreBundle\Import\PinboardImport:
Wallabag\Import\PinboardImport:
tags:
- { name: wallabag_core.import, alias: pinboard }
Wallabag\CoreBundle\Import\DeliciousImport:
Wallabag\Import\DeliciousImport:
tags:
- { name: wallabag_core.import, alias: delicious }
Wallabag\CoreBundle\Import\FirefoxImport:
Wallabag\Import\FirefoxImport:
tags:
- { name: wallabag_core.import, alias: firefox }
Wallabag\CoreBundle\Import\ChromeImport:
Wallabag\Import\ChromeImport:
tags:
- { name: wallabag_core.import, alias: chrome }
Wallabag\CoreBundle\Import\ShaarliImport:
Wallabag\Import\ShaarliImport:
tags:
- { name: wallabag_core.import, alias: shaarli }
Wallabag\CoreBundle\Import\PocketHtmlImport:
Wallabag\Import\PocketHtmlImport:
tags:
- { name: wallabag_core.import, alias: pocket_html }

View File

@ -5,7 +5,7 @@ services:
autoconfigure: true
public: true
Wallabag\CoreBundle\Consumer\RabbitMQConsumerTotalProxy:
Wallabag\Consumer\RabbitMQConsumerTotalProxy:
arguments:
$pocketConsumer: '@old_sound_rabbit_mq.import_pocket_consumer'
$readabilityConsumer: '@old_sound_rabbit_mq.import_readability_consumer'
@ -21,61 +21,61 @@ services:
$pocketHtmlConsumer: '@old_sound_rabbit_mq.import_pocket_html_consumer'
wallabag_core.consumer.amqp.pocket:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\PocketImport'
$import: '@Wallabag\Import\PocketImport'
wallabag_core.consumer.amqp.readability:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\ReadabilityImport'
$import: '@Wallabag\Import\ReadabilityImport'
wallabag_core.consumer.amqp.instapaper:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\InstapaperImport'
$import: '@Wallabag\Import\InstapaperImport'
wallabag_core.consumer.amqp.pinboard:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\PinboardImport'
$import: '@Wallabag\Import\PinboardImport'
wallabag_core.consumer.amqp.delicious:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\DeliciousImport'
$import: '@Wallabag\Import\DeliciousImport'
wallabag_core.consumer.amqp.wallabag_v1:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\WallabagV1Import'
$import: '@Wallabag\Import\WallabagV1Import'
wallabag_core.consumer.amqp.wallabag_v2:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\WallabagV2Import'
$import: '@Wallabag\Import\WallabagV2Import'
wallabag_core.consumer.amqp.elcurator:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\ElcuratorImport'
$import: '@Wallabag\Import\ElcuratorImport'
wallabag_core.consumer.amqp.firefox:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\FirefoxImport'
$import: '@Wallabag\Import\FirefoxImport'
wallabag_core.consumer.amqp.chrome:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\ChromeImport'
$import: '@Wallabag\Import\ChromeImport'
wallabag_core.consumer.amqp.shaarli:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\ShaarliImport'
$import: '@Wallabag\Import\ShaarliImport'
wallabag_core.consumer.amqp.pocket_html:
class: Wallabag\CoreBundle\Consumer\AMQPEntryConsumer
class: Wallabag\Consumer\AMQPEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\PocketHtmlImport'
$import: '@Wallabag\Import\PocketHtmlImport'

View File

@ -12,14 +12,14 @@ services:
$queueName: "wallabag.import.readability"
wallabag_core.producer.redis.readability:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.readability"
wallabag_core.consumer.redis.readability:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\ReadabilityImport'
$import: '@Wallabag\Import\ReadabilityImport'
# instapaper
wallabag_core.queue.redis.instapaper:
@ -28,14 +28,14 @@ services:
$queueName: "wallabag.import.instapaper"
wallabag_core.producer.redis.instapaper:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.instapaper"
wallabag_core.consumer.redis.instapaper:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\InstapaperImport'
$import: '@Wallabag\Import\InstapaperImport'
# pinboard
wallabag_core.queue.redis.pinboard:
@ -44,14 +44,14 @@ services:
$queueName: "wallabag.import.pinboard"
wallabag_core.producer.redis.pinboard:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.pinboard"
wallabag_core.consumer.redis.pinboard:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\PinboardImport'
$import: '@Wallabag\Import\PinboardImport'
# delicious
wallabag_core.queue.redis.delicious:
@ -60,14 +60,14 @@ services:
$queueName: "wallabag.import.delicious"
wallabag_core.producer.redis.delicious:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.delicious"
wallabag_core.consumer.redis.delicious:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\DeliciousImport'
$import: '@Wallabag\Import\DeliciousImport'
# pocket
wallabag_core.queue.redis.pocket:
@ -76,14 +76,14 @@ services:
$queueName: "wallabag.import.pocket"
wallabag_core.producer.redis.pocket:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.pocket"
wallabag_core.consumer.redis.pocket:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\PocketImport'
$import: '@Wallabag\Import\PocketImport'
# wallabag v1
wallabag_core.queue.redis.wallabag_v1:
@ -92,14 +92,14 @@ services:
$queueName: "wallabag.import.wallabag_v1"
wallabag_core.producer.redis.wallabag_v1:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.wallabag_v1"
wallabag_core.consumer.redis.wallabag_v1:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\WallabagV1Import'
$import: '@Wallabag\Import\WallabagV1Import'
# wallabag v2
wallabag_core.queue.redis.wallabag_v2:
@ -108,14 +108,14 @@ services:
$queueName: "wallabag.import.wallabag_v2"
wallabag_core.producer.redis.wallabag_v2:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.wallabag_v2"
wallabag_core.consumer.redis.wallabag_v2:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\WallabagV2Import'
$import: '@Wallabag\Import\WallabagV2Import'
# elcurator
wallabag_core.queue.redis.elcurator:
@ -124,14 +124,14 @@ services:
$queueName: "wallabag.import.elcurator"
wallabag_core.producer.redis.elcurator:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.elcurator"
wallabag_core.consumer.redis.elcurator:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\ElcuratorImport'
$import: '@Wallabag\Import\ElcuratorImport'
# firefox
wallabag_core.queue.redis.firefox:
@ -140,14 +140,14 @@ services:
$queueName: "wallabag.import.firefox"
wallabag_core.producer.redis.firefox:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.firefox"
wallabag_core.consumer.redis.firefox:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\FirefoxImport'
$import: '@Wallabag\Import\FirefoxImport'
# chrome
wallabag_core.queue.redis.chrome:
@ -156,14 +156,14 @@ services:
$queueName: "wallabag.import.chrome"
wallabag_core.producer.redis.chrome:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.chrome"
wallabag_core.consumer.redis.chrome:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\ChromeImport'
$import: '@Wallabag\Import\ChromeImport'
# shaarli
wallabag_core.queue.redis.shaarli:
@ -172,14 +172,14 @@ services:
$queueName: "wallabag.import.shaarli"
wallabag_core.producer.redis.shaarli:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.shaarli"
wallabag_core.consumer.redis.shaarli:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\ShaarliImport'
$import: '@Wallabag\Import\ShaarliImport'
# pocket html
wallabag_core.queue.redis.pocket_html:
@ -188,11 +188,11 @@ services:
$queueName: "wallabag.import.pocket_html"
wallabag_core.producer.redis.pocket_html:
class: Wallabag\CoreBundle\Redis\Producer
class: Wallabag\Redis\Producer
arguments:
- "@wallabag_core.queue.redis.pocket_html"
wallabag_core.consumer.redis.pocket_html:
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
class: Wallabag\Consumer\RedisEntryConsumer
arguments:
$import: '@Wallabag\CoreBundle\Import\PocketHtmlImport'
$import: '@Wallabag\Import\PocketHtmlImport'

View File

@ -9,11 +9,11 @@ services:
public: true
wallabag_core.entry_repository.test:
alias: Wallabag\CoreBundle\Repository\EntryRepository
alias: Wallabag\Repository\EntryRepository
public: true
wallabag_user.user_repository.test:
alias: Wallabag\CoreBundle\Repository\UserRepository
alias: Wallabag\Repository\UserRepository
public: true
filesystem_cache:
@ -22,7 +22,7 @@ services:
- "%kernel.cache_dir%/doctrine/metadata"
# fixtures
Wallabag\CoreBundle\DataFixtures\:
Wallabag\DataFixtures\:
resource: '../../src/DataFixtures/*'
tags: ['doctrine.fixture.orm']
autowire: true