/** * @param IQuarkModel $model * * @return mixed */ public function Remove(IQuarkModel $model) { $location = QuarkObject::Property($model, self::LOCATION); return is_file($location) ? unlink($location) : false; }