diff options
author | Dracony <draconyster@gmail.com> | 2016-02-08 18:12:26 +0100 |
---|---|---|
committer | Dracony <draconyster@gmail.com> | 2016-02-08 18:12:26 +0100 |
commit | b3452705d63b078fd6437897640db7a16612177a (patch) | |
tree | 2849f9db6812be152495d9aa3322e591bd28917d /src/Project/Framework/Extensions.php | |
parent | bd328d349b6c171f6b0a78ffac7471a52791308a (diff) | |
download | PHPixie-b3452705d63b078fd6437897640db7a16612177a.zip PHPixie-b3452705d63b078fd6437897640db7a16612177a.tar.gz PHPixie-b3452705d63b078fd6437897640db7a16612177a.tar.bz2 |
added docblocks3.2.1
Diffstat (limited to 'src/Project/Framework/Extensions.php')
-rw-r--r-- | src/Project/Framework/Extensions.php | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/src/Project/Framework/Extensions.php b/src/Project/Framework/Extensions.php index ad972fa..156bd7d 100644 --- a/src/Project/Framework/Extensions.php +++ b/src/Project/Framework/Extensions.php @@ -2,7 +2,41 @@ namespace Project\Framework; +/** + * Extensions registry. + */ class Extensions extends \PHPixie\Framework\Extensions { - + /** + * Extensions for the Template component + * @return array + */ + public function templateExtensions() + { + return array_merge(parent::templateExtensions(), array( + //add your Template Extensions here + )); + } + + /** + * Format compilers for the Template component + * @return array + */ + public function templateFormats() + { + return array_merge(parent::templateFormats(), array( + //add your Template Formats here + )); + } + + /** + * Provider Builders for the Auth component + * @return array + */ + public function authProviderBuilders() + { + return array_merge(parent::authProviderBuilders(), array( + //add your Auth Provider Builders here + )); + } }
\ No newline at end of file |