for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by jensk on 12-1-2018.
*/
namespace CloudControl\Cms\storage\entities;
class FieldContainer
{
public function __get($property)
if (isset($this->$property)) {
return $this->$property;
}
return array(
0 => ''
);