コード例 #1
0
ファイル: Cat.php プロジェクト: spotby/swagger-codegen
 /**
  * Constructor
  * @param mixed[] $data Associated array of property values initializing the model
  */
 public function __construct(array $data = null)
 {
     parent::__construct($data);
     $this->container['declawed'] = isset($data['declawed']) ? $data['declawed'] : null;
 }
コード例 #2
0
ファイル: Dog.php プロジェクト: wing328/petstore-php
 static function getters()
 {
     return parent::getters() + self::$getters;
 }
コード例 #3
0
ファイル: Dog.php プロジェクト: yonaskolb/swagger-codegen
 /**
  * Constructor
  * @param mixed[] $data Associated array of property value initalizing the model
  */
 public function __construct(array $data = null)
 {
     parent::__construct($data);
     if ($data != null) {
         $this->breed = $data["breed"];
     }
 }
コード例 #4
0
ファイル: Cat.php プロジェクト: algas/swagger-codegen
 /**
  * Constructor
  * @param mixed[] $data Associated array of property value initalizing the model
  */
 public function __construct(array $data = null)
 {
     parent::__construct($data);
     if ($data != null) {
         if (isset($data["declawed"])) {
             $this->container['declawed'] = $data["declawed"];
         }
     }
 }