Bolt\Provider\RandomGeneratorServiceProvider::register PHP Method

register() public method

public register ( Silex\Application $app )
$app Silex\Application
    public function register(Application $app)
    {
        $app['randomgenerator'] = $app->share(function () {
            return new Generator();
        });
    }
RandomGeneratorServiceProvider