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

close() public method

Close the file handle.
public close ( )
    public function close()
    {
        if ($this->closeAfter) {
            $this->closeAfter = false;
            \fclose($this->fp);
            \clearstatcache();
        }
    }