Typehinting merge #50

Merged
belliash merged 298 commits from typehinting into master 2019-04-17 11:27:52 +02:00
Showing only changes of commit 0f5073f3fb - Show all commits

View File

@ -12,7 +12,7 @@ class StringTokenizer {
} }
public bool hasMoreTokens() { public bool hasMoreTokens() {
return ($this->token !== false); return $this->token ? true : false;
} }
public string nextToken() { public string nextToken() {