0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-11-24 21:50:26 +01:00
organization_folders/lib/Interface/TableSerializable.php

11 lines
250 B
PHP
Raw Normal View History

2024-10-30 04:45:56 +01:00
<?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
*/
2024-10-31 17:29:15 +01:00
function tableSerialize(?array $params = null);
2024-10-30 04:45:56 +01:00
}