Skip to content

Commit

Permalink
Fix even more nullable types
Browse files Browse the repository at this point in the history
  • Loading branch information
canihavesomecoffee committed Feb 20, 2022
1 parent 9760bd1 commit 392c89d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## 2.x

### 2.1.7 (20 February 2022)

Bugfix release (nullable types again)

### 2.1.6 (20 February 2022)

Bugfix release (nullable types again)
Expand Down
16 changes: 8 additions & 8 deletions src/Model/Companies.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,25 +42,25 @@ class Companies
/**
* Network.
*
* @var Company[]
* @var Company[]|null
*/
public array $network;
public ?array $network;
/**
* Production.
*
* @var Company[]
* @var Company[]|null
*/
public array $production;
public ?array $production;
/**
* Distributor.
*
* @var Company[]
* @var Company[]|null
*/
public array $distributor;
public ?array $distributor;
/**
* Special effects.
*
* @var Company[]
* @var Company[]|null
*/
public array $special_effects;
public ?array $special_effects;
}

0 comments on commit 392c89d

Please sign in to comment.