| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace ThurData\Servers\KerioEmail\App\Libs\Kerio\Components\Api\Soap\Traits;
- trait ErrorHandler
- {
- /**
- * @var
- */
- protected $error;
- /**
- * @param null $error
- * @return $this
- */
- public function setError($error = null)
- {
- $this->error = $error;
- return $this;
- }
- /**
- * @return mixed
- */
- public function getError()
- {
- return $this->error;
- }
- }
|