Browse Source

Fix invalid class namespace

laravel_7_upgrade
Nafies Luthfi 5 years ago
parent
commit
7443c99b07
  1. 2
      app/Services/InvoiceDraft/InvoiceDraft.php
  2. 2
      app/Services/InvoiceDraft/InvoiceDraftCollection.php
  3. 2
      app/Services/InvoiceDraft/Item.php
  4. 2
      tests/Feature/AgencyProfileTest.php
  5. 2
      tests/Feature/Partners/ManageCustomersTest.php
  6. 2
      tests/Feature/References/SiteOptionsTest.php
  7. 2
      tests/Unit/References/PaymentTypeTest.php
  8. 2
      tests/Unit/References/ProjectStatusTest.php
  9. 2
      tests/Unit/References/SubscriptionTypeTest.php

2
app/Services/InvoiceDraft/InvoiceDraft.php

@ -1,6 +1,6 @@
<?php
namespace App\Services\InvoiceDrafts;
namespace App\Services\InvoiceDraft;
use App\Entities\Invoices\Invoice;

2
app/Services/InvoiceDraft/InvoiceDraftCollection.php

@ -1,6 +1,6 @@
<?php
namespace App\Services\InvoiceDrafts;
namespace App\Services\InvoiceDraft;
use Illuminate\Support\Collection;
use Illuminate\Support\Str;

2
app/Services/InvoiceDraft/Item.php

@ -1,6 +1,6 @@
<?php
namespace App\Services\InvoiceDrafts;
namespace App\Services\InvoiceDraft;
/**
* Draft Item class.

2
tests/Feature/AgencyProfileTest.php

@ -1,6 +1,6 @@
<?php
namespace Tests\Feature\Users;
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;

2
tests/Feature/Partners/ManageCustomersTest.php

@ -1,6 +1,6 @@
<?php
namespace Tests\Feature;
namespace Tests\Feature\Partners;
use App\Entities\Partners\Customer;
use Illuminate\Foundation\Testing\RefreshDatabase;

2
tests/Feature/References/SiteOptionsTest.php

@ -1,6 +1,6 @@
<?php
namespace Tests\Feature\Users;
namespace Tests\Feature\References;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;

2
tests/Unit/References/PaymentTypeTest.php

@ -1,6 +1,6 @@
<?php
namespace Tests\Unit\Reference;
namespace Tests\Unit\References;
use App\Entities\Payments\Type;
use Tests\TestCase;

2
tests/Unit/References/ProjectStatusTest.php

@ -1,6 +1,6 @@
<?php
namespace Tests\Unit\Reference;
namespace Tests\Unit\References;
use App\Entities\Projects\Status;
use Tests\TestCase;

2
tests/Unit/References/SubscriptionTypeTest.php

@ -1,6 +1,6 @@
<?php
namespace Tests\Unit\Reference;
namespace Tests\Unit\References;
use App\Entities\Subscriptions\Type;
use Tests\TestCase;

Loading…
Cancel
Save