Newscoop\DependencyInjection\ContainerBuilder::hasService PHP Method

hasService() public method

Wrapper for ContainerBuilder::has method.
public hasService ( string $id ) : boolean
$id string The service identifier
return boolean True if the service is defined, false otherwise
    public function hasService($id)
    {
        return parent::has($id);
    }