-
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: paymentMethod fields no longer throw for guest users (#809)
* fix: paymentMethod fields no longer throw for guest users * chore: CollectionStatsQueryTest reverted
- Loading branch information
Showing
6 changed files
with
77 additions
and
11 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
vendor-prefixed/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* @license BSD-3-Clause | ||
* | ||
* Modified by Geoff Taylor using Strauss. | ||
* @see https://github.com/BrianHenryIE/strauss | ||
*/ | ||
namespace WPGraphQL\WooCommerce\Vendor\Firebase\JWT; | ||
|
||
interface JWTExceptionWithPayloadInterface | ||
{ | ||
/** | ||
* Get the payload that caused this exception. | ||
* | ||
* @return object | ||
*/ | ||
public function getPayload(): object; | ||
|
||
/** | ||
* Get the payload that caused this exception. | ||
* | ||
* @param object $payload | ||
* @return void | ||
*/ | ||
public function setPayload(object $payload): void; | ||
} |