Skip to content

Step 2 : Enable the bundle

kayzore edited this page Nov 24, 2016 · 3 revisions

Step 2 : Enable the bundle

Then, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Kay\SmileyBundle\KaySmileyBundle(),
        );
    }
}

Then go to chapter Step 3 : Usage

Clone this wiki locally