for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenapply\PeopleMatter;
class Model
{
protected $properties = [
];
public function __construct($options)
foreach ($this->properties as $key) {
$this->{$key} = "";
}
foreach ($options as $key => $value) {
$this->{$key} = $value;
public function toArray()
$arr = [];
$arr[$key] = $this->{$key};
return $arr;