/framework/core/db/DbField.php

http://zoop.googlecode.com/ · PHP · 13 lines · 11 code · 1 blank · 1 comment · 0 complexity · ea17df557a03cd1456b582abe637c3fc MD5 · raw file

  1. <?php
  2. // change this to DbColumn
  3. class DbField
  4. {
  5. public $name;
  6. public $type;
  7. function __construct($info)
  8. {
  9. $this->name = $info['name'];
  10. $this->type = $info['type'];
  11. }
  12. }