<?php

namespace Modules\Blog\Providers;

use Illuminate\Support\ServiceProvider;

class MyBlogServiceProvider extends ServiceProvider
{
    /**
     * Register the service provider.
     */
    public function register(): void
    {
        //
    }

    /**
     * Get the services provided by the provider.
     */
    public function provides(): array
    {
        return [];
    }
}
