Removes any default Laravel DocBlocks generated by running artisan make
or copied in core classes from your code.
Before
class MadeCommand extends Command{ /** * The name and signature of the console command. * * @var string */ protected $signature = 'command:name'; // ... /** * Execute the console command. * * @return int */ public function handle() { return 0; }}
After
class MadeCommand extends Command{ protected $signature = 'command:name'; // ... public function handle() { return 0; }}
Sign in with any of the following services to connect Shift with your Laravel project.
Don't use one of these services?
Temporarily push your project to a free, private repository on one of these cloud-based services or upgrade your project locally with Shift for Docker.