diff options
Diffstat (limited to 'src/Project/Framework/Bundles.php')
-rw-r--r-- | src/Project/Framework/Bundles.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Project/Framework/Bundles.php b/src/Project/Framework/Bundles.php new file mode 100644 index 0000000..52a7c31 --- /dev/null +++ b/src/Project/Framework/Bundles.php @@ -0,0 +1,18 @@ +<?php + +namespace Project\Framework; + +class Bundles extends \PHPixie\BundleFramework\Bundles +{ + protected function buildBundles() + { + return array( + new \Project\App($this->builder) + ); + } + + protected function getRootFolder() + { + return realpath(__DIR__.'/../../'); + } +}
\ No newline at end of file |