Exemplo n.º 1
0
 public function doRecursionArgTrue($arg = 0)
 {
     if ($this->counter++ > 10) {
         return FALSE;
     }
     if (Misc::detectRecursion(TRUE)) {
         return TRUE;
     }
     return $this->doRecursionArgTrue($this->counter);
 }