Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
FlowBoardContentDiffView
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 2
6
0.00% covered (danger)
0.00%
0 / 1
 getDiffBody
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 generateContentDiffBody
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace Flow\Diff;
4
5use Content;
6use DifferenceEngine;
7
8/**
9 * Provides a mechanism for handling diffs of Flow posts without throwing exceptions.
10 */
11class FlowBoardContentDiffView extends DifferenceEngine {
12
13    /** @inheritDoc */
14    public function getDiffBody() {
15        return false;
16    }
17
18    /** @inheritDoc */
19    public function generateContentDiffBody( Content $old, Content $new ) {
20        return false;
21    }
22
23}