evseevnn\Cassandra\Protocol\BinaryData::getTimestamp PHP Method

getTimestamp() private method

private getTimestamp ( ) : string
return string
    private function getTimestamp()
    {
        // for use timestamp = 10 digits. happy for time()!
        if (strlen($this->value) === 10) {
            $this->value *= 1000;
        }
        return $this->getBigInt();
    }