mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
[BUGFIX] Wrong usage of use statement
Resolves errors like "The use statement with non-compound name 'Client' has no effect"
This commit is contained in:
parent
919f13b0d4
commit
34e1d4e20d
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
|
||||
use ninja\repositories\ClientRepository;
|
||||
use Client;
|
||||
|
||||
class ClientApiController extends Controller {
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
|
||||
use ninja\repositories\InvoiceRepository;
|
||||
use Invoice;
|
||||
|
||||
class InvoiceApiController extends Controller {
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
|
||||
use ninja\repositories\PaymentRepository;
|
||||
use Payment;
|
||||
|
||||
class PaymentApiController extends Controller {
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
|
||||
use ninja\repositories\InvoiceRepository;
|
||||
use Invoice;
|
||||
|
||||
class QuoteApiController extends Controller {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user