6 lines
91 B
PHP
6 lines
91 B
PHP
<?php
|
|
abstract class AbstractMockTestClass
|
|
{
|
|
abstract public function doSomething();
|
|
}
|