예제 #1
0
파일: Dog.php 프로젝트: awd-git/Petshop
 public function __construct($config = [])
 {
     if (!isset($config['age']) || empty($config['age'])) {
         $config['age'] = rand(6, 9);
     }
     return parent::__construct($config);
 }
예제 #2
0
파일: Cat.php 프로젝트: awd-git/Petshop
 public function __construct($config = [])
 {
     if (!isset($config['age']) || strlen($config['age']) === 0) {
         $config['age'] = rand(6, 9);
     }
     return parent::__construct($config);
 }