Scalr\Upgrade\AbstractEntity::getActual PHP Method

getActual() public method

Returns actual state of the entity
public getActual ( ) : stdClass
return stdClass
    public function getActual()
    {
        if ($this->actual === null) {
            $this->actual = new \stdClass();
        }
        return $this->actual;
    }