13 lines
204 B
PHP
13 lines
204 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Intents\WebApp;
|
|
|
|
use App\Ninja\Intents\BaseIntent;
|
|
|
|
class ListCreditIntent extends BaseIntent
|
|
{
|
|
public function process()
|
|
{
|
|
return redirect('/credits');
|
|
}
|
|
}
|