world.php 358 B

123456789101112131415
  1. <?php
  2. class Model_World extends Orm\Model
  3. {
  4. protected static $_primary_key = array('id');
  5. protected static $_properties = array('id', 'randomNumber');
  6. protected static $_table_name = 'World';
  7. public function toJson() {
  8. return array(
  9. 'id' => $this->id,
  10. 'randomNumber' => $this->randomNumber
  11. );
  12. }
  13. }