Introduce trait `CommandAuthor`

This commit is contained in:
Johannes Meyer 2020-05-14 13:50:48 +02:00
parent df70705b4d
commit b4e7d80807
1 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,38 @@
<?php
/* Icinga Web 2 | (c) 2020 Icinga GmbH | GPLv2+ */
namespace Icinga\Module\Monitoring\Command\Object;
trait CommandAuthor
{
/**
* Author of the command
*
* @var string
*/
protected $author;
/**
* Set the author
*
* @param string $author
*
* @return $this
*/
public function setAuthor($author)
{
$this->author = (string) $author;
return $this;
}
/**
* Get the author
*
* @return string
*/
public function getAuthor()
{
return $this->author;
}
}