Jose\Object\Storable::hasFileBeenUpdated PHP Method

hasFileBeenUpdated() protected method

protected hasFileBeenUpdated ( ) : boolean
return boolean
    protected function hasFileBeenUpdated()
    {
        if (null === $this->file_modification_time || null === $this->getLastModificationTime()) {
            return true;
        }
        return $this->file_modification_time !== $this->getLastModificationTime();
    }