Neur0toxine
09f82bcfdf
* remove useless request for history * append new address to corporate customer * centralized configuration provider * use companyName filter in event & pass companyName into order * add AdressBuilder* fixed for regressions * fixed double contact problem
39 lines
687 B
PHP
39 lines
687 B
PHP
<?php
|
|
|
|
/**
|
|
* Class BaseModel
|
|
*/
|
|
abstract class BaseModel
|
|
{
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getObjectToArray()
|
|
{
|
|
return $this->arrayClear(call_user_func('get_object_vars', $this));
|
|
}
|
|
|
|
/**
|
|
* @param array $array
|
|
* @param array $symbols
|
|
* @return array
|
|
*/
|
|
public function arrayClear(array $array, array $symbols = array('', 0, null))
|
|
{
|
|
return array_diff($array, $symbols);
|
|
}
|
|
|
|
/**
|
|
* @param $array
|
|
* @return $this
|
|
*/
|
|
public function getArrayToObject($array)
|
|
{
|
|
foreach ($array as $key => $value) {
|
|
$this->$key = $value;
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
}
|