コード例 #1
0
 public function testToArray()
 {
     $collection = new ProductCollection();
     $product = new Product();
     $product->setSellerSku('123ABCMOB');
     $collection->add($product);
     $expected = [['SellerSku' => '123ABCMOB']];
     $this->assertEquals($expected, $collection->toArray());
 }
コード例 #2
0
ファイル: Body.php プロジェクト: danielcosta/sellercenter-sdk
 /**
  * @return array
  */
 public function toArray()
 {
     return $this->products->toArray();
 }