mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 07:03:49 +00:00
Fix syntax error
This commit is contained in:
@@ -75,8 +75,8 @@ class UserJobFilter implements FilterInterface
|
||||
$qb->expr()->in("{$p}_jobHistory.job", ":{$p}_job")
|
||||
)
|
||||
->setParameters([
|
||||
["{$p}_job", $data["jobs"]],
|
||||
["{$p}_date", $this->rollingDateConverter->convert($data["date_calc"])]
|
||||
"{$p}_job" => $data["jobs"],
|
||||
"{$p}_date" => $this->rollingDateConverter->convert($data["date_calc"])
|
||||
])
|
||||
;
|
||||
}
|
||||
|
@@ -75,8 +75,8 @@ class UserScopeFilter implements FilterInterface
|
||||
$qb->expr()->in("{$p}_scopeHistory.scope", ":{$p}_scopes")
|
||||
)
|
||||
->setParameters([
|
||||
["{$p}_scopes", $data["scopes"]],
|
||||
["{$p}_date", $this->rollingDateConverter->convert($data["date_calc"])]
|
||||
"{$p}_scopes" => $data["scopes"],
|
||||
"{$p}_date" => $this->rollingDateConverter->convert($data["date_calc"])
|
||||
])
|
||||
;
|
||||
}
|
||||
|
@@ -67,8 +67,8 @@ class JobFilter implements FilterInterface
|
||||
$qb->expr()->in("{$p}_history.job", ":{$p}_job")
|
||||
)
|
||||
->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'])
|
||||
]);
|
||||
}
|
||||
|
||||
|
@@ -65,8 +65,8 @@ class ScopeFilter implements FilterInterface
|
||||
$qb->expr()->in("{$p}_history.scope", ":{$p}_scope")
|
||||
)
|
||||
->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