Skip to content

Commit

Permalink
Do not extend newly removed class
Browse files Browse the repository at this point in the history
  • Loading branch information
franzliedke committed Sep 9, 2015
1 parent 1691e69 commit a1ce812
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Api/AuthAction.php
Expand Up @@ -10,14 +10,14 @@

namespace Flarum\Pusher\Api;

use Flarum\Api\Actions\JsonApiAction;
use Flarum\Api\Actions\Action;
use Flarum\Api\Request;
use Flarum\Core\Settings\SettingsRepository;
use Zend\Diactoros\Response\JsonResponse;
use Zend\Diactoros\Response\EmptyResponse;
use Pusher;

class AuthAction extends JsonApiAction
class AuthAction implements Action
{
protected $settings;

Expand All @@ -26,7 +26,7 @@ public function __construct(SettingsRepository $settings)
$this->settings = $settings;
}

protected function respond(Request $request)
public function handle(Request $request)
{
$userChannel = 'private-user' . $request->actor->id;

Expand Down

0 comments on commit a1ce812

Please sign in to comment.