Merge "maintenance: Document secondary purpose of --server"
[lhc/web/wiklou.git] / tests / phpunit / mocks / content / DummySerializeErrorContentHandler.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 */
18
19 /**
20 * A dummy content handler that will throw on an attempt to serialize content.
21 */
22 class DummySerializeErrorContentHandler extends DummyContentHandlerForTesting {
23
24 public function __construct( $dataModel ) {
25 parent::__construct( $dataModel, [ "testing-serialize-error" ] );
26 }
27
28 /**
29 * @see ContentHandler::unserializeContent
30 *
31 * @param string $blob
32 * @param string $format
33 *
34 * @return Content
35 */
36 public function unserializeContent( $blob, $format = null ) {
37 throw new MWContentSerializationException( 'Could not unserialize content' );
38 }
39
40 /**
41 * @see ContentHandler::supportsDirectEditing
42 *
43 * @return bool
44 *
45 * @todo Should this be in the parent class?
46 */
47 public function supportsDirectApiEditing() {
48 return true;
49 }
50
51 }