16 lines
324 B
PHP
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;
|
|
}
|
|
} |