| 1 | <?php |
||
| 14 | trait Persistence |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var \Phive\Queue\Tests\Handler\Handler |
||
| 18 | */ |
||
| 19 | private static $handler; |
||
| 20 | |||
| 21 | protected function setUp() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return \Phive\Queue\Queue |
||
| 30 | */ |
||
| 31 | public function createQueue() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Abstract static class functions are not supported since v5.2. |
||
| 38 | * |
||
| 39 | * @param array $config |
||
| 40 | * |
||
| 41 | * @return \Phive\Queue\Tests\Handler\Handler |
||
| 42 | * |
||
| 43 | * @throws \BadMethodCallException |
||
| 44 | */ |
||
| 45 | public static function createHandler(array $config) |
||
| 51 | |||
| 52 | public static function getHandler() |
||
| 60 | |||
| 61 | public static function setUpBeforeClass() |
||
| 67 | |||
| 68 | public static function tearDownAfterClass() |
||
| 74 | } |
||
| 75 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.