Skip to content

Instantly share code, notes, and snippets.

@fridolin-koch
Created September 5, 2013 07:48
Show Gist options
  • Save fridolin-koch/6447159 to your computer and use it in GitHub Desktop.
Save fridolin-koch/6447159 to your computer and use it in GitHub Desktop.
<?php
//old
$this->breadcrumbs[] = array(
'name' => $translator->trans('Home'),
'path' => $this->generateUrl('_index', array()),
);
//new
$this->breadcrumbs[] = [
'name' => $translator->trans('Home'),
'path' => $this->generateUrl('_index', []),
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment