コード例 #1
0
ファイル: Collections.php プロジェクト: jabouzi/projet
 function __construct(Mapper $mapper, \PDOStatement $stmt_handle, array $valueArray)
 {
     parent::__construct(null, $mapper);
     $this->stmt = $stmt_handle;
     $this->valueArray = $valueArray;
 }
コード例 #2
0
ファイル: Collections.php プロジェクト: jabouzi/projet
 function __construct(DomainObjectFactory $dofact, PDOStatement $stmt_handle, array $valueArray)
 {
     parent::__construct(null, $dofact);
     $this->stmt = $stmt_handle;
     $this->valueArray = $valueArray;
 }