Files
api/services/nginx/app/modules/xlvask/helpers/xlvask_helper.php
T

16 lines
324 B
PHP

<?php
namespace helpers;
abstract class xlvask_helper
{
/**
* Convert the helper object to an array representation.
* This method returns an associative array containing all properties of the object.
* @return array
*/
public function toArray(): array
{
return (array)$this;
}
}