Doctrine\OrientDB\Query\CommandInterface::getTokenValue PHP Method

getTokenValue() public method

Token values are always expressed as a series of values in an array, also if the token does not support multiple values. For example, the WHERE condition supports multiple values: WHERE val1 = x AND val2 = y OR val3 = z while the LIMIT clause not: LIMIT 20 However, both those tokens values are an array: this is done to internally simplify things.
public getTokenValue ( string $token ) : array
$token string
return array
    public function getTokenValue($token);