commands as $command) { $this->{"register{$command}Command"}(); } $this->commands( 'command.auth.resets.clear' ); } /** * Register the command. * * @return void */ protected function registerClearResetsCommand() { $this->app->singleton('command.auth.resets.clear', function () { return new ClearResetsCommand; }); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return [ 'command.auth.resets.clear', ]; } }