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

use \PHPixie\BundleFramework;

/**
 * Project class extending the PHPixie Framework.
 */
class Framework extends BundleFramework
{
    /**
     * Project factory
     * @return Framework\Builder
     */
    protected function buildBuilder()
    {
        return new Framework\Builder();
    }
}