2018-08-25 21:16:20 +02:00
|
|
|
<?php
|
|
|
|
|
2023-02-03 20:41:59 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-08-25 21:16:20 +02:00
|
|
|
namespace Engelsystem\Test\Unit\Middleware\Stub;
|
|
|
|
|
|
|
|
class HasStaticMethod
|
|
|
|
{
|
2022-12-14 19:15:20 +01:00
|
|
|
public static function foo(): void
|
2019-04-24 11:01:37 +02:00
|
|
|
{
|
|
|
|
}
|
2018-08-25 21:16:20 +02:00
|
|
|
}
|