final Key key = getBindingKey( args[0], bindingName );
final ScopedBindingBuilder sbb = binder.bind( key ).toProvider( providerType );
if ( isEagerSingleton( providerType ) )
{
sbb.asEagerSingleton();
}
else if ( isSingleton( providerType ) )
{
sbb.in( Scopes.SINGLETON );
}