1 | <?php |
||
14 | class PageMover extends Service { |
||
15 | |||
16 | /** |
||
17 | * @since 0.2 |
||
18 | * |
||
19 | * @param Page $page |
||
20 | * @param Title $target |
||
21 | * @param array $extraParams |
||
22 | * |
||
23 | * @return bool |
||
24 | */ |
||
25 | public function move( Page $page, Title $target, array $extraParams = [] ) { |
||
34 | |||
35 | /** |
||
36 | * @since 0.2 |
||
37 | * |
||
38 | * @param int $pageid |
||
39 | * @param Title $target |
||
40 | * @param array $extraParams |
||
41 | * |
||
42 | * @return bool |
||
43 | */ |
||
44 | public function moveFromPageId( $pageid, Title $target, array $extraParams = [] ) { |
||
51 | |||
52 | /** |
||
53 | * @param int $pageid |
||
54 | * @param Title $target |
||
55 | * @param array $extraParams |
||
56 | * |
||
57 | * @return array |
||
58 | */ |
||
59 | private function getMoveParams( $pageid, $target, $extraParams ) { |
||
67 | |||
68 | } |
||
69 |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.