| 1 | <?php |
||
| 13 | class CalculatorController extends Controller |
||
| 14 | { |
||
| 15 | |||
| 16 | |||
| 17 | /** |
||
| 18 | * CalculatorController constructor. |
||
| 19 | */ |
||
| 20 | public function __construct() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
| 27 | */ |
||
| 28 | public function index() |
||
| 32 | |||
| 33 | /** |
||
| 34 | *Store calculator data in DB |
||
| 35 | * @param Request $request |
||
| 36 | */ |
||
| 37 | public function store(Request $request) |
||
| 41 | |||
| 42 | |||
| 43 | |||
| 44 | } |
||
| 45 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.