for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Vluzrmos\Tinker;
use Illuminate\Support\ServiceProvider;
/**
* Class TinkerServiceProvider.
*/
class TinkerServiceProvider extends ServiceProvider
{
* Register the service provider.
*
* @return void
public function register()
$this->commands([
TinkerCommand::class,
]);
}