Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 687 Bytes

alice-processors.md

File metadata and controls

19 lines (14 loc) · 687 Bytes

Alice Processors

Given you declared a processor App\DataFixtures\Processor\UserProcessor, you have to declare it as a service with the tag fidry_alice_data_fixtures.processor to register it:

# app/config/services.yml

services:
    data_fixtures.processor.user:
        class: App\DataFixtures\Processor\UserProcessor
        tags: [ { name: fidry_alice_data_fixtures.processor } ]

Refer to FidryAliceDataFixtures for a more advanced documentation.

Previous chapter: Custom Faker providers
Back to Table of Contents