File "ActionCalled.php"

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

<?php

namespace Filament\Actions\Events;

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

class ActionCalled
{
    use Dispatchable;

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

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