Development

Changeset 6835

You must first sign up to be able to contribute.

Changeset 6835

Show
Ignore:
Timestamp:
12/30/07 15:16:49 (10 months ago)
Author:
fabien
Message:

fixed typo

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/performance/bin/sfBenchmark.class.php

    r6834 r6835  
    239239    return $this->report; 
    240240  } 
     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  } 
    241251} 
    242252 
     
    262272    return $this->name; 
    263273  } 
    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   } 
    274274}