update() public method

Change the query type to update.
Deprecation: Deprecated in version 1.4 - use updateOne or updateMany instead
public update ( )
示例#1
0
 /**
  * @param string $documentName
  * @return Builder
  */
 public function update($documentName = null)
 {
     $this->setDocumentName($documentName);
     parent::update();
     return $this;
 }