Changeset 6835
- Timestamp:
- 12/30/07 15:16:49 (10 months ago)
- Files:
-
- tools/performance/bin/sfBenchmark.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/performance/bin/sfBenchmark.class.php
r6834 r6835 239 239 return $this->report; 240 240 } 241 242 public function serialize() 243 { 244 return serialize(array($this->tmpDir, $this->report, $this->urls, $this->options)); 245 } 246 247 public function unserialize($serialized) 248 { 249 list($this->tmpDir, $this->report, $this->urls, $this->options) = unserialize($serialized); 250 } 241 251 } 242 252 … … 262 272 return $this->name; 263 273 } 264 265 public function serialize()266 {267 return serialize(array($this->tmpDir, $this->report, $this->urls, $this->options));268 }269 270 public function unserialize($serialized)271 {272 list($this->tmpDir, $this->report, $this->urls, $this->options) = unserialize($serialized);273 }274 274 }