Files
crm-ms1/v4_ci4/system/Commands/Generators/Views/transformer.tpl.php
2026-05-27 11:44:10 -04:00

23 lines
394 B
PHP

<@php
namespace {namespace};
use CodeIgniter\API\BaseTransformer;
class {class} extends BaseTransformer
{
/**
* Transform the resource into an array.
*
* @param mixed $resource
*
* @return array<string, mixed>
*/
public function toArray(mixed $resource): array
{
return [
// Add your transformation logic here
];
}
}