1<?php
2
3class DestinationNull extends Destination {
4  function DestinationNull() {
5    $this->Destination('');
6  }
7
8  function process($filename, $content_type) {
9    // Do nothing
10  }
11}
12
13?>