invoiceninja/app/DataMapper/BaseSettings.php

18 lines
188 B
PHP

<?php
namespace App\DataMapper;
/**
* ClientSettings
*/
class BaseSettings
{
public function __construct($obj)
{
foreach($obj as $key => $value)
$this->{$key} = $value;
}
}