for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Goetas\Xsd\XsdToPhp\Php\Structure;
class PHPArg
{
protected $doc;
protected $type;
protected $name;
protected $default;
public function __construct($name = null)
$this->name = $name;
}
public function getDoc()
return $this->doc;
public function setDoc($doc)
$this->doc = $doc;
return $this;
/**
* @return PHPClass
*/
public function getType()
return $this->type;
public function setType(PHPClass $type)
$this->type = $type;
public function getName()
return $this->name;
public function setName($name)
public function getDefault()
return $this->default;
public function setDefault($default)
$this->default = $default;