Esensi\Model\Traits\PurgingModelTrait::removePurgeable PHP Method

removePurgeable() public method

Remove an attribute from the purgeable array.
public removePurgeable ( string $attribute )
$attribute string to purge
    public function removePurgeable($attribute)
    {
        $this->purgeable = array_diff($this->purgeable, func_get_args());
    }