-
Notifications
You must be signed in to change notification settings - Fork 869
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge into beta using the merge script #1770
Conversation
…more" This reverts commit 002550f.
Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
examples/meter_event_stream.php
Outdated
|
||
require 'vendor/autoload.php'; // Make sure to include Composer's autoload file | ||
|
||
class meter_event_stream |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file needs to be renamed to MeterEventStream.php
and
class meter_event_stream | |
class MeterEventStream |
examples/meter_event_stream.php
Outdated
$apiKey = '{{API_KEY}}'; | ||
$customerId = '{{CUSTOMER_ID}}'; | ||
|
||
$manager = new MeterEventManager($apiKey); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$manager = new MeterEventManager($apiKey); | |
$manager = new MeterEventStream($apiKey); |
examples/new_example.php
Outdated
// require 'vendor/autoload.php'; // Make sure to include Composer's autoload file | ||
require '../init.php'; | ||
|
||
class new_example |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similarly NewExample.php
and
class new_example | |
class NewExample |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Merge this and I'll create a new commit with the fix
When we merged from master to beta yesterday, we should have used our merge script and then NOT used the squash option when merging the PR as this results in future merges by the automation to not know how to resolve certain merge conflicts.
This PR has the changes from running our merge script and resolving the resulting merge conflicts.
Additionally, there is a commit with changes resulting from running the codegen - not sure why this was not part of yesterday's changes
Note: DO NOT use the squash option when merging