Skip to content

Commit

Permalink
fix fareElement freeTextLong -> freetextLong
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Cooper committed May 12, 2020
1 parent f66a6fd commit 2033316
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,11 @@ class FareElement
*/
public $freetextLong;

public function __construct($generalIndicator, $passengerType, $freeTextLong, $officeId = null)
public function __construct($generalIndicator, $passengerType, $freeTextLong, $officeId)
{
$this->generalIndicator = $generalIndicator;
$this->passengerType = $passengerType;
$this->freetextLong = $freeTextLong;
if ($officeId) {
$this->officeId = $officeId;
}
$this->officeId = $officeId;
}
}

0 comments on commit 2033316

Please sign in to comment.