lithium\net\Socket::open()

public method

Opens the socket and sets Socket::$_resource.

Parameters

  • array $options

    Update the config settings.

Returns

mixed

The open resource on success, false otherwise.

Source

	public function open(array $options = []) {
		parent::__construct($options + $this->_config);
		return false;
	}