1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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 []; } }
|