Files
2023-07-11 17:28:33 +08:00

16 lines
223 B
PHP
Executable File

<?php
trait AbstractTrait
{
abstract public function doSomething();
public function mockableMethod()
{
return true;
}
public function anotherMockableMethod()
{
return true;
}
}