1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Repositories/CompanyRepository.php
David Bomba f712b789ca
Fixes for tests (#3184)
* fix typo

* php-cs traits

* CS fixer pass

* Password protect User routes

* Implement checks to prevent editing a deleted record

* Clean up payment flows

* Fixes for tests
2019-12-31 08:59:12 +11:00

66 lines
1.4 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Repositories;
use App\Models\Company;
use Illuminate\Http\Request;
/**
* CompanyRepository
*/
class CompanyRepository extends BaseRepository
{
public function __construct()
{
}
/**
* Gets the class name.
*
* @return string The class name.
*/
public function getClassName()
{
return Company::class;
}
/**
* Saves the client and its contacts
*
* @param array $data The data
* @param \App\Models\Company $client The Company
*
* @return Client|\App\Models\Company|null Company Object
*/
public function save(array $data, Company $company) : ?Company
{
if (isset($data['custom_fields']) && is_array($data['custom_fields'])) {
$data['custom_fields'] = $this->parseCustomFields($data['custom_fields']);
}
$company->fill($data);
$company->save();
return $company;
}
private function parseCustomFields($fields) :array
{
foreach ($fields as &$value) {
$value = (string)$value;
}
return $fields;
}
}