Files
ntspi-app/app/Providers/ByteConverterServiceProvider.php
T
2026-03-20 21:47:02 +05:00

22 lines
375 B
PHP
Executable File

<?php
namespace App\Providers;
use App\Ship\Helpers\ByteConverter;
use Illuminate\Support\ServiceProvider;
class ByteConverterServiceProvider extends ServiceProvider
{
public function register()
{
$this->app->bind('byteconverter', function () {
return new ByteConverter();
});
}
public function boot()
{
//
}
}