· 9 years ago · Sep 25, 2016, 06:02 PM
1use PubnubPubnub;
2use yiiconsoleController;
3
4class RunPubnubController extends Controller
5{
6
7 public function actionStart()
8 {
9 $pubnub = new Pubnub([
10 'publish_key' => 'blah',
11 'subscribe_key' => 'blah',
12 'secret_key' => 'blah',
13 'ssl' => true
14 ]
15 );
16
17 $pubnub->subscribe('my_channel', function ($message) {
18
19 return true;
20 });
21 }
22}