<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php

namespace WsdlToPhp\PackageBase\Tests;

use WsdlToPhp\PackageBase\AbstractStructBase;

class StructObject extends AbstractStructBase
{
    public $foo;
    public $bar;
    public function setFoo($foo)
    {
        $this-&gt;foo = $foo;
        return $this;
    }
    public function getFoo()
    {
        return $this-&gt;foo;
    }
    public function setBar($bar)
    {
        $this-&gt;bar = $bar;
        return $this;
    }
    public function getBar()
    {
        return $this-&gt;bar;
    }
}
</pre></body></html>