| 1 | <?php |
||
| 8 | class CallableResolver implements StrategyAwareInterface |
||
| 9 | { |
||
| 10 | use StrategyAwareTrait; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * CallableResolver constructor. |
||
| 14 | */ |
||
| 15 | 8 | public function __construct() |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $in |
||
| 22 | * |
||
| 23 | * @return mixed |
||
| 24 | */ |
||
| 25 | 5 | public function resolve($in) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $in |
||
| 32 | * |
||
| 33 | * @return mixed |
||
| 34 | */ |
||
| 35 | 3 | public function resolveSafe($in) |
|
| 39 | } |
||
| 40 |