コード例 #1
0
ファイル: Dog.php プロジェクト: awd-git/Petshop
 public function speak($word = '')
 {
     if (empty($word)) {
         $word = 'woof';
     }
     return parent::speak($word);
 }
コード例 #2
0
ファイル: Cat.php プロジェクト: awd-git/Petshop
 public function speak($word = '')
 {
     if (strlen($word) === 0) {
         $word = 'meow';
     }
     return parent::speak($word);
 }