Skip to content

Commit

Permalink
Merge pull request #221 from conedevelopment/szepeviktor-patch-2
Browse files Browse the repository at this point in the history
fix bindings in RootServiceProvider
  • Loading branch information
iamgergo authored Jul 26, 2024
2 parents b580fa6 + 7ac6069 commit 6108fc2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/RootServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ class RootServiceProvider extends ServiceProvider
{
/**
* All of the container bindings that should be registered.
*
* @var array
*/
public array $bindings = [
public $bindings = [
Interfaces\Models\AuthCode::class => Models\AuthCode::class,
Interfaces\Models\Medium::class => Models\Medium::class,
Interfaces\Models\Meta::class => Models\Meta::class,
Expand All @@ -41,8 +43,10 @@ class RootServiceProvider extends ServiceProvider

/**
* All of the container singletons that should be registered.
*
* @var array
*/
public array $singletons = [
public $singletons = [
Interfaces\Conversion\Manager::class => Conversion\Manager::class,
];

Expand Down

0 comments on commit 6108fc2

Please sign in to comment.