Skip to content

Commit

Permalink
Update sdk-commons dependency, change return type of getLineNumber fr…
Browse files Browse the repository at this point in the history
…om int to string
  • Loading branch information
Bertware committed May 13, 2019
1 parent 98b0135 commit 6fc8eeb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"require": {
"php": ">=7.1",
"ext-json": "*",
"trafiklab/php-sdk-commons": "~0.3.3"
"trafiklab/php-sdk-commons": "~0.3.4"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
Expand Down
4 changes: 2 additions & 2 deletions src/Trafiklab/Resrobot/Model/ResRobotTimeTableEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ public function getLineName(): string
/**
* The number of the line on which the vehicle is driving.
*
* @return int
* @return string
*/
public function getLineNumber(): int
public function getLineNumber(): string
{
return $this->_lineNumber;
}
Expand Down

0 comments on commit 6fc8eeb

Please sign in to comment.