Pagekit\View\Asset\FileAsset::hash PHP Method

hash() public method

public hash ( $salt = '' )
    public function hash($salt = '')
    {
        $time = '';
        if ($path = $this->getPath()) {
            $time = filemtime($path);
        }
        return hash('crc32b', $this->source . $time . $salt);
    }