JellyBool

17773 经验值

这个应该正常,有些方法还是没法做到提示的

只要支持 ssh 的都应该可以的

你对 laravel 熟悉不?或者你是一个纯粹的前端?

这是作者的考虑吧,你可以使用 put :

  /**
     * Put an item in the collection by key.
     *
     * @param  mixed  $key
     * @param  mixed  $value
     * @return $this
     */
    public function put($key, $value)
    {
        $this->offsetSet($key, $value);

        return $this;
    }

5.1 和 5.3 是这样:

 /**
     * Push an item onto the end of the collection.
     *
     * @param  mixed  $value
     * @return $this
     */
    public function push($value)
    {
        $this->offsetSet(null, $value);

        return $this;
    }

貌似没有什么不妥吧