mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 04:38:09 +01:00
11 lines
No EOL
250 B
PHP
11 lines
No EOL
250 B
PHP
<?php
|
|
|
|
namespace OCA\OrganizationFolders\Interface;
|
|
|
|
interface TableSerializable {
|
|
/**
|
|
* Serializes the object to a dict array to be rendered into a occ command output table
|
|
* @return array
|
|
*/
|
|
function tableSerialize(?array $params = null);
|
|
} |