Pony.fm/app/Http/Controllers/Api/Web/FollowController.php
2015-09-06 18:21:11 +01:00

15 lines
No EOL
366 B
PHP

<?php
namespace App\Http\Controllers\Api\Web;
use App\Commands\ToggleFollowingCommand;
use App\Http\Controllers\ApiControllerBase;
use Illuminate\Support\Facades\Input;
class FollowController extends ApiControllerBase
{
public function postToggle()
{
return $this->execute(new ToggleFollowingCommand(Input::get('type'), Input::get('id')));
}
}