for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace POData\ObjectModel;
/**
* Class ODataPropertyContent represents properties of a Complex type or entity element instance.
*/
class ODataPropertyContent
{
* The collection of properties.
*
* @var ODataProperty[]
public $properties = [];
* @return \POData\ObjectModel\ODataProperty[]
public function getPropertys()
return $this->properties;
}
* @param $newProperties \POData\ObjectModel\ODataProperty[]
public function setPropertys(array $newProperties)
foreach ($newProperties as $key => $property) {
$property->name = $key;
$this->properties = $newProperties;