Example #1
0
 /**
  * Ensures deep cloning of attached objects
  */
 public function __clone()
 {
     parent::__clone();
     foreach ($this->with as $key => $join) {
         $this->with[$key] = clone $join;
     }
     if (null !== $this->formatter) {
         $this->formatter = clone $this->formatter;
     }
 }