$key = $value; return $this; } public function set_boolean( $key, $value ) { return $this->set_key( $key, $value === true ); } public function set_int( $key, $value ) { return $this->set_key( $key, intval( $value ) ); } public function set_string( $key, $value ) { return $this->set_key( $key, $value ); } }