Constants091
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 95
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 0
c 1
b 0
f 1
lcom 0
cbo 0
dl 0
loc 95
ccs 0
cts 0
cp 0
1
<?php
2
3
/* This file was autogenerated by spec/parser.php - Do not modify */
4
5
namespace PhpAmqpLib\Wire;
6
7
class Constants091
8
{
9
10
    public static $AMQP_PROTOCOL_HEADER = "AMQP\x00\x00\x09\x01";
11
12
    public static $FRAME_TYPES = array(
13
        1 => 'FRAME-METHOD',
14
        2 => 'FRAME-HEADER',
15
        3 => 'FRAME-BODY',
16
        8 => 'FRAME-HEARTBEAT',
17
        4096 => 'FRAME-MIN-SIZE',
18
        206 => 'FRAME-END',
19
        501 => 'FRAME-ERROR',
20
    );
21
22
    public static $CONTENT_METHODS = array(
23
        0 => '60,40',
24
        1 => '60,50',
25
        2 => '60,60',
26
        3 => '60,71',
27
    );
28
29
    public static $CLOSE_METHODS = array(
30
        0 => '10,50',
31
        1 => '20,40',
32
    );
33
34
    public static $GLOBAL_METHOD_NAMES = array(
35
        '10,10' => 'Connection.start',
36
        '10,11' => 'Connection.start_ok',
37
        '10,20' => 'Connection.secure',
38
        '10,21' => 'Connection.secure_ok',
39
        '10,30' => 'Connection.tune',
40
        '10,31' => 'Connection.tune_ok',
41
        '10,40' => 'Connection.open',
42
        '10,41' => 'Connection.open_ok',
43
        '10,50' => 'Connection.close',
44
        '10,51' => 'Connection.close_ok',
45
        '10,60' => 'Connection.blocked',
46
        '10,61' => 'Connection.unblocked',
47
        '20,10' => 'Channel.open',
48
        '20,11' => 'Channel.open_ok',
49
        '20,20' => 'Channel.flow',
50
        '20,21' => 'Channel.flow_ok',
51
        '20,40' => 'Channel.close',
52
        '20,41' => 'Channel.close_ok',
53
        '30,10' => 'Access.request',
54
        '30,11' => 'Access.request_ok',
55
        '40,10' => 'Exchange.declare',
56
        '40,11' => 'Exchange.declare_ok',
57
        '40,20' => 'Exchange.delete',
58
        '40,21' => 'Exchange.delete_ok',
59
        '40,30' => 'Exchange.bind',
60
        '40,31' => 'Exchange.bind_ok',
61
        '40,40' => 'Exchange.unbind',
62
        '40,51' => 'Exchange.unbind_ok',
63
        '50,10' => 'Queue.declare',
64
        '50,11' => 'Queue.declare_ok',
65
        '50,20' => 'Queue.bind',
66
        '50,21' => 'Queue.bind_ok',
67
        '50,30' => 'Queue.purge',
68
        '50,31' => 'Queue.purge_ok',
69
        '50,40' => 'Queue.delete',
70
        '50,41' => 'Queue.delete_ok',
71
        '50,50' => 'Queue.unbind',
72
        '50,51' => 'Queue.unbind_ok',
73
        '60,10' => 'Basic.qos',
74
        '60,11' => 'Basic.qos_ok',
75
        '60,20' => 'Basic.consume',
76
        '60,21' => 'Basic.consume_ok',
77
        '60,30' => 'Basic.cancel',
78
        '60,31' => 'Basic.cancel_ok',
79
        '60,40' => 'Basic.publish',
80
        '60,50' => 'Basic.return',
81
        '60,60' => 'Basic.deliver',
82
        '60,70' => 'Basic.get',
83
        '60,71' => 'Basic.get_ok',
84
        '60,72' => 'Basic.get_empty',
85
        '60,80' => 'Basic.ack',
86
        '60,90' => 'Basic.reject',
87
        '60,100' => 'Basic.recover_async',
88
        '60,110' => 'Basic.recover',
89
        '60,111' => 'Basic.recover_ok',
90
        '60,120' => 'Basic.nack',
91
        '90,10' => 'Tx.select',
92
        '90,11' => 'Tx.select_ok',
93
        '90,20' => 'Tx.commit',
94
        '90,21' => 'Tx.commit_ok',
95
        '90,30' => 'Tx.rollback',
96
        '90,31' => 'Tx.rollback_ok',
97
        '85,10' => 'Confirm.select',
98
        '85,11' => 'Confirm.select_ok',
99
    );
100
101
}
102