Files
2019-03-04 16:08:27 +08:00

16 lines
223 B
PHP

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