mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 07:20:55 -04:00
Minor fixes (#3318)
This commit is contained in:
parent
2da1f24868
commit
5649c039c1
@ -26,7 +26,8 @@ class SelfUpdateController extends BaseController
|
|||||||
public function update(UpdaterManager $updater)
|
public function update(UpdaterManager $updater)
|
||||||
{
|
{
|
||||||
|
|
||||||
$updater->update();
|
$res = $updater->update();
|
||||||
|
|
||||||
|
return response()->json($res);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,7 @@ class ClientRepository extends BaseRepository
|
|||||||
*/
|
*/
|
||||||
public function save(array $data, Client $client) : ?Client
|
public function save(array $data, Client $client) : ?Client
|
||||||
{
|
{
|
||||||
\Log::error($data);
|
|
||||||
$client->fill($data);
|
$client->fill($data);
|
||||||
|
|
||||||
$client->save();
|
$client->save();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user