From 2bc9d2f86be8b6f13555ad2355a483d09016299c Mon Sep 17 00:00:00 2001 From: Thomas Peterson Date: Fri, 29 Jan 2016 03:30:29 +0100 Subject: [PATCH] Add get Options --- composer.json | 2 +- src/Article.php | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 97e039a..b6cbe10 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "psc/calc", - "type": "library", + "type": "package", "description": "Calc Lib", "autoload": { "psr-4": { diff --git a/src/Article.php b/src/Article.php index b5b9b25..15a3583 100644 --- a/src/Article.php +++ b/src/Article.php @@ -70,4 +70,12 @@ class Article } } + /** + * @return \ArrayIterator + */ + public function getOptions() + { + return $this->options; + } + } \ No newline at end of file