2026-03-30 14:54:57 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace CuyZ\Valinor\Definition;
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
2026-04-18 20:32:18 +07:00
|
|
|
final readonly class FunctionObject
|
2026-03-30 14:54:57 +07:00
|
|
|
{
|
2026-04-18 20:32:18 +07:00
|
|
|
public function __construct(
|
|
|
|
|
public FunctionDefinition $definition,
|
|
|
|
|
/** @var callable */
|
|
|
|
|
public mixed $callback,
|
|
|
|
|
) {}
|
2026-03-30 14:54:57 +07:00
|
|
|
}
|