close() 공개 메소드

Returns false if no connection is present.
public close ( ) : boolean
리턴 boolean
예제 #1
0
파일: Adldap.php 프로젝트: kichetof/Adldap2
 /**
  * {@inheritdoc}
  */
 public function __destruct()
 {
     if ($this->connection instanceof ConnectionInterface) {
         $this->connection->close();
     }
 }