예제 #1
0
파일: MetaTest.php 프로젝트: solution10/orm
 public function testGetUnknownField()
 {
     $meta = new Meta('MyApp\\Models\\User');
     $this->assertNull($meta->field('unknown'));
 }
예제 #2
0
파일: User.php 프로젝트: solution10/orm
 public static function init(Meta $meta)
 {
     return $meta->field('name', new Field\String());
 }