fix Array to string conversion
This commit is contained in:
parent
8e52c2128c
commit
40ceb7a86c
|
@ -47,7 +47,7 @@ class core
|
|||
}
|
||||
|
||||
// Запись в реестр
|
||||
$this->patterns .= [$pattern];
|
||||
$this->patterns []= [$pattern];
|
||||
|
||||
return $pattern;
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@ class pattern
|
|||
public function command(command $command): static
|
||||
{
|
||||
// Запись в реестр
|
||||
$this->commands .= [$command];
|
||||
$this->commands []= [$command];
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue