Fix PHP syntax errors.

This commit is contained in:
Pol Dellaiera 2021-06-08 13:59:06 +02:00
parent a7af30c378
commit 39dcc59a0c
2 changed files with 30 additions and 29 deletions

View File

@ -97,6 +97,7 @@ class CountPerson implements ExportInterface
// for all value, we do not process them and return them // for all value, we do not process them and return them
// immediatly // immediatly
return $value; return $value;
};
}; };
} }

View File

@ -34,8 +34,8 @@ class ItemController extends Controller {
return $this->render('ChillMyBundle:Item:list.html.twig', array( return $this->render('ChillMyBundle:Item:list.html.twig', array(
'items' => $items, 'items' => $items,
'paginator' => $paginator 'paginator' => $paginator
); )
);
} }
} }