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

11 lines
No EOL
229 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();
}