/
home
/
henzagold
/
server
/
vendor
/
jgrossi
/
corcel
/
src
/
Model
/
Collection
/
File Upload :
llllll
Current File: //home/henzagold/server/vendor/jgrossi/corcel/src/Model/Collection/MetaCollection.php
<?php namespace Corcel\Model\Collection; use Illuminate\Database\Eloquent\Collection; /** * Class MetaCollection * * @package Corcel\Model\Collection * @author Junior Grossi <juniorgro@gmail.com> */ class MetaCollection extends Collection { /** * @param string $key * @return mixed * @throws \Exception */ public function __get($key) { if (in_array($key, static::$proxies)) { return parent::__get($key); } if (isset($this->items) && count($this->items)) { $meta = $this->first(function ($meta) use ($key) { return $meta->meta_key === $key; }); return $meta ? $meta->meta_value : null; } return null; } /** * @param string $name * @return bool */ public function __isset($name) { return !is_null($this->__get($name)); } }
Copyright ©2k19 -
Hexid
|
Tex7ure