Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased

- [#250](https://github.com/Shopify/shopify-api-php/pull/250) [bugfix] Do not use class dynamic properties

## v4.3.0 - 2023-04-12

- [#259](https://github.com/Shopify/shopify-api-php/pull/259) Added support for 2023-04 API version, updated auto-generated REST resources
Expand Down
8 changes: 8 additions & 0 deletions src/Auth/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@
*/
class Session
{
/** @var string */
private $id;
/** @var string */
private $shop;
/** @var bool */
private $isOnline;
/** @var string */
private $state;
/** @var string|null */
private $scope = null;
/** @var DateTime|null */
Expand Down