Laravel dingo Transformers问题

// AuthenticateTransformers
    public function transform(Customer $customer)
    {
        return [
            'id' => $customer['id'],
            'name' => $customer['name'],
            'username' => $customer['username'],
            'secret' => $customer['secret'],
            'startDate' => $customer['startDate'],
            'endDate' => $customer['endDate'],
            'token' => $customer['token'],
        ];
    }

    /**
     * @param \App\Models\Customer $customer
     *
     * @return array
     */
    public function getAuthenticatedUser(Customer $customer)
    {
        return [
            'id' => $customer['id'],
            'name' => $customer['name'],
            'username' => $customer['username'],
            'secret' => $customer['secret'],
            'startDate' => $customer['startDate'],
            'endDate' => $customer['endDate'],
        ];
    }

// 回调
return $this->item($customer, new AuthenticateTransformers, function ($resource, $fractal) {

            $fractal->setSerializer(new CustomSerializer());

});

查阅了一些文档,new Transformers的时候默认transform方法,

但是不能一个文件就为这一个方法而存吧,
我怎么在回调的时候想指向自定义的方法比如getAuthenticatedUser这个方法

JellyBool
public function transform(Customer $customer)
    {
      return $this->getAuthenticatedUser();
    }

这样?

假如_丶 回复 JellyBool

不是呀~,是每个transform文件只能有transform这一个方法嘛…

JellyBool 回复 假如_丶

不是啊,是 必须有 这样吧

假如_丶 回复 JellyBool

transform是否像Repositories似的想调用那个方法就用那个方法 - -,

比如说默认回到transform,在我定义其他的function,也是可以调用…

JellyBool 回复 假如_丶

你知道 OOP 编程当中 接口 Interface 这个概念不

假如_丶 回复 JellyBool

不了解啊 - -

JellyBool 回复 假如_丶

先去看看 OOP 基础呗

假如_丶 回复 JellyBool

好~~~~~~