Mojopollo\Schema\MakeMigrationJsonServiceProvider::registerMigrationJsonGenerator PHP Метод

registerMigrationJsonGenerator() приватный Метод

Register the make:migration:json generator.
private registerMigrationJsonGenerator ( ) : void
Результат void
    private function registerMigrationJsonGenerator()
    {
        $this->app->singleton('command.mojopollo.migrate.json', function ($app) {
            return $app['Mojopollo\\Schema\\Commands\\MakeMigrationJsonCommand'];
        });
        $this->commands('command.mojopollo.migrate.json');
    }