Add get Options

This commit is contained in:
Thomas Peterson 2016-01-29 03:30:29 +01:00
parent e5786bdd19
commit 2bc9d2f86b
2 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "psc/calc", "name": "psc/calc",
"type": "library", "type": "package",
"description": "Calc Lib", "description": "Calc Lib",
"autoload": { "autoload": {
"psr-4": { "psr-4": {

View File

@ -70,4 +70,12 @@ class Article
} }
} }
/**
* @return \ArrayIterator
*/
public function getOptions()
{
return $this->options;
}
} }