コード例 #1
0
ファイル: PorterRecords.php プロジェクト: ScriptFUSION/Porter
 public function __construct(RecordCollection $records, ImportSpecification $specification)
 {
     parent::__construct($records, $records);
     $this->specification = $specification;
 }
コード例 #2
0
 public function __construct(\Iterator $providerRecords, ProviderResource $resource)
 {
     parent::__construct($providerRecords);
     $this->resource = $resource;
 }
コード例 #3
0
ファイル: MappedRecords.php プロジェクト: ScriptFUSION/Porter
 public function __construct(\Iterator $records, RecordCollection $previousCollection, Mapping $mapping)
 {
     parent::__construct($records, $previousCollection);
     $this->mapping = $mapping;
 }