Fortune.php 207 B

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