for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Angecode\LaravelFullName;
use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\ServiceProvider;
use Angecode\LaravelFullName\Traits\CanPublish;
/**
* Class FullNameServiceProvider.
*
* @@codeCoverageIgnore
*/
class FullNameServiceProvider extends ServiceProvider
{
use CanPublish;
* Bootstrap the application services.
public function boot(Filesystem $filesystem)
$this->publishes([
__DIR__.'/../database/migrations/add_fullname_to_users_table.php.stub' => $this->getMigrationFileName($filesystem),
], 'migrations');
}
* Register the application services.
public function register()