Fixed PHPDoc

Co-authored-by: Manish Menaria <the.manish.menaria@gmail.com>
This commit is contained in:
Christopher Allford 2024-09-18 07:12:32 -07:00 committed by GitHub
parent 1fa3ea32d5
commit f7a83ee053
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 3 deletions

View File

@ -19,10 +19,11 @@ class ProductCollection extends AbstractBlock {
*/
protected $block_name = 'product-collection';
/**
* An array keyed by the name of the collection containing handlers for implementing custom collection behavior.
/**
* An associative array of collection handlers.
*
* @var array
* @var array<string, callable> $collection_handler_store
* Keys are collection names, values are callable handlers for custom collection behavior.
*/
protected $collection_handler_store = array();