1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 15:13:29 +01:00
invoiceninja/app/Ninja/Intents/WebApp/ListPaymentIntent.php

14 lines
206 B
PHP
Raw Normal View History

2017-04-04 16:51:01 +02:00
<?php
namespace App\Ninja\Intents\WebApp;
use App\Ninja\Intents\BaseIntent;
class ListPaymentIntent extends BaseIntent
{
public function process()
{
return redirect('/payments');
}
}