Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ProklUng committed Aug 1, 2021
1 parent 17d7341 commit 149ae8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Utils/DelegatedContainer/Manipulator.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function set(string $id, ?object $service)
/**
* @inheritdoc
*/
public function get(string $id, int $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE)
public function get($id, int $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE)
{
foreach ($this->delegatedContainers as $delegatingContainer) {
/** @var ContainerInterface[] $delegatingContainer */
Expand All @@ -67,7 +67,7 @@ public function get(string $id, int $invalidBehavior = self::EXCEPTION_ON_INVALI
/**
* @inheritdoc
*/
public function has(string $id)
public function has($id)
{
foreach ($this->delegatedContainers as $delegatingContainer) {
/** @var ContainerInterface[] $delegatingContainer */
Expand Down

0 comments on commit 149ae8d

Please sign in to comment.