app\models\File::isChanged PHP Method

isChanged() public method

Determine if the file is changed (its Song record is found, but the timestamp is different).
public isChanged ( ) : boolean
return boolean
    public function isChanged()
    {
        return !$this->isNew() && $this->song->mtime !== $this->mtime;
    }