for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Pixelpeter\Genderize\Models;
class BaseModel
{
public function __get($property)
if (property_exists($this, $property)) {
return $this->$property;
}