예제 #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);
 }