Skip to content

Commit eb6e53f

Browse files
authored
Update Economic.php
suppliers() are now supported without the experimental tag
1 parent ad58aab commit eb6e53f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/Economic.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,19 @@ public function accounts()
101101
}
102102

103103
/**
104-
* This endpoint is not yet documented by the API team.
104+
* @deprecated use suppliers() instead
105105
*
106106
* @return SupplierBuilder()|Builder
107107
*/
108108
public function experimentalSuppliers()
109+
{
110+
return $this->suppliers();
111+
}
112+
113+
/**
114+
* @return SupplierBuilder()|Builder
115+
*/
116+
public function suppliers()
109117
{
110118
return new SupplierBuilder($this->request);
111119
}

0 commit comments

Comments
 (0)