コード例 #1
0
ファイル: LinkManyTest.php プロジェクト: harp-orm/harp
 /**
  * @covers ::map
  */
 public function testMap()
 {
     $models = [new City(['id' => 10]), new City(['id' => 20])];
     $link = new LinkMany(new Country(), Country::getRepo()->getRel('cities'), $models);
     $result = $link->map(function ($item) {
         return $item->id;
     });
     $this->assertSame([10, 20], $result);
 }