close() public method

In case of a subchain returns its parent, the chain itself otherwise.
public close ( ) : self
return self
Beispiel #1
0
 /**
  * Closes a chain.
  *
  * @return \Jyxo\Input\Fluent
  */
 public function close() : self
 {
     $this->chain = $this->chain->close();
     return $this;
 }