1 | <?php |
||
12 | trait OneTrait { |
||
13 | |||
14 | protected $hamleIndex = 0; |
||
15 | |||
16 | function valid() { |
||
17 | return $this->hamleIndex == 0; |
||
18 | } |
||
19 | |||
20 | function key() { |
||
21 | return $this->hamleIndex; |
||
22 | } |
||
23 | |||
24 | function current() { |
||
25 | return $this; |
||
26 | } |
||
27 | |||
28 | function rewind() { |
||
29 | $this->hamleIndex = 0; |
||
30 | } |
||
31 | |||
32 | function next() { |
||
33 | $this->hamleIndex++; |
||
34 | } |
||
35 | |||
36 | } |