factory.php 632 B

1234567891011121314151617181920212223242526
  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. // -----------------------------------------------------
  12. // Create a new model instance.
  13. // -----------------------------------------------------
  14. $model = new $class;
  15. // -----------------------------------------------------
  16. // Set the active query instance on the model.
  17. // -----------------------------------------------------
  18. $model->query = \System\DB\Query::table(Meta::table($class));
  19. return $model;
  20. }
  21. }