for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Requests;
/**
* Class CalculatorController
* @package App\Http\Controllers
*/
class CalculatorController extends Controller
{
* CalculatorController constructor.
public function __construct()
$this->middleware('auth');
}
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
public function index()
return view('calculator');
*Store calculator data in DB
* @param Request $request
public function store(Request $request)
$request
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.