Jacek Kowalski
2012-08-12 68b89ee81a3cb5ecbdf496ce3fe6b989c83b8d97
commit | author | age
6f84c6 1 <?php
JK 2 abstract class BotImage {
3     protected $data = NULL;
4     abstract function getImage();
5     abstract function getImageData();
6 }
7 ?>