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

Commit

Permalink
Merge remote-tracking branch 'prolic/dom' into prolic-zen-52
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
4 changes: 1 addition & 3 deletions src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class RuntimeException
extends \RuntimeException
implements ExceptionInterface
class RuntimeException extends \RuntimeException implements ExceptionInterface
{
}
12 changes: 6 additions & 6 deletions src/NodeList.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@

namespace Zend\Dom;

use Iterator,
Countable,
DOMDocument,
DOMNodeList,
DOMXPath,
DOMElement;
use Iterator;
use Countable;
use DOMDocument;
use DOMNodeList;
use DOMXPath;
use DOMElement;

/**
* Nodelist for DOM XPath query
Expand Down
6 changes: 3 additions & 3 deletions src/Query.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

namespace Zend\Dom;

use DOMDocument,
DOMNodeList,
DOMXPath;
use DOMDocument;
use DOMNodeList;
use DOMXPath;

/**
* Query DOM structures based on CSS selectors and/or XPath
Expand Down

0 comments on commit 2e456c8

Please sign in to comment.