Skip to content

Commit

Permalink
Fix settings
Browse files Browse the repository at this point in the history
  • Loading branch information
keithbauer committed Oct 24, 2024
1 parent d3e6162 commit b2f73e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ServiceContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ class ServiceContainer extends DefaultContainer
/**
* ServiceContainer constructor.
*/
public $settings = [];

public function __construct(
InjectionFactory $injectionFactory,
ContainerInterface $delegateContainer = null)
{
parent::__construct($injectionFactory, $delegateContainer);
$this["settings"]["displayErrorDetails"] = true;
$this->settings["displayErrorDetails"] = true;
}
}

0 comments on commit b2f73e6

Please sign in to comment.