mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-28 18:43:49 +00:00
fix sf3 depreciated addViolationAt() method
cfr vendor/symfony/symfony/UPGRADE-3.0.md:1719
This commit is contained in:
@@ -735,15 +735,15 @@ class Person implements HasCenterInterface {
|
||||
|
||||
if ($r !== true) {
|
||||
if ($r['result'] === self::ERROR_PERIODS_ARE_COLLAPSING) {
|
||||
$context->addViolationAt('accompanyingPeriods',
|
||||
'Two accompanying periods have days in commun',
|
||||
array());
|
||||
$context->buildViolation('Two accompanying periods have days in commun')
|
||||
->atPath('accompanyingPeriods')
|
||||
->addViolation();
|
||||
}
|
||||
|
||||
if ($r['result'] === self::ERROR_ADDIND_PERIOD_AFTER_AN_OPEN_PERIOD) {
|
||||
$context->addViolationAt('accompanyingPeriods',
|
||||
'A period is opened and a period is added after it',
|
||||
array());
|
||||
$context->buildViolation('A period is opened and a period is added after it')
|
||||
->atPath('accompanyingPeriods')
|
||||
->addViolation();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user