<?php
namespace App\Components\ComponentType\SaveState;
interface HasSaveStateInterface
{
/**
* Mutator for the saveStateInstance model attribute
*/
public function setSaveStateInstanceAttribute($value);
/**
* Accessor for the saveStateInstance model attribute
*/
public function getSaveStateInstanceAttribute();
}