Phastlight\Module\NET\Socket::end PHP Метод

end() публичный Метод

public end ( $data = null )
    public function end($data = null)
    {
        if ($data) {
            $this->write($data);
            $this->end();
        } else {
            $this->shouldClose = true;
        }
    }