yii\redis\Connection::__sleep PHP 메소드

__sleep() 공개 메소드

Closes the connection when this component is being serialized.
public __sleep ( ) : array
리턴 array
    public function __sleep()
    {
        $this->close();
        return array_keys(get_object_vars($this));
    }