Skip to content

Commit

Permalink
bundle regstrationn reflects 1.6 AppKernel.php structure (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
sammarcus authored and jmleroux committed Dec 14, 2016
1 parent e8f51ad commit 3bb2852
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,14 @@ Install the bundle with composer:
Enable the bundle in the `app/AppKernel.php` file:

```php
public function registerBundles()
public function registerProjectBundles()
{
$bundles = [
new Pim\Bundle\EnhancedConnectorBundle\PimEnhancedConnectorBundle()
]

// ...

return $bundles;
return [
new Pim\Bundle\EnhancedConnectorBundle\PimEnhancedConnectorBundle(),

// ...

];
}
```

Expand Down

0 comments on commit 3bb2852

Please sign in to comment.