Array() -> []

This commit is contained in:
Marc Ducobu
2021-05-18 19:21:52 +02:00
parent c5b0d6e2bd
commit d73fd697dd
4 changed files with 68 additions and 68 deletions

View File

@@ -38,34 +38,34 @@ class LoadSocialResults extends AbstractFixture implements OrderedFixtureInterfa
return 10040;
}
public static $socialResults = array(
'social_result_FSL_acces' => array(
'title' => array(
public static $socialResults = [
'social_result_FSL_acces' => [
'title' => [
'fr' => 'FSL - accès cautionnement'
),
],
'action' => 'social_action_instruire'
),
'social_result_FSL_maintien' => array(
'title' => array(
],
'social_result_FSL_maintien' => [
'title' => [
'fr' => 'FSL maintien - impayés de loyer'
),
],
'action' => 'social_action_MASP'
),
'social_result_soutien_parental' => array(
'title' => array(
],
'social_result_soutien_parental' => [
'title' => [
'fr' => 'Soutien parental'
),
],
// 'action' => 'social_action_protection_enfant', (via le goal)
'goal' => 'social_goal_proteger'
),
'social_result_accompagnement_mineur' => array(
'title' => array(
],
'social_result_accompagnement_mineur' => [
'title' => [
'fr' => 'Accompagnement du mineur'
),
],
// 'action' => 'social_action_protection_enfant', (via le goal)
'goal' => 'social_goal_proteger',
),
);
],
];
public function load(ObjectManager $manager)
{