Newscoop\DependencyInjection\ContainerBuilder::hasService PHP 메소드

hasService() 공개 메소드

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