Cartalyst\Stripe\Api\InvoiceItems::create PHP Метод

create() публичный Метод

Creates a new invoice item on the given customer
public create ( string $customerId, array $parameters = [] ) : array
$customerId string
$parameters array
Результат array
    public function create($customerId, array $parameters = [])
    {
        $parameters = array_merge($parameters, ['customer' => $customerId]);
        return $this->_post('invoiceitems', $parameters);
    }