Skip to content

Commit 0302265

Browse files
authored
Merge pull request #111 from bensherred/fix-service-provider
Fix an issue with the service provider and updat lock file
2 parents 32f0b19 + 41408ba commit 0302265

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Syntax/SteamApi/SteamApiServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function register()
3333
{
3434
$this->registerAlias();
3535

36-
$this->container->singleton('steam-api', function () {
36+
$this->app->singleton('steam-api', function () {
3737
return new Client;
3838
});
3939
}
@@ -45,7 +45,7 @@ public function register()
4545
*/
4646
protected function registerAlias()
4747
{
48-
$this->container->booting(function () {
48+
$this->app->booting(function () {
4949
$loader = AliasLoader::getInstance();
5050
$loader->alias('Steam', 'Syntax\SteamApi\Facades\SteamApi');
5151
});

0 commit comments

Comments
 (0)