for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AlgoWeb\ODataMetadata\MetadataV3\mapping\cs\Groups;
use AlgoWeb\ODataMetadata\MetadataV3\mapping\cs\TModificationFunctionMappingEndPropertyType;
trait TAssociationSetModificationFunctionMappingPropertyGroup
{
//Grouping for entity type function mappings
/**
* @property \AlgoWeb\ODataMetadata\MetadataV3\mapping\cs\TModificationFunctionMappingEndPropertyType
* $endProperty
*/
private $endProperty = null;
* Gets as endProperty
*
* @return \AlgoWeb\ODataMetadata\MetadataV3\mapping\cs\TModificationFunctionMappingEndPropertyType
public function getEndProperty()
return $this->endProperty;
}
* Sets a new endProperty
* @param \AlgoWeb\ODataMetadata\MetadataV3\mapping\cs\TModificationFunctionMappingEndPropertyType
* @return self
public function setEndProperty(TModificationFunctionMappingEndPropertyType $endProperty)
$this->endProperty = $endProperty;
return $this;
public function isAssociationSetModificationFunctionMappingOK(&$msg = null)
if (null != $this->endProperty && !$this->endProperty->isOK($msg)) {
return false;
return true;