OzanKurt / Repoist

Laravel 5 repository generator.
MIT License
93 stars 27 forks source link

want to remove namspaces #30

Open amirgee007 opened 6 years ago

amirgee007 commented 6 years ago

https://laracasts.com/discuss/channels/tips/repoist-laravel-5-repository-generator?page=1 following this one. Repositories Without Schema

php artisan make:repository Task Will output:

app/Repositories/Task/TaskRepository.php app/Repositories/Task/EloquentTaskRepository.php

I want this same as it is above.

but when i run php artisan make:repository Task

it creates two folders. app/Contracts/Task/TaskRepository.php (contract) app/Repositories/Eloquent/EloquentTaskRepository.php i want to to get rid of this. please help

OzanKurt commented 6 years ago

What exactly do you want to remove?