PHP 7.3 continue / break clarification
authorElliott Eggleston <ejegg@ejegg.com>
Thu, 15 Nov 2018 20:22:22 +0000 (15:22 -0500)
committerElliott Eggleston <ejegg@ejegg.com>
Mon, 19 Nov 2018 17:49:18 +0000 (12:49 -0500)
commit94b444d09d81033b95d17b31edadb69955313641
tree109ef0fd06005ea1bf07a53c7171938a4f949667
parentc167994a91d755c256a0fa5800c73ab3a422a900
PHP 7.3 continue / break clarification

PHP 7.3 started warning on 'continue' statements inside switches,
where they act just like 'break' statements. To actually continue
the enclosing loop, it would have to be 'continue 2'. Since that's
a weird syntax and these two cases have nothing after the switch,
I've replaced them here with break.
CRM/Core/BAO/CustomGroup.php
CRM/Price/BAO/PriceSet.php