find() public method

Change the query type to find.
public find ( )
コード例 #1
0
ファイル: Builder.php プロジェクト: WilBenShu/digital_pilot
 /**
  * Change the query type to find and optionally set and change the class being queried.
  *
  * @param string $documentName
  * @return Builder
  */
 public function find($documentName = null)
 {
     $this->setDocumentName($documentName);
     parent::find();
     return $this;
 }