summaryrefslogtreecommitdiffstats
path: root/src/Project/Framework/Bundles.php
blob: bf6734a00d39e096d874584c61f042495aaf63ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

namespace Project\Framework;

/**
 * Your projects bundle registry.
 * Every bundle you add must be registered here.
 */
class Bundles extends \PHPixie\BundleFramework\Bundles
{
    /**
     * Should return an array of Bundle instances
     * @return array
     */
    protected function buildBundles()
    {
        return array(
            new \PHPixie\FrameworkBundle($this->builder)
            /*GeneratorPlaceholder*/
        );
    }
}