import v2.0.0.0_RC3 | 2012-07-01

https://github.com/lucanos/CommunityID -> http://www.itadmins.net/archives/357
This commit is contained in:
2019-07-17 22:31:04 +02:00
parent 38c146901c
commit 2f397f01f7
2677 changed files with 296182 additions and 45159 deletions

View File

@ -16,7 +16,7 @@
* @package Zend_Dom
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Exception.php 16541 2009-07-07 06:59:03Z bkarwin $
* @version $Id: Exception.php 18951 2009-11-12 16:26:19Z alexander $
*/
/** Zend_Exception */
@ -24,7 +24,7 @@ require_once 'Zend/Exception.php';
/**
* Zend_Dom Exceptions
*
*
* @category Zend
* @package Zend_Dom
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)

View File

@ -20,13 +20,13 @@
/**
* Results for DOM XPath query
*
*
* @package Zend_Dom
* @subpackage Query
* @uses Iterator
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Result.php 16541 2009-07-07 06:59:03Z bkarwin $
* @version $Id: Result.php 18951 2009-11-12 16:26:19Z alexander $
*/
class Zend_Dom_Query_Result implements Iterator,Countable
{
@ -71,10 +71,10 @@ class Zend_Dom_Query_Result implements Iterator,Countable
/**
* Constructor
*
* @param string $cssQuery
* @param string|array $xpathQuery
* @param DOMDocument $document
*
* @param string $cssQuery
* @param string|array $xpathQuery
* @param DOMDocument $document
* @param DOMNodeList $nodeList
* @return void
*/
@ -88,7 +88,7 @@ class Zend_Dom_Query_Result implements Iterator,Countable
/**
* Retrieve CSS Query
*
*
* @return string
*/
public function getCssQuery()
@ -98,7 +98,7 @@ class Zend_Dom_Query_Result implements Iterator,Countable
/**
* Retrieve XPath query
*
*
* @return string
*/
public function getXpathQuery()
@ -108,7 +108,7 @@ class Zend_Dom_Query_Result implements Iterator,Countable
/**
* Retrieve DOMDocument
*
*
* @return DOMDocument
*/
public function getDocument()
@ -118,7 +118,7 @@ class Zend_Dom_Query_Result implements Iterator,Countable
/**
* Iterator: rewind to first element
*
*
* @return void
*/
public function rewind()
@ -129,7 +129,7 @@ class Zend_Dom_Query_Result implements Iterator,Countable
/**
* Iterator: is current position valid?
*
*
* @return bool
*/
public function valid()
@ -142,7 +142,7 @@ class Zend_Dom_Query_Result implements Iterator,Countable
/**
* Iterator: return current element
*
*
* @return DOMElement
*/
public function current()
@ -152,7 +152,7 @@ class Zend_Dom_Query_Result implements Iterator,Countable
/**
* Iterator: return key of current element
*
*
* @return int
*/
public function key()
@ -162,7 +162,7 @@ class Zend_Dom_Query_Result implements Iterator,Countable
/**
* Iterator: move to next element
*
*
* @return void
*/
public function next()
@ -173,7 +173,7 @@ class Zend_Dom_Query_Result implements Iterator,Countable
/**
* Countable: get count
*
*
* @return int
*/
public function count()