automatewoo/includes/Registry/ItemConstructorArgsTrait.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

22 lines
415 B
PHP

<?php
namespace AutomateWoo\Registry;
/**
* Trait ItemConstructorArgsTrait
*
* @since 5.3.0
*/
trait ItemConstructorArgsTrait {
/**
* Get the constructor args for an item.
*
* @param string $name The item name.
*
* @return array
*/
protected static function get_item_constructor_args( string $name ): array { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.Found
return [];
}
}