| 1 | <?php |
||
| 5 | class BtrieveRecord extends ActiveRecord |
||
| 6 | { |
||
| 7 | protected $length; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Sets the element's length in bytes. |
||
| 11 | * |
||
| 12 | * @param int $n |
||
| 13 | * |
||
| 14 | * @return BtrieveRecord |
||
| 15 | */ |
||
| 16 | public function setLength($n) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Returns the element's length in bytes. |
||
| 25 | * |
||
| 26 | * @return int |
||
| 27 | */ |
||
| 28 | public function getLength() |
||
| 32 | } |
||
| 33 |