maker-bundle
maker-bundle copied to clipboard
Symfony Maker Bundle
### Symfony version(s) affected 6.1.0 ### Description Generating a custom class does not work as described in the Generator comment https://github.com/symfony/maker-bundle/blob/main/src/Generator.php#L128-L132 ```php /* * // Full class names can also...
This command is added as a supplement to make:form. To prevent problems with invalid state of entities when used in forms, data transfer objects are a solution. This command generates...
This adds a `make:scaffold ...` command. This is an alternative to what I'm calling _single-use makers_ like `make:register`/`make:user`. We could potentially deprecate these other makers. A _scaffold_ consists of: 1....
PHP: `PHP 8.1.11 (cli) (built: Sep 29 2022 22:28:49) (NTS)` symfony/maker-bundle : `"v1.47.0"` When running `php bin/console make:entity --regenerate` to create the getters and setters for a `one-to-many`, the getters...
Hello! This PR is related to #78 I juste based my work the @yceruto's PR #85 (closed) The `getExtendedTypes` method return now array but I ask only one extended type....
This exception is thrown when calling `setData` on my `YamlSourceManipulator`. This line in my services.yml seems to cause the issue: ```yml bind: $destinationModule: '%app.destination_module%' ``` Is it a similar case...
I miss the generator to prevent from "forgetting" to have the "skeleton" and basic constraints for unique keys, via both assertion and bbdd unique key(s). The desired result would be...
Actually, token expiratino displays «0» in the email because data has changed in the reset password bundle. This is a small fix to display expiration hour for the link.
`make:entity` command fails with exception: ``` Message: "Syntax error, unexpected T_USE, expecting ';' on line 6" ["exception" => PhpParser\Error^ { …} ``` In case if related entity has a grouped...
Hello, I imagine a regexp associated for each field during the make:entity operation. This regexp would then apply to : - a check constraint for field in database (via migration...