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 157e944 commit f66a6fd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ class FareElement
/**
* @var string
*/
public $freeTextLong;
public $freetextLong;

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

0 comments on commit f66a6fd

Please sign in to comment.