From bff5b44356da19d6b17805f3f31c062343d409e5 Mon Sep 17 00:00:00 2001 From: Danny Fallon Date: Mon, 11 Aug 2014 11:05:33 +0100 Subject: [PATCH] Publicise the service description file getter --- src/intercom/IntercomAbstractClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intercom/IntercomAbstractClient.php b/src/intercom/IntercomAbstractClient.php index 9b01c98c..4992c8b8 100644 --- a/src/intercom/IntercomAbstractClient.php +++ b/src/intercom/IntercomAbstractClient.php @@ -36,7 +36,7 @@ protected function configure($config) * @return ServiceDescription * @throws InvalidArgumentException If the description file doesn't exist or cannot be read */ - private function getServiceDescriptionFromFile($description_file) + public function getServiceDescriptionFromFile($description_file) { if (!file_exists($description_file) || !is_readable($description_file)) { throw new InvalidArgumentException('Unable to read API definition schema');