Created
November 30, 2017 19:38
-
-
Save Naoray/afdac634609e4ea00f8c359d15efb6f5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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