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

@ -98,6 +98,7 @@ class CountPerson implements ExportInterface
// immediatly // immediatly
return $value; return $value;
}; };
};
} }
public function getAllowedFormattersTypes() public function getAllowedFormattersTypes()

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
)
); );
} }
} }