Files
pest/tests/Fixtures/Arch/ToBeInvokable/IsInvokable/InvokableTrait.php
2023-08-01 12:09:18 +01:00

14 lines
176 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Fixtures\Arch\ToBeInvokable\IsInvokable;
trait InvokableTrait
{
public function __invoke(): void
{
//
}
}