0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-11-22 12:40:28 +01:00
organization_folders/lib/Interface/TableSerializable.php

11 lines
229 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
*/
function tableSerialize();
}