Add toHaveMethod arch expectation

This commit is contained in:
ludoguenet
2023-09-01 18:32:40 +02:00
parent 04fa6b6372
commit 9dabecacbf
10 changed files with 121 additions and 22 deletions

View File

@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Tests\Fixtures\Arch\ToHaveMethod\HasMethod;
trait HasMethodTrait
{
public function foo(): void
{
}
}