HOME


Mini Shell 1.0
DIR: /home/cardxfeb/public_html/vendor/livewire/livewire/src/Mechanisms/
Upload File :
Current File : /home/cardxfeb/public_html/vendor/livewire/livewire/src/Mechanisms/Mechanism.php
<?php

namespace Livewire\Mechanisms;

use Illuminate\Support\Facades\Blade;
use Illuminate\Support\Str;
use Livewire\LivewireServiceProvider;

abstract class Mechanism
{
    function register()
    {
        app()->instance(static::class, $this);
    }

    function boot()
    {
        //
    }
}