| 1 | <?php |
||
| 22 | class MethodWithShortObjectNameResolver extends MethodWithObjectNameResolver |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $suffix; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var int |
||
| 31 | */ |
||
| 32 | private $suffixLength; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param string $suffix The string to remove from end of each class name |
||
| 36 | */ |
||
| 37 | public function __construct($suffix = 'Message') |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | public function resolve($className) |
||
| 55 | } |
||
| 56 |