blob: c9963f5f975766ff5e6c8859befeda8456228657 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php
namespace Project\Framework;
/**
* Your projects main factory, usually referenced as $frameworkBuilder.
*
* You can use it to override and customize the framework.
*/
class Builder extends \PHPixie\BundleFramework\Builder
{
/**
* Your Bundles registry
* @return Bundles
*/
protected function buildBundles()
{
return new Bundles($this);
}
/**
* Your extension registry registry
* @return Extensions
*/
protected function buildExtensions()
{
return new Extensions($this);
}
/**
* Projects root directory
* @return string
*/
protected function getRootDirectory()
{
return realpath(__DIR__.'/../../../');
}
}
|