World.php 202 B

123456789101112
  1. <?php
  2. namespace app\models;
  3. use \lithium\data\Model;
  4. class World extends Model {
  5. // stop lithium from pluralizing the table name
  6. protected $_meta = array(
  7. 'source' => 'World'
  8. );
  9. }