'string', 'size_id' => 'string', ]; /** * Cast object values and return entire class * prevents missing properties from not being returned * and always ensure an up to date class is returned. * * @return \stdClass */ public function __construct($obj) { parent::__construct($obj); } /** * Default Client Settings scaffold. * * @return \stdClass */ public static function defaults() : \stdClass { $data = (object) [ 'entity' => (string) Client::class, 'industry_id' => '', 'size_id' => '', ]; return self::setCasts($data, self::$casts); } /** * Merges settings from Company to Client. * * @param \stdClass $company_settings * @param \stdClass $client_settings * @return \stdClass of merged settings */ public static function buildClientSettings($company_settings, $client_settings) { if (! $client_settings) { return $company_settings; } foreach ($company_settings as $key => $value) { /* pseudo code if the property exists and is a string BUT has no length, treat it as TRUE */ if (((property_exists($client_settings, $key) && is_string($client_settings->{$key}) && (iconv_strlen($client_settings->{$key}) < 1))) || ! isset($client_settings->{$key}) && property_exists($company_settings, $key)) { $client_settings->{$key} = $company_settings->{$key}; } } return $client_settings; } }