Jose\Object\Storable::hasFileBeenUpdated PHP Méthode

hasFileBeenUpdated() protected méthode

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