aspect/src/Aspect.php
2025-12-22 17:54:16 -03:00

19 lines
275 B
PHP

<?php
namespace IceFox\Aspect;
use Attribute;
#[Attribute(Attribute::TARGET_METHOD)]
class Aspect
{
public function before(mixed ...$args): void
{
echo "before\n";
}
public function after(mixed $result): void
{
echo "after\n";
}
}