mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-07-23 16:36:38 +08:00
16 lines
193 B
PHP
16 lines
193 B
PHP
<?php
|
|
|
|
namespace App\Builders;
|
|
|
|
use Phalcon\Di\Injectable;
|
|
|
|
class Builder extends Injectable
|
|
{
|
|
|
|
public function objects(array $items)
|
|
{
|
|
return kg_array_object($items);
|
|
}
|
|
|
|
}
|