Google\Cloud\Datastore\DatastoreSessionHandler::close PHP Method

close() public method

Just return true for this implementation.
public close ( )
    public function close()
    {
        return true;
    }

Usage Example

 public function testClose()
 {
     $datastoreSessionHandler = new DatastoreSessionHandler($this->datastore->reveal());
     $ret = $datastoreSessionHandler->close();
     $this->assertTrue($ret);
 }