ParagonIE\Halite\Stream\MutableFile::getSize PHP Method

getSize() public method

How big is this buffer?
public getSize ( ) : integer
return integer
    public function getSize() : int
    {
        $stat = \fstat($this->fp);
        return $stat['size'];
    }