<?php

declare(strict_types=1);

namespace {{ tree.getFullNameSpaceOfFile(file, entity, action) }};

{% for dependency in dependencyzz %}
use {{ dependency }};{% endfor %}
use Illuminate\Support\Facades\Log;

class {{ helper.getClassName(file, entity, action) }}
{
    public function run(int $UserId): {{ helper.getClassName(helper.findFile('Model'), entity, action) }}
    {
        Log::info(self::class, compact('UserId'));

        try {

        } catch (\Exception $Exception) {
            Log::error($Exception->getMessage());

            throw $Exception;
        }
    }
}
