mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 07:03:49 +00:00
rdv: minor corrections following MR review
This commit is contained in:
@@ -20,15 +20,15 @@ class LoadCancelReason extends Fixture implements FixtureGroupInterface
|
||||
return ['calendar'];
|
||||
}
|
||||
|
||||
public static $references = array();
|
||||
public static $references = [];
|
||||
|
||||
public function load(ObjectManager $manager): void
|
||||
{
|
||||
$arr = array(
|
||||
array('name' => CancelReason::CANCELEDBY_USER),
|
||||
array('name' => CancelReason::CANCELEDBY_PERSON),
|
||||
array('name' => CancelReason::CANCELEDBY_DONOTCOUNT),
|
||||
);
|
||||
$arr = [
|
||||
['name' => CancelReason::CANCELEDBY_USER],
|
||||
['name' => CancelReason::CANCELEDBY_PERSON],
|
||||
['name' => CancelReason::CANCELEDBY_DONOTCOUNT],
|
||||
];
|
||||
|
||||
foreach ($arr as $a) {
|
||||
print "Creating calendar cancel reason : " . $a['name'] . "\n";
|
||||
|
Reference in New Issue
Block a user