X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=includes%2Fpoolcounter%2FPoolCounterWork.php;h=a570d78c48ed4664a40b1b1dc0f9965dc9657401;hb=5543e007534e444d379c898754e64537a19eeb54;hp=c0be7a1b08fb81510251c0dc888d3d1d3bbc9424;hpb=3b07da886220352c3e393ec09b0c674b3968d5ad;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/poolcounter/PoolCounterWork.php b/includes/poolcounter/PoolCounterWork.php index c0be7a1b08..a570d78c48 100644 --- a/includes/poolcounter/PoolCounterWork.php +++ b/includes/poolcounter/PoolCounterWork.php @@ -31,7 +31,7 @@ abstract class PoolCounterWork { protected $cacheable = false; // does this override getCachedWork() ? /** - * @param string $type The type of PoolCounter to use + * @param string $type The class of actions to limit concurrency for (task type) * @param string $key Key that identifies the queue this work is placed on */ public function __construct( $type, $key ) { @@ -146,9 +146,9 @@ abstract class PoolCounterWork { /* These two cases should never be hit... */ case PoolCounter::ERROR: default: - $errors = array( + $errors = [ PoolCounter::QUEUE_FULL => 'pool-queuefull', - PoolCounter::TIMEOUT => 'pool-timeout' ); + PoolCounter::TIMEOUT => 'pool-timeout' ]; $status = Status::newFatal( isset( $errors[$status->value] ) ? $errors[$status->value]