Jackalope\Transport\Jackrabbit\Client::setCheckLoginOnServer PHP Method

setCheckLoginOnServer() public method

Will improve error reporting at the cost of some round trips.
public setCheckLoginOnServer ( $bool )
    public function setCheckLoginOnServer($bool)
    {
        $this->checkLoginOnServer = $bool;
    }

Usage Example

 /**
  * Configure whether to check if we are logged in before doing a request.
  *
  * Will improve error reporting at the cost of some round trips.
  */
 public function setCheckLoginOnServer($bool)
 {
     $this->transport->setCheckLoginOnServer($bool);
 }