AuthBucket\OAuth2\Tests\TestBundle\TestBundleServiceProvider::register PHP Method

register() public method

public register ( Pimple\Container $app )
$app Pimple\Container
    public function register(Container $app)
    {
        $app['authbucket_oauth2.tests.default_controller'] = function () {
            return new DefaultController();
        };
        $app['authbucket_oauth2.tests.demo_controller'] = function () {
            return new DemoController();
        };
    }
TestBundleServiceProvider