forked from shixinke/php-ide-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessagePack.php
More file actions
75 lines (67 loc) · 978 Bytes
/
MessagePack.php
File metadata and controls
75 lines (67 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
/**
* Msgpack自动补全类(基于最新的2.0.2版本)
* @author shixinke(http://www.shixinke.com)
* @modified 2016/12/23
*/
/**
*
*/
class MessagePack
{
/**
*
*/
const OPT_PHPONLY = -1001;
/**
*
*
* @example
* @param mixed $opt
* @return
*/
public function __construct($opt)
{
}
/**
*
*
* @example
* @param mixed $option
* @param mixed $value
* @return
*/
public function setOption($option, $value)
{
}
/**
*
*
* @example
* @param mixed $value
* @return
*/
public function pack($value)
{
}
/**
*
*
* @example
* @param mixed $str
* @param mixed $object
* @return
*/
public function unpack($str, $object)
{
}
/**
*
*
* @example
* @return
*/
public function unpacker()
{
}
}