App\Services\Repositories\Repository::has PHP 메소드

has() 공개 메소드

Determine if an item exists in the repository.
public has ( string $key ) : boolean
$key string
리턴 boolean
    public function has($key)
    {
        return Arr::has($this->items, $key);
    }