HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/base.komma.pro/app/Providers/ComponentServiceProvider.php
<?php

namespace App\Providers;

use App\Components\ComponentTypes;
use App\Components\Types\ContentPersonal;
use App\Components\Types\FeaturedServices;
use App\Components\Types\Tabs;
use App\Components\Types\Testimonials;
use Illuminate\Support\ServiceProvider;
use Komma\KMS\Components\ComponentType\ComponentTypeFactory;

class ComponentServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
    }

    /**
     * Register any application services.
     *f
     * @return void
     */
    public function register()
    {
        ComponentTypeFactory::registerType(ComponentTypes::CONTENT_PERSONAL, ContentPersonal::class);
        ComponentTypeFactory::registerType(ComponentTypes::TABS, Tabs::class);
        ComponentTypeFactory::registerType(ComponentTypes::FEATURED_SERVICES, FeaturedServices::class);
        ComponentTypeFactory::registerType(ComponentTypes::TESTIMONIALS, Testimonials::class);
    }
}