Merge pull request #16263 from eileenmcnaughton/ids_3
[civicrm-core.git] / bin / cli.class.php
index aa609d30807205321e430b329d4f2fd56a87a7e2..dff79069f40ae90664f266ecd761f7a2231985cf 100644 (file)
@@ -146,7 +146,7 @@ class civicrm_cli {
     // of this script
     array_shift($args);
 
-    while (list($k, $arg) = each($args)) {
+    foreach ($args as $k => $arg) {
       // sanitize all user input
       $arg = $this->_sanitize($arg);
 
@@ -294,8 +294,7 @@ class civicrm_cli {
    * @return bool
    */
   private function _validateOptions() {
-    $required = $this->_required_arguments;
-    while (list(, $var) = each($required)) {
+    foreach ($this->_required_arguments as $var) {
       $index = '_' . $var;
       if (empty($this->$index)) {
         $missing_arg = '--' . $var;