File "ActionCalling.php"

Full Path: /home/tecassol/public_html/tecas-solar.ma/vendor/filament/actions/src/Events/ActionCalling.php
File size: 353 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Filament\Actions\Events;

use Filament\Actions\MountableAction;
use Illuminate\Foundation\Events\Dispatchable;

class ActionCalling
{
    use Dispatchable;

    public function __construct(
        protected MountableAction $action,
    ) {}

    public function getAction(): MountableAction
    {
        return $this->action;
    }
}