mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
16 lines
197 B
PHP
16 lines
197 B
PHP
<?php
|
|
|
|
namespace App\Builders;
|
|
|
|
use Phalcon\Mvc\User\Component;
|
|
|
|
class Builder extends Component
|
|
{
|
|
|
|
public function objects(array $items)
|
|
{
|
|
return kg_array_object($items);
|
|
}
|
|
|
|
}
|