for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BeyondCode\LaravelPackageTools\Commands;
class MakeRequest extends GeneratorCommand
{
protected $type = 'Request';
protected function getStub()
return __DIR__.'/stubs/request.stub';
}
protected function getDefaultNamespace($rootNamespace): string
return $rootNamespace.'\Http\Requests';