2024-03-13 15:48:45 +00:00
|
|
|
services:
|
2024-04-09 01:47:04 +00:00
|
|
|
ufc.import_fighters:
|
|
|
|
|
class: \Drupal\ufc\Services\FighterImporter
|
|
|
|
|
arguments: ['@http_client', '@entity_type.manager', '@cache.ufc']
|
2024-03-13 15:48:45 +00:00
|
|
|
ufc.fighter_create:
|
|
|
|
|
class: \Drupal\ufc\Fighter
|
|
|
|
|
arguments: ['@http_client','@entity_type.manager']
|
2024-04-09 01:47:04 +00:00
|
|
|
ufc.import_fights:
|
|
|
|
|
class: \Drupal\ufc\Services\FightImporter
|
|
|
|
|
arguments: ['@http_client', '@entity_type.manager', '@date.formatter']
|
|
|
|
|
cache.ufc:
|
|
|
|
|
class: Drupal\Core\Cache\CacheBackendInterface
|
|
|
|
|
tags:
|
|
|
|
|
- { name: cache.bin }
|
|
|
|
|
factory: ['@cache_factory', 'get']
|
|
|
|
|
arguments: [ 'ufc' ]
|
|
|
|
|
|