1<?php
2trait AbstractTrait
3{
4    abstract public function doSomething();
5
6    public function mockableMethod()
7    {
8        return true;
9    }
10
11    public function anotherMockableMethod()
12    {
13        return true;
14    }
15}
16