1 | <?php |
||
15 | class Kirki_Output_Field_Typography extends Kirki_Output { |
||
16 | |||
17 | /** |
||
18 | * Processes a single item from the `output` array. |
||
19 | * |
||
20 | * @access protected |
||
21 | * @param array $output The `output` item. |
||
22 | * @param array $value The field's value. |
||
23 | */ |
||
24 | protected function process_output( $output, $value ) { |
||
68 | } |
||
69 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: