WingState.inc 257 B

12345678910111213
  1. <?php
  2. class WingState extends WingBase {
  3. public $sid;
  4. public function __construct(array $values, $entityType = NULL) {
  5. if (!isset($entityType)) {
  6. $entityType = 'wing_state';
  7. }
  8. parent::__construct($values, $entityType = NULL);
  9. }
  10. }