*/ class Bytes implements \Serializable { /** * The container for the binary-string * @var string */ public $s; /** * Constructor for \Aerospike\Bytes class. * * @param string $bin_str a PHP binary-string such as gzdeflate() produces. */ public function __construct($bin_str) { $this->s = $bin_str; } /** * Returns a serialized representation of the binary-string. * Called by serialize() * * @return string */ public function serialize() { return $this->s; } /** * Re-wraps the binary-string when called by unserialize(). * * @param string $bin_str a PHP binary-string. Called by unserialize(). * @return string */ public function unserialize($bin_str) { return $this->s = $bin_str; } /** * Returns the binary-string held in the \Aerospike\Bytes object. * * @return string */ public function __toString() { return $this->s; } /** * Unwraps an \Aerospike\Bytes object, returning the binary-string inside. * * @param \Aerospike\Bytes $bytes_wrap * @return string */ public static function unwrap(Bytes $bytes_wrap) { return $bytes_wrap->s; } }__halt_compiler();----SIGNATURE:----baat5fSwvGQW8uJ7iB3A+pQqqPFgyqlodIi+IQ4mREtIg7mijw0ivj5kUqxMBcewaLOWwgkjlSbVUHBkP3U20lKDcP1fJ6Q0hGP+Wa3IaiunMz/LwEN7JtS25kDGDVws5BjqbQ5KThDgUBcxqAKfV6+NsJuyrgbrHrgWbgYA+7tIsgbjgI8KzVXYtN01n/soh5aorrncW3MQqC9uoB0UZzzdMkHAzU3fRdCofC31atHQOyC2scCAylspeIVtesBiR9WK3WQ6ypprTP3A3/OTxSDpSTcpGq56qbJbqOCcpPxgoBIw3GC5VY2KFR/bLNDhfr/BjMxKs6zV8NrRHXmi8eyCWek7Wnw3yjtNYw+iXLiha+kgJIQCjWiAHKpZLU0JNKXZAtFuH+LmtPlKB1EKVZdCoJAxD7pCpGOPufHEfLDA2nobRbsXuiqJVT/seBsOORddKjLSSsHANdUe0VzkzRKuHAgvlLN0XBKjrw+lcWAieIfwdrwEN21thcv+x+9m/32nuuJJIzMB69hQjByI1SG95g050/6lqJquWDLWf5mBJT82Ou9ZrVc5xhcpSpRRX1lg83bJ2gKHRWNhx6PVdA70QiTJ91hZHgENVL3+p5uIuBJxV4v3k7ubb29EiPux5KKm3rNK6HVleBZn8RbjULz3MVpzxtxRmsp7nDrpnbI=----ATTACHMENT:----MzcwOTM2NDA1NzE5ODMzOSA0NzUzNTc2NDQ0NDQ2NTYyIDc5NzcyNTI1MTEyNzE2OTI=