aspect/tests/Classes/ThrowingClass.php
2025-12-22 17:54:16 -03:00

14 lines
199 B
PHP

<?php
namespace Tests\Classes;
use Tests\Aspects\ThrowingAspect;
class ThrowingClass
{
#[ThrowingAspect]
public function methodWithAspect(): string
{
return 'success';
}
}