コード例 #1
0
ファイル: ObjectManager.php プロジェクト: nikophil/cmf-tests
 /**
  * Removes the cache of the predecessor version after the node has been
  * checked in.
  *
  * TODO: document more clearly
  *
  * @see VersionManager::checkin
  *
  * @return VersionInterface node version
  */
 public function checkin($absPath)
 {
     $path = $this->transport->checkinItem($absPath);
     //FIXME: what about pending move operations?
     return $this->getNodeByPath($path, 'Version\\Version');
 }