Merge pull request #16263 from eileenmcnaughton/ids_3
[civicrm-core.git] / bin / cli.class.php
index 8cdcc9e8e7c101e1b0fe151881a0b3e7ebaf2f01..dff79069f40ae90664f266ecd761f7a2231985cf 100644 (file)
@@ -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;