コード例 #1
0
ファイル: Chicken.php プロジェクト: harm-less/php-encoder
 function __construct()
 {
     parent::__construct('Chicken');
     $this->setType('chicken');
 }
コード例 #2
0
ファイル: Cat.php プロジェクト: harm-less/php-encoder
 function __construct()
 {
     parent::__construct('Cat');
     $this->setType('cat');
 }
コード例 #3
0
ファイル: Sheep.php プロジェクト: harm-less/php-encoder
 function __construct()
 {
     parent::__construct('Sheep');
     $this->setType('sheep');
 }