1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-06 03:02:34 +01:00
invoiceninja/app/DataMapper/BaseSettings.php

18 lines
188 B
PHP
Raw Normal View History

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