Skip to content

Commit

Permalink
Merge pull request #13 from dynata/php_doc_extractor
Browse files Browse the repository at this point in the history
use notation
  • Loading branch information
ginotrombetti authored Aug 29, 2022
2 parents 46ba6ad + fc0060a commit 04c3672
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Gateway/Model/Context.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@ class Context
{
public string $id;
public ?array $items;
/**
* @var Ttl $expiration
*/
public Ttl $expiration;
}
6 changes: 6 additions & 0 deletions src/Registry/Model/Notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ class Notification
* @var int[]
*/
public array $categoryIds;
/**
* @var Locale $locale
*/
public Locale $locale;
/**
* @var string[] One or more of the DEVICE_* constants
Expand All @@ -54,6 +57,9 @@ class Notification
* @var Quota[][]
*/
public array $quotas;
/**
* @var Links $links
*/
public Links $links;
public string $created;
/**
Expand Down
6 changes: 6 additions & 0 deletions src/Registry/Model/Opportunity.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ class Opportunity
* @var int[]
*/
public array $categoryIds;
/**
* @var Locale $locale
*/
public Locale $locale;
/**
* @var string[] One or more of the DEVICE_* constants
Expand All @@ -54,6 +57,9 @@ class Opportunity
* @var Quota[][]
*/
public array $quotas;
/**
* @var Links $links
*/
public Links $links;
public string $created;
/**
Expand Down
3 changes: 3 additions & 0 deletions src/Registry/Model/RangeCell.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@

class RangeCell extends Cell
{
/**
* @var Range $range
*/
public Range $range;
}

0 comments on commit 04c3672

Please sign in to comment.