Skip to content

Instantly share code, notes, and snippets.

@itsgoingd
Last active August 29, 2015 14:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itsgoingd/43c659e3f3db660fee4d to your computer and use it in GitHub Desktop.
Save itsgoingd/43c659e3f3db660fee4d to your computer and use it in GitHub Desktop.
<?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