每天laravel-20160627|TaggableStore

来源:互联网 发布:大圣传 知乎 编辑:程序博客网 时间:2024/06/04 23:23
<?phpnamespace Illuminate\Cache;// a namespaceabstract class TaggableStore{    /**     * Begin executing a new tags operation.     *     * @param  array|mixed  $names     * @return \Illuminate\Cache\TaggedCache     */    public function tags($names)    {        return new TaggedCache($this, new TagSet($this, is_array($names) ? $names : func_get_args()));    }// Begin executing a new tags operation.    // a new big Tagg Cache}
0 0
原创粉丝点击