Skip to content

Instantly share code, notes, and snippets.

@Naoray
Created November 30, 2017 19:38
Show Gist options
  • Save Naoray/afdac634609e4ea00f8c359d15efb6f5 to your computer and use it in GitHub Desktop.
Save Naoray/afdac634609e4ea00f8c359d15efb6f5 to your computer and use it in GitHub Desktop.
<?php
class SparkServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
$this->app->singleton(
\Laravel\Spark\Contracts\Interactions\Settings\Profile\UpdateContactInformation::class,
\App\SparkExtensions\UpdateContactInformation::class
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment