for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace GiveBlood\Modules\Bank\Providers;
use Illuminate\Support\ServiceProvider;
use Migrator\MigratorTrait as LaravelMigrator;
use GiveBlood\Modules\Bank\Database\Migrations\CreateBanksTable;
use GiveBlood\Modules\Bank\BankFactory;
use GiveBlood\Modules\Bank\Database\Seeders\BanksSeeder;
class BankServiceProvider extends ServiceProvider
{
use LaravelMigrator;
public function register()
$this->registerMigrations();
$this->registerFactories();
$this->registerSeeders();
}
public function registerMigrations()
$this->migrations(
[
CreateBanksTable::class
]
);
public function registerFactories()
(new BankFactory())->define();
public function registerSeeders()
$this->seeders(
BanksSeeder::class