1: <?php
2: /**
3: * Sastrawi (https://github.com/sastrawi/sastrawi)
4: *
5: * @link http://github.com/sastrawi/sastrawi for the canonical source repository
6: * @license https://github.com/sastrawi/sastrawi/blob/master/LICENSE The MIT License (MIT)
7: */
8:
9: namespace Sastrawi\Stemmer\Context\Visitor;
10:
11: /**
12: * Part of the Visitor Design Pattern
13: *
14: * @link http://en.wikipedia.org/wiki/Visitor_pattern
15: */
16: interface VisitableInterface
17: {
18: /**
19: * @return void
20: */
21: public function accept(VisitorInterface $visitor);
22: }
23: