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 629484fcf6 - Show all commits

View File

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