equal
deleted
inserted
replaced
|
1 <?php |
|
2 |
|
3 /* |
|
4 * This file is part of the WikiTagBundle package. |
|
5 * |
|
6 * (c) IRI <http://www.iri.centrepompidou.fr/> |
|
7 * |
|
8 * For the full copyright and license information, please view the LICENSE |
|
9 * file that was distributed with this source code. |
|
10 */ |
|
11 |
|
12 namespace IRI\Bundle\WikiTagBundle\Model; |
|
13 |
|
14 interface BaseDocumentInterface extends DocumentInterface { |
|
15 |
|
16 /** |
|
17 * TODO: Enter description here ... |
|
18 * |
|
19 * @param text $externalId |
|
20 */ |
|
21 function setExternalId($externalId); |
|
22 |
|
23 /** |
|
24 * TODO: Enter description here ... |
|
25 */ |
|
26 function getExternalId(); |
|
27 |
|
28 |
|
29 /** |
|
30 * Set manualOrder |
|
31 * |
|
32 * @param boolean $manualOrder |
|
33 */ |
|
34 function setManualOrder($manualOrder); |
|
35 |
|
36 /** |
|
37 * Get manualOrder |
|
38 * |
|
39 * @return boolean |
|
40 */ |
|
41 function getManualOrder(); |
|
42 |
|
43 |
|
44 |
|
45 } |