1 | <?php |
||
21 | abstract class Selector extends AbstractCallable implements SelectorInterface |
||
22 | { |
||
23 | use VisiteeTrait; |
||
24 | |||
25 | /** |
||
26 | * @param callable $selector |
||
27 | * |
||
28 | * @return \Cubiche\Core\Selector\SelectorInterface |
||
29 | */ |
||
30 | public static function from(callable $selector) |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function select(callable $selector) |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | protected function innerCallable() |
||
54 | } |
||
55 |