Pony.fm/app/Http/Controllers/Api/Web/FollowController.php
2015-08-31 15:30:02 +01:00

14 lines
No EOL
302 B
PHP

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