<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\AbstractStructArrayBase;

class StructArrayObject extends AbstractStructArrayBase
{
    public $foo;
    public function setFoo(array $foo = array())
    {
        $this-&gt;foo = $foo;
        return $this;
    }
    public function getFoo()
    {
        return $this-&gt;foo;
    }
    public function getAttributeName()
    {
        return 'foo';
    }
}
</pre></body></html>