diff --git a/app/Http/Controllers/Company/General/FormatsController.php b/app/Http/Controllers/Company/General/FormatsController.php index 9708c26a..9c8e9951 100644 --- a/app/Http/Controllers/Company/General/FormatsController.php +++ b/app/Http/Controllers/Company/General/FormatsController.php @@ -3,9 +3,9 @@ namespace App\Http\Controllers\Company\General; use App\Http\Controllers\Controller; -use App\Support\Formatters\DateFormatter; -use App\Support\Formatters\TimeFormatter; -use App\Support\Formatters\TimeZones; +use App\Support\Formatting\DateFormatter; +use App\Support\Formatting\TimeFormatter; +use App\Support\Formatting\TimeZones; use Illuminate\Http\JsonResponse; class FormatsController extends Controller diff --git a/app/Providers/DriverRegistryProvider.php b/app/Providers/DriverRegistryProvider.php index 90b12aa4..521011f8 100644 --- a/app/Providers/DriverRegistryProvider.php +++ b/app/Providers/DriverRegistryProvider.php @@ -2,10 +2,10 @@ namespace App\Providers; -use App\Support\Integrations\ExchangeRate\CurrencyConverterDriver; -use App\Support\Integrations\ExchangeRate\CurrencyFreakDriver; -use App\Support\Integrations\ExchangeRate\CurrencyLayerDriver; -use App\Support\Integrations\ExchangeRate\OpenExchangeRateDriver; +use App\Support\ExchangeRate\CurrencyConverterDriver; +use App\Support\ExchangeRate\CurrencyFreakDriver; +use App\Support\ExchangeRate\CurrencyLayerDriver; +use App\Support\ExchangeRate\OpenExchangeRateDriver; use Illuminate\Support\ServiceProvider; use InvoiceShelf\Modules\Registry; diff --git a/app/Services/ExchangeRateProviderService.php b/app/Services/ExchangeRateProviderService.php index e9d06684..f8c847dc 100644 --- a/app/Services/ExchangeRateProviderService.php +++ b/app/Services/ExchangeRateProviderService.php @@ -6,8 +6,8 @@ use App\Http\Requests\ExchangeRateProviderRequest; use App\Models\CompanySetting; use App\Models\ExchangeRateLog; use App\Models\ExchangeRateProvider; -use App\Support\Integrations\ExchangeRate\ExchangeRateDriverFactory; -use App\Support\Integrations\ExchangeRate\ExchangeRateException; +use App\Support\ExchangeRate\ExchangeRateDriverFactory; +use App\Support\ExchangeRate\ExchangeRateException; class ExchangeRateProviderService { diff --git a/app/Support/Integrations/ExchangeRate/CurrencyConverterDriver.php b/app/Support/ExchangeRate/CurrencyConverterDriver.php similarity index 97% rename from app/Support/Integrations/ExchangeRate/CurrencyConverterDriver.php rename to app/Support/ExchangeRate/CurrencyConverterDriver.php index ac9a1ef8..0e0da118 100644 --- a/app/Support/Integrations/ExchangeRate/CurrencyConverterDriver.php +++ b/app/Support/ExchangeRate/CurrencyConverterDriver.php @@ -1,6 +1,6 @@