mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 12:40:28 +01:00
11 lines
229 B
PHP
11 lines
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();
|
||
|
}
|