示例#1
0
文件: Task.php 项目: netresearch/kite
 /**
  * Generate name if it doesn't exist
  *
  * @param mixed $offset The name of the variable
  *
  * @return mixed
  */
 public function &offsetGet($offset)
 {
     if ($offset === 'name' && !parent::offsetGet('name')) {
         parent::offsetSet('name', spl_object_hash($this));
     }
     return parent::offsetGet($offset);
 }