composer package updates
[openemr.git] / vendor / adldap2 / adldap2 / src / Models / Concerns / HasDescription.php
blobdfc05ed31b01c7695c6b4f44c48b11e0e72142b3
1 <?php
3 namespace Adldap\Models\Concerns;
5 trait HasDescription
7 /**
8 * Returns the models's description.
10 * @link https://msdn.microsoft.com/en-us/library/ms675492(v=vs.85).aspx
12 * @return string
14 public function getDescription()
16 return $this->getFirstAttribute($this->schema->description());
19 /**
20 * Sets the models's description.
22 * @param string $description
24 * @return $this
26 public function setDescription($description)
28 return $this->setFirstAttribute($this->schema->description(), $description);