for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* EasyRPG Player Ticketsystem.
*/
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class EasyTicketController extends Controller
{
public function index()
}
public function create($gamefileId)
$gamefileId
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
public function store(Request $request)
$request
public function edit($ticketId)
$ticketId
public function update(Request $request, $ticketId)
public function store_consolelog(Request $request, $ticket_id)
$ticket_id
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.