for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AlgoWeb\ODataMetadata\MetadataV3\edmx;
/**
* Class representing TDesignerPropertyType
*
* XSD Type: TDesignerProperty
*/
class TDesignerPropertyType
{
* @property string $name
private $name = null;
* @property string $value
private $value = null;
* Gets as name
* @return string
public function getName()
return $this->name;
}
* Sets a new name
* @param string $name
* @return self
public function setName($name)
$this->name = $name;
return $this;
* Gets as value
public function getValue()
return $this->value;
* Sets a new value
* @param string $value
public function setValue($value)
$this->value = $value;
public function isOK()
if (null == $this->name) {
return false;
if (null == $this->value) {
return true;