Spatie\Permission\PermissionServiceProvider::registerModelBindings PHP Метод

registerModelBindings() защищенный Метод

Bind the Permission and Role model into the IoC.
protected registerModelBindings ( )
    protected function registerModelBindings()
    {
        $config = $this->app->config['laravel-permission.models'];
        $this->app->bind(PermissionContract::class, $config['permission']);
        $this->app->bind(RoleContract::class, $config['role']);
    }