- Timestamp:
- 11/29/07 23:02:19 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/util/log/stubMemoryLogAppender.php
r1049 r1090 18 18 /** 19 19 * stores the logged data and represents the storing medium (memory) 20 * @var array<string:targetName<string:logData>> 20 * 21 * @var array<string,array<stubLogData>> 21 22 */ 22 protected $logData Storage= array();23 protected $logData = array(); 23 24 24 25 /** 25 26 * getter method 26 27 * 27 * @return array<string: targetName<string: logData>>28 * @return array<string,array<stubLogData>> 28 29 */ 29 public function getLogData Storage()30 public function getLogData() 30 31 { 31 return $this->logData Storage;32 return $this->logData; 32 33 } 33 34 … … 60 61 public function append(stubLogData $logData) 61 62 { 62 $this->logData Storage[$logData->getTarget()][] = explode(stubLogData::SEPERATOR, $logData->get());63 $this->logData[$logData->getTarget()][] = $logData; 63 64 } 64 65
