Skip to content

Commit

Permalink
Update tests. CI
Browse files Browse the repository at this point in the history
  • Loading branch information
klodoma committed Sep 25, 2024
1 parent 26c617c commit f561bcd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dev/DevFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@

class DevFactory
{
public function __construct(protected ?string $context = null)
protected $context = null;

public function __construct(?string $context = null)
{
$this->context = $context;
if (empty($this->context)) {
$this->context = self::getGlobalContext();
}
Expand Down

0 comments on commit f561bcd

Please sign in to comment.