19 lines
No EOL
288 B
PHP
19 lines
No EOL
288 B
PHP
<?php
|
|
|
|
class Legacies_Empire_Model_Builder_Item
|
|
extends Legacies_Object
|
|
{
|
|
protected $_index = null;
|
|
|
|
public function getIndex()
|
|
{
|
|
return $this->_index;
|
|
}
|
|
|
|
public function setIndex($index)
|
|
{
|
|
$this->_index = $index;
|
|
|
|
return $this;
|
|
}
|
|
} |