1: <?php
2: namespace Sotr\Crypto;
3:
4: class Ticker
5: {
6: protected $last;
7: protected $high;
8: protected $low;
9: protected $bid;
10: protected $ask;
11:
12: public function __construct($last, $high, $low, $bid, $ask)
13: {
14: $this->last = $last;
15: $this->high = $high;
16: $this->low = $low;
17: $this->bid = $bid;
18: $this->ask = $ask;
19: }
20: }
21: