1

我正在尝试在我的 Laravel 5 应用程序中使用 getstream.io。我正在按照教程here,但被困在这个:

$feed = FeedManager::getUserFeed($user->id);

当我转到 FeedManager 类时,我找不到该getUserFeed()方法。这是我的FeedManager班级的样子:

<?php namespace GetStream\StreamLaravel\Facades;

use Illuminate\Support\Facades\Facade;

class FeedManager extends Facade {

    /**
     * Get the registered name of the component.
     *
     * @return string
     */
    protected static function getFacadeAccessor() { return 'feed_manager'; }

}

我想知道我在安装过程中是否做错了什么。教程说要运行php artisan config:publish get-stream/stream-laravel,但我做到了php artisan vendor:publish get-stream/stream-laravel。原因是因为我运行的时候报错config:publish,所以我vendor:publish改用了

4

1 回答 1

1

Stream-PHP-Example 现在在 Laravel 5 中工作,看看:https ://github.com/GetStream/Stream-Example-PHP

于 2015-03-26T21:48:35.567 回答