1 | <?php |
||
9 | class DefaultCallableStrategy implements ResolvableInterface |
||
10 | { |
||
11 | const DEFAULT_NAMESPACE_SEPARATOR = '\\'; |
||
12 | const DEFAULT_METHOD_SEPARATOR = '::'; |
||
13 | |||
14 | /** |
||
15 | * @var null|string |
||
16 | */ |
||
17 | |||
18 | private $namespace_separator; |
||
19 | /** |
||
20 | * @var null|string |
||
21 | */ |
||
22 | private $method_separator; |
||
23 | |||
24 | /** |
||
25 | * DefaultCallableStrategy constructor. |
||
26 | * @param string $namespace_separator |
||
27 | * @param string $method_separator |
||
28 | */ |
||
29 | public function __construct($namespace_separator = null, $method_separator = null) { |
||
33 | |||
34 | /** |
||
35 | * @param string $in |
||
36 | * @return array |
||
37 | * @throws \Exception |
||
38 | */ |
||
39 | public function resolve($in) |
||
58 | } |