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

19 lines
254 B
PHP

<?php
namespace AutomateWoo\Entity;
/**
* ToArray interface.
*
* @since 5.1.0
* @package AutomateWoo\Entity
*/
interface ToArray {
/**
* Convert the object's data to an array.
*
* @return array
*/
public function to_array(): array;
}