Last active
August 29, 2015 14:13
-
-
Save itsgoingd/43c659e3f3db660fee4d 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 | |
use SlimFacades\App as BaseAppFacade; | |
class App extends BaseAppFacade | |
{ | |
// Bind a value into the Slim container | |
public static function bind($key, $value) | |
{ | |
self::$app[$key] = $value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment