for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Codexshaper\WooCommerce\Models;
class BaseModel
{
protected $properties = [];
/**
* Get Inaccessible Property.
*
* @param string $name
* @return int|string|array|object|null
*/
public function __get($name)
return $this->$name;
}
* Set Option.
* @param string $value
* @return void
public function __set($name, $value)
$this->properties[$name] = $value;
public function __call($method, $parameters)
if (!method_exists($this, $method)) {
preg_match_all('/((?:^|[A-Z])[a-z]+)/', $method, $partials);
$method = array_shift($partials[0]);
throw new \Exception('Sorry! you are calling wrong method');
array_unshift($parameters, strtolower(implode('_', $partials[0])));
return $this->$method(...$parameters);
public static function __callStatic($method, $parameters)
return (new static())->$method(...$parameters);