| 1 | <?php |
||
| 15 | abstract class AbstractClassAssert extends AbstractAssert |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string|object |
||
| 19 | */ |
||
| 20 | protected $class; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string|object $class |
||
| 24 | */ |
||
| 25 | public function __construct($class) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Returns the tested element |
||
| 34 | * |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | public function getTestedElement() |
||
| 42 | } |