for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Goetas\Xsd\XsdToPhp\Php\Structure;
class PhpConstant {
protected $name;
protected $value;
/**
* @param string $name
* @param string $value
*/
public function __construct( $name, $value ) {
$this->name = $name;
$this->value = $value;
}
* @return string
public function getName() {
return $this->name;
public function setName( $name ) {
public function getValue() {
return $this->value;
public function setValue( $value ) {