-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Created the make:repository and make:criteria command. #37
Conversation
By the way. Will update the README when I have time. |
Thaanks |
I have this error: [Symfony\Component\Debug\Exception\FatalErrorException] |
Did you require the fork? If so. Try to dump your autoload and the compiled files. ( |
what's the fork? m44rt3np44uw:master? 2015-08-17 18:12 GMT+02:00 Maarten Paauw notifications@github.com:
Carlos Jiménez Mora Este mensaje y sus anexos pueden contener información confidencial, por lo |
@carlituxman Yup. |
what I need to put in composer.json ? 2015-08-17 18:20 GMT+02:00 Maarten Paauw notifications@github.com:
Carlos Jiménez Mora Este mensaje y sus anexos pueden contener información confidencial, por lo |
|
I added to composer.json but in require I have "bosnadev/repositories": and error continues. what I'm doing wrong? 2015-08-17 18:51 GMT+02:00 Maarten Paauw notifications@github.com:
Carlos Jiménez Mora Este mensaje y sus anexos pueden contener información confidencial, por lo |
Created the make:repository and make:criteria command.
Hello,
This pull request will add the possibility to create repository and criteria classes via artisan. Came up with this idea when I saw feature request #25.
add Bosnadev\Repositories\Providers\RepositoryProvider::class, to the providers array in the app.php file.
php artisan make:repository Films
will create a FilmsRepository class.php artisan make:criteria LengthOverTwoHours --model="Films"
will create a LengthOverTwoHours criteria class.Let me hear what you think about it.