1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Services/Client/ClientService.php
David Bomba c25de936ed
Refactor - moving away from jobs. (#3279)
* Implement Services

* implement service pattern

* Service patterns

* Refactoring invoice paid

* refactoring invoice

* Refactor jobs

* Refactor - remove jobs

* Refactor jobs

* Refactoring jobs

* Refactoring away from jobs

* Refactoring jobs

* Add Credits to test data
2020-02-03 21:33:07 +11:00

54 lines
966 B
PHP

<?php
/**
* client Ninja (https://clientninja.com)
*
* @link https://github.com/clientninja/clientninja source repository
*
* @copyright Copyright (c) 2020. client Ninja LLC (https://clientninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Services\Client;
use App\Models\Client;
class ClientService
{
private $client;
public function __construct(Client $client)
{
$this->client = $client;
}
public function updateBalance(float $amount)
{
$this->client->balance += $amount;
return $this;
}
public function updatePaidToDate(float $amount)
{
$this->client->paid_to_date += $amount;
return $this;
}
public function adjustCreditBalance(float $amount)
{
$this->client->credit_balance += $amount;
return $this;
}
public function save() :Client
{
$this->client->save();
return $this->client;
}
}