mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-20 21:14:31 +00:00
16 lines
223 B
PHP
16 lines
223 B
PHP
<?php
|
|
trait AbstractTrait
|
|
{
|
|
abstract public function doSomething();
|
|
|
|
public function mockableMethod()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function anotherMockableMethod()
|
|
{
|
|
return true;
|
|
}
|
|
}
|