Differential D20194 Diff 48202 src/applications/differential/render/DifferentialChangesetTestRenderer.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/render/DifferentialChangesetTestRenderer.php
| Show First 20 Lines • Show All 121 Lines • ▼ Show 20 Lines | if (!$any_old) { | ||||
| $out[] = 'O X <EMPTY>'; | $out[] = 'O X <EMPTY>'; | ||||
| } | } | ||||
| if (!$any_new) { | if (!$any_new) { | ||||
| $out[] = 'N X <EMPTY>'; | $out[] = 'N X <EMPTY>'; | ||||
| } | } | ||||
| $out = implode("\n", $out)."\n"; | $out = implode("\n", $out)."\n"; | ||||
| return $out; | return phutil_safe_html($out); | ||||
| } | } | ||||
| public function renderFileChange( | public function renderFileChange( | ||||
| $old_file = null, | $old_file = null, | ||||
| $new_file = null, | $new_file = null, | ||||
| $id = 0, | $id = 0, | ||||
| $vs = 0) { | $vs = 0) { | ||||
| throw new PhutilMethodNotImplementedException(); | throw new PhutilMethodNotImplementedException(); | ||||
| } | } | ||||
| } | } | ||||