Created
May 16, 2014 12:33
-
-
Save jsifalda/59cd5a0c6f8a05e49ffa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class AppExtension extends CompilerExtension implements Flame\Modules\Providers\IParametersProvider | |
{ | |
/** | |
* Return array of parameters, | |
* which you want to add into DIC | |
* | |
* @example return array('images' => 'path/to/folder/with/images'); | |
* @return array | |
*/ | |
public function getParameters() | |
{ | |
return array( | |
'images' => '%wwwDir%/path/to/folder/with/images', | |
'consoleMode' => true, | |
'appDir' => 'aa' | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment