mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-28 18:43:49 +00:00
Fix syntax error
This commit is contained in:
@@ -60,8 +60,8 @@ class JobFilter implements FilterInterface
|
||||
"{$p}_history.startDate <= :{$p}_at AND ({$p}_history.endDate IS NULL OR {$p}_history.endDate > :{$p}_at)"
|
||||
)
|
||||
->setParameters([
|
||||
["{$p}_job", $data["job"]],
|
||||
["{$p}_at", $this->rollingDateConverter->convert($data["job_at"])]
|
||||
"{$p}_job" => $data["job"],
|
||||
"{$p}_at" => $this->rollingDateConverter->convert($data["job_at"])
|
||||
])
|
||||
;
|
||||
|
||||
|
@@ -57,8 +57,8 @@ class ScopeFilter implements FilterInterface
|
||||
"{$p}_history.startDate <= :{$p}_at AND ({$p}_history.endDate IS NULL OR {$p}_history.endDate > :{$p}_at)"
|
||||
)
|
||||
->setParameters([
|
||||
["{$p}_scope", $data["scope"]],
|
||||
["{$p}_at", $this->rollingDateConverter->convert($data['scope_at'])]
|
||||
"{$p}_scope" => $data["scope"],
|
||||
"{$p}_at" => $this->rollingDateConverter->convert($data['scope_at'])
|
||||
]);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user