TripalBundle.inc 219 B

123456789101112
  1. <?php
  2. /**
  3. * The class used for Tripal data type entities
  4. */
  5. class TripalBundle extends Entity {
  6. public function __construct($values = array(), $entity_type) {
  7. parent::__construct($values, $entity_type);
  8. }
  9. }