Skip to content

Commit

Permalink
Call the parent constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
webeweb committed Jan 21, 2020
1 parent f275e11 commit 894c35e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Model/Response/BreachesResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class BreachesResponse extends AbstractResponse {
* Constructor.
*/
public function __construct() {
parent::__construct();
$this->setBreaches([]);
}

Expand Down
1 change: 1 addition & 0 deletions src/Model/Response/DataClassesResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class DataClassesResponse extends AbstractResponse {
* Constructor.
*/
public function __construct() {
parent::__construct();
$this->setDataClasses([]);
}

Expand Down
1 change: 1 addition & 0 deletions src/Model/Response/PastesResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class PastesResponse extends AbstractResponse {
* Constructor.
*/
public function __construct() {
parent::__construct();
$this->setPastes([]);
}

Expand Down
1 change: 1 addition & 0 deletions src/Model/Response/RangesResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class RangesResponse extends AbstractResponse {
* Constructor.
*/
public function __construct() {
parent::__construct();
$this->setRanges([]);
}

Expand Down

0 comments on commit 894c35e

Please sign in to comment.