Overrides AbstractString::bytesAt
public function bytesAt(int $offset) : array { $str = $this->string[$offset] ?? ''; return '' === $str ? [] : [ \ord($str), ]; }