mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-04 01:04:36 -04:00
Fixes for php7.4 - travis
This commit is contained in:
parent
2a613d2722
commit
3c763e7d95
@ -14,6 +14,9 @@ php:
|
|||||||
- 7.4snapshot
|
- 7.4snapshot
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- libonig-dev
|
||||||
chrome: stable
|
chrome: stable
|
||||||
hosts:
|
hosts:
|
||||||
- www.ninja.test
|
- www.ninja.test
|
||||||
|
@ -53,7 +53,7 @@ class ClientSettings extends BaseSettings
|
|||||||
*/
|
*/
|
||||||
public $industry_id;
|
public $industry_id;
|
||||||
public $size_id;
|
public $size_id;
|
||||||
|
public $invoice_email_list;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cast object values and return entire class
|
* Cast object values and return entire class
|
||||||
@ -96,6 +96,7 @@ class ClientSettings extends BaseSettings
|
|||||||
'custom_taxes1' => NULL,
|
'custom_taxes1' => NULL,
|
||||||
'custom_taxes2' => NULL,
|
'custom_taxes2' => NULL,
|
||||||
'lock_sent_invoices' => NULL,
|
'lock_sent_invoices' => NULL,
|
||||||
|
'invoice_email_list' => NULL,
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@ Route::group(['middleware' => ['db','api_secret_check','token_auth'], 'prefix' =
|
|||||||
|
|
||||||
Route::resource('invoices', 'InvoiceController'); // name = (invoices. index / create / show / update / destroy / edit
|
Route::resource('invoices', 'InvoiceController'); // name = (invoices. index / create / show / update / destroy / edit
|
||||||
|
|
||||||
Route::get('invoices/{invoice}/{action}', 'InvoiceController@action');
|
Route::get('invoices/{invoice}/{action}', 'InvoiceController@action')->name('invoices.action');
|
||||||
|
|
||||||
Route::post('invoices/bulk', 'InvoiceController@bulk')->name('invoices.bulk');
|
Route::post('invoices/bulk', 'InvoiceController@bulk')->name('invoices.bulk');
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user