19 lines
275 B
PHP
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";
|
|
}
|
|
}
|