renamed income/expense

This commit is contained in:
denisdulici
2019-12-31 15:49:09 +03:00
parent e2189158b9
commit 2428feb73b
235 changed files with 815 additions and 2147 deletions

View File

@ -2,8 +2,8 @@
namespace Tests\Feature\Commands;
use App\Jobs\Expense\CreateBill;
use App\Notifications\Expense\Bill as BillNotification;
use App\Jobs\Purchase\CreateBill;
use App\Notifications\Purchase\Bill as BillNotification;
use Illuminate\Support\Facades\Notification as Notification;
use Jenssegers\Date\Date;
use Tests\Feature\FeatureTestCase;

View File

@ -2,8 +2,8 @@
namespace Tests\Feature\Commands;
use App\Jobs\Income\CreateInvoice;
use App\Notifications\Income\Invoice as InvoiceNotification;
use App\Jobs\Sale\CreateInvoice;
use App\Notifications\Sale\Invoice as InvoiceNotification;
use Illuminate\Support\Facades\Notification;
use Jenssegers\Date\Date;
use Tests\Feature\FeatureTestCase;

View File

@ -1,8 +1,8 @@
<?php
namespace Tests\Feature\Expenses;
namespace Tests\Feature\Purchases;
use App\Jobs\Expense\CreateBill;
use App\Jobs\Purchase\CreateBill;
use Tests\Feature\FeatureTestCase;
class BillsTest extends FeatureTestCase

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Feature\Expenses;
namespace Tests\Feature\Purchases;
use App\Jobs\Banking\CreateTransaction;
use App\Models\Banking\Transaction;

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Feature\Expenses;
namespace Tests\Feature\Purchases;
use App\Jobs\Common\CreateContact;
use Tests\Feature\FeatureTestCase;

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Feature\Incomes;
namespace Tests\Feature\Sales;
use App\Jobs\Common\CreateContact;
use App\Models\Auth\User;

View File

@ -1,8 +1,8 @@
<?php
namespace Tests\Feature\Incomes;
namespace Tests\Feature\Sales;
use App\Jobs\Income\CreateInvoice;
use App\Jobs\Sale\CreateInvoice;
use Tests\Feature\FeatureTestCase;
class InvoicesTest extends FeatureTestCase

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Feature\Incomes;
namespace Tests\Feature\Sales;
use App\Jobs\Banking\CreateTransaction;
use App\Models\Banking\Transaction;