Make a use of NULL operator.
Wszystkie etapy powiodły się
The build was successful.

This commit is contained in:
Rafal Kupiec 2019-03-30 19:52:51 +01:00
rodzic 4f6be2234e
commit 629484fcf6
Podpisane przez: belliash
ID klucza GPG: 4E829243E0CFE6B4

Wyświetl plik

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