Skip to content

Commit

Permalink
Dev: phpdoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Dec 21, 2016
1 parent f783f89 commit 36a4b45
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions application/helpers/expressions/em_core_helper.php
Expand Up @@ -445,10 +445,9 @@ private function RDP_EvaluateUnary(array $token)
/**
* Main entry function
* @param string $expr
* @param <type> $onlyparse - if true, then validate the syntax without computing an answer
* @param boolean $onlyparse - if true, then validate the syntax without computing an answer
* @return boolean - true if success, false if any error occurred
*/

public function RDP_Evaluate($expr, $onlyparse=false)
{
$this->RDP_expr = $expr;
Expand Down Expand Up @@ -1761,7 +1760,7 @@ private function RDP_isValidVariable($name)
/**
* Return true if the variable name is writable
* @param <type> $name
* @return <type>
* @return boolean
*/
private function RDP_isWritableVariable($name)
{
Expand All @@ -1771,9 +1770,9 @@ private function RDP_isWritableVariable($name)
/**
* Process an expression and return its boolean value
* @param <type> $expr
* @param <type> $groupSeq - needed to determine whether using variables before they are declared
* @param <type> $questionSeq - needed to determine whether using variables before they are declared
* @return <type>
* @param int $groupSeq - needed to determine whether using variables before they are declared
* @param int $questionSeq - needed to determine whether using variables before they are declared
* @return boolean
*/
public function ProcessBooleanExpression($expr,$groupSeq=-1,$questionSeq=-1)
{
Expand Down

0 comments on commit 36a4b45

Please sign in to comment.