| 1 | <?php |
||
| 20 | abstract class Selector extends Visitee implements SelectorInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @param callable $selector |
||
| 24 | * |
||
| 25 | * @return \Cubiche\Core\Selector\SelectorInterface |
||
| 26 | */ |
||
| 27 | public static function from(callable $selector) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function __invoke() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function select(callable $selector) |
||
| 51 | } |
||
| 52 |