mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Fix syntax errors.
This commit is contained in:
parent
c5b8b6345d
commit
ce4cbe3b8d
@ -98,6 +98,7 @@ class CountPerson implements ExportInterface
|
||||
// immediatly
|
||||
return $value;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
public function getAllowedFormattersTypes()
|
||||
|
@ -31,11 +31,14 @@ class ItemController extends Controller {
|
||||
// use the paginator to get the number of items to display
|
||||
->setMaxResults($paginator->getItemsPerPage());
|
||||
|
||||
return $this->render('ChillMyBundle:Item:list.html.twig', array(
|
||||
return $this
|
||||
->render(
|
||||
'ChillMyBundle:Item:list.html.twig',
|
||||
array(
|
||||
'items' => $items,
|
||||
'paginator' => $paginator
|
||||
)
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -25,7 +25,6 @@ class ThirdPartyTypeManager
|
||||
* Method used during the load of the manager by Dependency Injection
|
||||
*
|
||||
* @param \Chill\ThirdPartyBundle\ThirdPartyType\ThirdPartyTypeProviderInterface $provider
|
||||
* @return \self
|
||||
*/
|
||||
public function addProvider(ThirdPartyTypeProviderInterface $provider): self
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user