Stop processing other rules if asked.

This commit is contained in:
James Cole 2016-01-15 06:43:00 +01:00
parent af1c6b22bb
commit 4cc6d57e6e

View File

@ -67,6 +67,10 @@ class FireRulesForStore
// get some return out of this?
$processor->handle();
if($rule->stop_processing) {
break;
}
}
}
// echo 'Done processing rules. See log.';