fixed typo

This commit is contained in:
Patrick 2015-02-14 01:07:31 +01:00 committed by lubiana
parent 7feba8e95a
commit 8f642f292b

View file

@ -66,7 +66,7 @@ To start we will just send a hardcoded array to the template. Go to you `Homepag
```php ```php
$data = [ $data = [
'name' => $this->request->getParameter('name', 'stranger'), 'name' => $this->request->getParameter('name', 'stranger'),
'menuItems' => 'menuItems' => [['href' => '/', 'text' => 'Homepage']], 'menuItems' => [['href' => '/', 'text' => 'Homepage']],
]; ];
``` ```