diff options
Diffstat (limited to 'library/Reporting/Values.php')
-rw-r--r-- | library/Reporting/Values.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/library/Reporting/Values.php b/library/Reporting/Values.php new file mode 100644 index 0000000..3aa9b24 --- /dev/null +++ b/library/Reporting/Values.php @@ -0,0 +1,21 @@ +<?php +// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2 + +namespace Icinga\Module\Reporting; + +trait Values +{ + protected $values; + + public function getValues() + { + return $this->values; + } + + public function setValues(array $values) + { + $this->values = $values; + + return $this; + } +} |