feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
328 changed files with 792 additions and 13077 deletions
Showing only changes of commit ad0fd82a9e - Show all commits

View File

@ -0,0 +1,10 @@
<?php
namespace ProVM\Unit;
trait ObjectHasMethodTrait
{
public function assertObjectHasMethod(string $method, object $object): void
{
$this->assertTrue(method_exists($object, $method), sprintf('The object %s does not have the method %s', get_class($object), $method));
}
}