LMongo\Eloquent\Model::getMutatedAttributes PHP Method

getMutatedAttributes() public method

Get the mutated attributes for a given instance.
public getMutatedAttributes ( ) : array
return array
    public function getMutatedAttributes()
    {
        $class = get_class($this);
        if (isset(static::$mutatorCache[$class])) {
            return static::$mutatorCache[get_class($this)];
        }
        return array();
    }
Model