示例#1
0
 /**
  *
  */
 public function markLinkAsClean(Model $source, Model $target)
 {
     list($_, $to) = $this->getKeys();
     $target->markAsClean($to);
 }
示例#2
0
 /**
  *
  */
 public function markLinkAsClean(Model $source, Model $target)
 {
     list($from, $_) = $this->getKeys();
     $source->markAsClean($from);
 }