summaryrefslogtreecommitdiffstats
path: root/src/Project/Framework/Bundles.php
blob: 9f4cce4a14d97ac66876c10cd6f67be84585013a (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),
            new \Project\App($this->builder)
        );
    }
}