Spot\Entity\Collection::first PHP 메소드

first() 공개 메소드

Returns first result in set
public first ( ) : The
리턴 The first result in the set
    public function first()
    {
        $this->rewind();
        return $this->current();
    }