update phpDoc and fix cs

This commit is contained in:
Manuel Raynaud
2014-03-05 15:12:11 +01:00
parent 016290ed64
commit a27e317245
19 changed files with 83 additions and 64 deletions

View File

@@ -86,7 +86,7 @@ class ConditionCollection implements Iterator, Countable, ArrayAccess
* @link http://php.net/manual/en/iterator.valid.php
*
* @return boolean The return value will be casted to boolean and then evaluated.
* Returns true on success or false on failure.
* Returns true on success or false on failure.
*/
public function valid()
{
@@ -114,7 +114,7 @@ class ConditionCollection implements Iterator, Countable, ArrayAccess
* @link http://php.net/manual/en/countable.count.php
*
* @return int The custom count as an integer.
* The return value is cast to an integer.
* The return value is cast to an integer.
*/
public function count()
{
@@ -126,10 +126,10 @@ class ConditionCollection implements Iterator, Countable, ArrayAccess
* Whether a offset exists
* @link http://php.net/manual/en/arrayaccess.offsetexists.php
* @param mixed $offset
* An offset to check for.
* An offset to check for.
*
* @return boolean true on success or false on failure.
* The return value will be casted to boolean if non-boolean was returned.
* The return value will be casted to boolean if non-boolean was returned.
*/
public function offsetExists($offset)
{
@@ -141,7 +141,7 @@ class ConditionCollection implements Iterator, Countable, ArrayAccess
* Offset to retrieve
* @link http://php.net/manual/en/arrayaccess.offsetget.php
* @param mixed $offset
* The offset to retrieve.
* The offset to retrieve.
*
* @return mixed Can return all value types.
*/
@@ -155,9 +155,9 @@ class ConditionCollection implements Iterator, Countable, ArrayAccess
* Offset to set
* @link http://php.net/manual/en/arrayaccess.offsetset.php
* @param mixed $offset
* The offset to assign the value to.
* The offset to assign the value to.
* @param mixed $value
* The value to set.
* The value to set.
*
* @return void
*/
@@ -175,7 +175,7 @@ class ConditionCollection implements Iterator, Countable, ArrayAccess
* Offset to unset
* @link http://php.net/manual/en/arrayaccess.offsetunset.php
* @param mixed $offset
* The offset to unset.
* The offset to unset.
*
* @return void
*/