@@ 57-64 (lines=8) @@ | ||
54 | } |
|
55 | break; |
|
56 | ||
57 | case '>': |
|
58 | $actual_bytes = $this->toBytes($actual_value); |
|
59 | $bytes = $this->toBytes($match[2]); |
|
60 | ||
61 | if (! ($actual_bytes > $bytes)) { |
|
62 | $this->options[$option] = $actual_value; |
|
63 | } |
|
64 | break; |
|
65 | ||
66 | case '>=': |
|
67 | $actual_bytes = $this->toBytes($actual_value); |
|
@@ 66-73 (lines=8) @@ | ||
63 | } |
|
64 | break; |
|
65 | ||
66 | case '>=': |
|
67 | $actual_bytes = $this->toBytes($actual_value); |
|
68 | $bytes = $this->toBytes($match[2]); |
|
69 | ||
70 | if (! ($actual_bytes >= $bytes)) { |
|
71 | $this->options[$option] = $actual_value; |
|
72 | } |
|
73 | break; |
|
74 | ||
75 | case '<': |
|
76 | $actual_bytes = $this->toBytes($actual_value); |
|
@@ 75-82 (lines=8) @@ | ||
72 | } |
|
73 | break; |
|
74 | ||
75 | case '<': |
|
76 | $actual_bytes = $this->toBytes($actual_value); |
|
77 | $bytes = $this->toBytes($match[2]); |
|
78 | ||
79 | if (! ($actual_bytes < $bytes)) { |
|
80 | $this->options[$option] = $actual_value; |
|
81 | } |
|
82 | break; |
|
83 | ||
84 | case '<=': |
|
85 | $actual_bytes = $this->toBytes($actual_value); |
|
@@ 84-91 (lines=8) @@ | ||
81 | } |
|
82 | break; |
|
83 | ||
84 | case '<=': |
|
85 | $actual_bytes = $this->toBytes($actual_value); |
|
86 | $bytes = $this->toBytes($match[2]); |
|
87 | ||
88 | if (! ($actual_bytes <= $bytes)) { |
|
89 | $this->options[$option] = $actual_value; |
|
90 | } |
|
91 | break; |
|
92 | } |
|
93 | } |
|
94 |