factory.php 479 B

1234567891011121314151617181920212223
  1. <?php namespace System\DB\Eloquent;
  2. class Factory {
  3. /**
  4. * Factory for creating new model instances.
  5. *
  6. * @param string $class
  7. * @return object
  8. */
  9. public static function make($class)
  10. {
  11. $model = new $class;
  12. // -----------------------------------------------------
  13. // Set the fluent query builder on the model.
  14. // -----------------------------------------------------
  15. $model->query = \System\DB\Query::table(Meta::table($class));
  16. return $model;
  17. }
  18. }