1 | <?php |
||
21 | abstract class Selector extends AbstractCallable implements SelectorInterface |
||
22 | { |
||
23 | use VisiteeTrait; |
||
24 | |||
25 | /** |
||
26 | * @param callable|mixed $selector |
||
27 | * |
||
28 | * @return \Cubiche\Core\Selector\SelectorInterface |
||
29 | */ |
||
30 | public static function from($selector) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function select($selector) |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | protected function innerCallback() |
||
58 | } |
||
59 |