Tweede Golf Symfony Service Generator
Generates PHP class files from service definitions found in app/config/services.yml, (*1)
Usage: bin/symfony generate:service
, (*2)
This command will prompt you to generate all
classes that are defines in services.yml
but do not exist in the current namespace., (*3)
Installation
Using Composer add the bundle to your requirements:, (*4)
composer require --dev tweedegolf/service-generator
Add the bundle to your AppKernel
Finally add the bundle in app/AppKernel.php
:, (*5)
public function registerBundles()
{
$bundles = [
// ...
];
if (in_array($this->getEnvironment(), ['dev', 'test'])) {
// ...
$bundles[] = new TweedeGolf\ServiceGenerator\ServiceGeneratorBundle();
}
return $bundles;
}