engelsystem/tests/Unit/Middleware/Stub/HasStaticMethod.php

13 lines
160 B
PHP

<?php
declare(strict_types=1);
namespace Engelsystem\Test\Unit\Middleware\Stub;
class HasStaticMethod
{
public static function foo(): void
{
}
}