コード例 #1
0
 public function cycleMasterStorageKey(PhabricatorFileStorageFormat $format)
 {
     if (!$this->getID() || !$this->getStorageHandle()) {
         throw new Exception(pht("You can not cycle keys for a file which hasn't yet been saved."));
     }
     $properties = $format->cycleStorageProperties();
     $this->setStorageProperties($properties);
     $this->save();
     return $this;
 }