remove duplicated properties

This commit is contained in:
Ivan Fedorov 2020-06-17 18:20:17 +03:00 committed by Ivan Fedorov
parent e8a864c39e
commit 4b340f6bc6
2 changed files with 7 additions and 21 deletions

View File

@ -1076,7 +1076,7 @@ class DOMNodeList implements Traversable, Countable {
/**
* The DOMNamedNodeMap class
* @link https://php.net/manual/en/class.domnamednodemap.php
* @property-read $length The number of nodes in the map. The range of valid child node indices is 0 to length - 1 inclusive.
* @property-read int $length The number of nodes in the map. The range of valid child node indices is 0 to length - 1 inclusive.
*/
class DOMNamedNodeMap implements Traversable, Countable {

View File

@ -6,7 +6,7 @@
* Event class represents and event firing on a file descriptor being ready to read from or write to; a file descriptor becoming ready to read from or write to(edge-triggered I/O only); a timeout expiring; a signal occurring; a user-triggered event.
* Every event is associated with EventBase . However, event will never fire until it is added (via Event::add() ). An added event remains in pending state until the registered event occurs, thus turning it to active state. To handle events user may register a callback which is called when event becomes active. If event is configured persistent , it remains pending. If it is not persistent, it stops being pending when it's callback runs. Event::del() method deletes event, thus making it non-pending. By means of Event::add() method it could be added again.
*
* @property bool $pending
* @property-read bool $pending
*
* @author Kazuaki MABUCHI
* @copyright Сopyright (https://php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).
@ -22,8 +22,6 @@ final class Event
const SIGNAL = 8;
const TIMEOUT = 1;
public $pending;
/**
* __construct.
* Constructs Event object.
@ -420,8 +418,8 @@ final class EventBase
* EventBuffer represents Libevent's "evbuffer", an utility functionality for buffered I/O.
* Event buffers are meant to be generally useful for doing the "buffer" part of buffered network I/O.
*
* @property int $length
* @property int $contiguous_space
* @property-read int $length
* @property-read int $contiguous_space
*
* @author Kazuaki MABUCHI
* @copyright Copyright (https://php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).
@ -437,9 +435,6 @@ class EventBuffer
const PTR_SET = 0;
const PTR_ADD = 1;
public $length;
public $contiguous_space;
/**
* __construct.
* Constructs EventBuffer object.
@ -755,8 +750,8 @@ class EventBuffer
*
* @property int $fd
* @property int $priority
* @property EventBuffer $input
* @property EventBuffer $output
* @property-read EventBuffer $input
* @property-read EventBuffer $output
*
* @author Kazuaki MABUCHI
* @copyright Copyright (https://php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).
@ -779,11 +774,6 @@ final class EventBufferEvent
const SSL_CONNECTING = 1;
const SSL_ACCEPTING = 2;
public $fd;
public $priority;
public $input;
public $output;
/**
* __construct.
* Constructs EventBufferEvent object.
@ -1792,7 +1782,7 @@ class EventHttpRequest
* EventListener.
* Represents a connection listener.
*
* @property int $fd
* @property-read int $fd
*
* @author Kazuaki MABUCHI
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).
@ -1807,8 +1797,6 @@ final class EventListener
const OPT_REUSEABLE = 8;
const OPT_THREADSAFE = 16;
public $fd;
/**
* __construct.
* Creates new connection listener associated with an event base.
@ -1906,8 +1894,6 @@ final class EventListener
* EventSslContext.
* Represents SSL_CTX structure. Provides methods and properties to configure the SSL context.
*
* @property string $local_cert
* @property string $local_pk
*
* @author Kazuaki MABUCHI
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).