Setup pint & run code style fix

This commit is contained in:
gdarko
2024-01-29 04:46:01 -06:00
parent 8de34efd8c
commit 4ab92473e9
406 changed files with 1616 additions and 2026 deletions

View File

@@ -2,22 +2,21 @@
namespace InvoiceShelf\Http\Controllers\V1\Admin\Report;
use PDF;
use Carbon\Carbon;
use InvoiceShelf\Models\Company;
use InvoiceShelf\Models\Expense;
use InvoiceShelf\Models\Currency;
use Illuminate\Http\Request;
use InvoiceShelf\Models\CompanySetting;
use Illuminate\Support\Facades\App;
use InvoiceShelf\Http\Controllers\Controller;
use InvoiceShelf\Models\Company;
use InvoiceShelf\Models\CompanySetting;
use InvoiceShelf\Models\Currency;
use InvoiceShelf\Models\Expense;
use PDF;
class ExpensesReportController extends Controller
{
/**
* Handle the incoming request.
*
* @param \Illuminate\Http\Request $request
* @param string $hash
* @return \Illuminate\Http\JsonResponse
*/
@@ -27,7 +26,7 @@ class ExpensesReportController extends Controller
$this->authorize('view report', $company);
$locale = CompanySetting::getSetting('language', $company->id);
$locale = CompanySetting::getSetting('language', $company->id);
App::setLocale($locale);