Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/NodeList.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,10 @@ class NodeList implements Iterator, Countable, ArrayAccess
/**
* Constructor
*
* @param string $cssQuery
* @param string|array $xpathQuery
* @param DOMDocument $document
* @param DOMNodeList $nodeList
* @return void
* @param string $cssQuery
* @param string|array $xpathQuery
* @param DOMDocument $document
* @param DOMNodeList $nodeList
*/
public function __construct($cssQuery, $xpathQuery, DOMDocument $document, DOMNodeList $nodeList)
{
Expand Down Expand Up @@ -192,7 +191,8 @@ public function offsetGet($key)
/**
* ArrayAccess: set offset
*
* @return void
* @param mixed $key
* @param mixed $value
* @throws Exception\BadMethodCallException when attemptingn to write to a read-only item
*/
public function offsetSet($key, $value)
Expand All @@ -203,7 +203,7 @@ public function offsetSet($key, $value)
/**
* ArrayAccess: unset offset
*
* @return void
* @param mixed $key
* @throws Exception\BadMethodCallException when attemptingn to unset a read-only item
*/
public function offsetUnset($key)
Expand Down

0 comments on commit 29fdce8

Please sign in to comment.