- Move ByteConverter class to App\Ship\Services - Update all imports across Filament form blocks - Update ByteConverterServiceProvider - Add INTEGRATION_CREDENTIAL_PREFIX to CacheKeys enum
22 lines
376 B
PHP
Executable File
22 lines
376 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Ship\Services\ByteConverter;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class ByteConverterServiceProvider extends ServiceProvider
|
|
{
|
|
public function register()
|
|
{
|
|
$this->app->bind('byteconverter', function () {
|
|
return new ByteConverter();
|
|
});
|
|
}
|
|
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
}
|