Skip to content

Latest commit

 

History

History
executable file
·
45 lines (31 loc) · 772 Bytes

README.md

File metadata and controls

executable file
·
45 lines (31 loc) · 772 Bytes

Symfony Entity factory

Usage

How to use

Create Entity

$factory->create(User::class);

Create multiple entities

$factory->times(10)->create(Beer::class);

/* This will generate 10 persisted beers with fake values */

Create Entity and override some data

$user = $factory->create(
    User::class, 
    [
        'username' => 'BadassAdmin'
        'active'   => true
    ]
);

Create new instance

$post = $factory->make(User::class)

Get fake values for an entity

Maybe you don't want an instance of the entity, but need some fake data to create you entity object. The values method will return an array of fake values for an entity.

$productData = $factory->values(User::class);