Compare commits

..

No commits in common. "master" and "1.1.4" have entirely different histories.

View File

@ -10,7 +10,7 @@ abstract class Filter
public string $value; public string $value;
public function __construct(array $source) public function __construct(array $source)
{ {
$this->params = $source['params'] ?? ''; $this->params = $source['param'] ?? '';
$this->name = $source['name']; $this->name = $source['name'];
$this->value = $source['value'] ?? ''; $this->value = $source['value'] ?? '';
} }