芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/chicxulubpuebloyucatan.gob.mx/libraries/vendor/tobscure/json-api/src/MetaTrait.php
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tobscure\JsonApi; trait MetaTrait { /** * The meta data array. * * @var array */ protected $meta; /** * Get the meta. * * @return array */ public function getMeta() { return $this->meta; } /** * Set the meta data array. * * @param array $meta * * @return $this */ public function setMeta(array $meta) { $this->meta = $meta; return $this; } /** * Add meta data. * * @param string $key * @param string $value * * @return $this */ public function addMeta($key, $value) { $this->meta[$key] = $value; return $this; } }