Skip to content

Commit

Permalink
Testing a fix for #2
Browse files Browse the repository at this point in the history
  • Loading branch information
JustSteveKing committed May 6, 2021
1 parent 082620b commit 012165f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Data/Company.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ private function __construct(array $data)
$this->number = isset($data['company_number']) ? $data['company_number'] : null;
$this->type = isset($data['type']) ? $data['type'] : null;
$this->confirmationStatement = Statement::make($data);
$this->hasCharges = isset($data['has_charges']) ? $data['has_charges'] ; null;
$this->hasCharges = isset($data['has_charges']) ? $data['has_charges'] : null;
$this->canFile = isset($data['can_file']) ? $data['can_file'] : null;
}

Expand Down

0 comments on commit 012165f

Please sign in to comment.