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