PhpOffice\PhpPresentation\Shape\Table::getHashCode PHP Method

getHashCode() public method

Get hash code
public getHashCode ( ) : string
return string Hash code
    public function getHashCode()
    {
        $hashElements = '';
        foreach ($this->rows as $row) {
            $hashElements .= $row->getHashCode();
        }
        return md5($hashElements . __CLASS__);
    }