<?php abstract class BotImage { protected $data = NULL; abstract function getImage(); abstract function getImageData(); } ?>