ekvedaras / class-factory
Factory for creating objects via constructor arguments
Installs: 339 967
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: ^8.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- pestphp/pest: ^1.20
- phpstan/phpstan: ^1.9
README
A factory class that passes each property directly to constructor. This way your class does not need to deal with received array to create itself from and there is no reflection magic involved. This is mostly useful for creating plain classes like value objects, entities, DTOs, etc.
Installation
You can install the package via composer:
composer require --dev ekvedaras/class-factory
PhpStorm plugin
Provides autocomplete and refactoring capabillities for PhpStorm.
- Plugin: ClassFactory
- Repository: class-factory-phpstorm
Usage
use EKvedaras\ClassFactory\ClassFactory; use EKvedaras\ClassFactory\ClosureValue; class Account { public function __construct( public readonly int $id, public string $name, public array $orders, public \Closure $monitor, ) { } } /** @extends ClassFactory<Account> */ class AccountFactory extends ClassFactory { protected string $class = Account::class; protected function definition(): array { return [ 'id' => 1, 'name' => 'John Doe', 'orders' => [ OrderFactory::new()->state(['id' => 1]), OrderFactory::new()->state(['id' => 2]), ], 'monitor' => new ClosureValue(fn () => true), ]; } public function johnSmith(): static { return $this->state([ 'id' => 2, 'name' => 'John Smith', ]); } } $account = AccountFactory::new() ->johnSmith() // Can use predefiened states ->state(['name' => 'John Smitgh Jnr']) // Can override factory state on the fly ->state(['name' => fn (array $attributes) => "{$attributes['name']}."]) // Can use closures and have access to already defined attributes ->after(fn (Account $account) => sort($account->orders)) // Can modify constructed object after it was created ->state(['monitor' => new ClosureValue(fn () => false)]) // Can set state of closure type properties using `ClosureValue` wrapper ->make(['id' => 3]) // Can provide final modifications and return the new object
Customising class creation
If you don't want class to be created by directly passing attributes to constructor, you can override newInstance
method in the factory and do change the behavior.
protected function newInstance(array $properties): object { return Account::makeUsingProperties($properties); }
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.