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

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

Creates a new invoice.
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('invoices', $parameters);
    }