1 | <?php |
||
12 | class PurchaseController extends Controller |
||
13 | { |
||
14 | /** |
||
15 | * PurchaseController constructor. |
||
16 | */ |
||
17 | 10 | public function __construct() |
|
21 | |||
22 | /** |
||
23 | * Display a listing of the resource. |
||
24 | * |
||
25 | * @return \Illuminate\Http\Response |
||
26 | */ |
||
27 | 1 | public function index() |
|
31 | |||
32 | /** |
||
33 | * Store a newly created resource in storage. |
||
34 | * |
||
35 | * @param \Illuminate\Http\Request $request |
||
36 | */ |
||
37 | 5 | public function store(Request $request) |
|
38 | { |
||
39 | 5 | $this->validate($request, $this->rules($request->input('supplier_id'))); |
|
|
|||
40 | 1 | $purchase = $this->getSupplier($request)->makePurchase( |
|
41 | 1 | $request->only(['id', 'make_id', 'quantity', 'price', 'date_purchased', 'delivery_date']) |
|
42 | ); |
||
43 | 1 | event(new PurchaseWasCreated($purchase)); |
|
44 | 1 | } |
|
45 | |||
46 | /** |
||
47 | * Show the specified resource. |
||
48 | * |
||
49 | * @param $id |
||
50 | * |
||
51 | * @return mixed |
||
52 | */ |
||
53 | public function show($id) |
||
54 | { |
||
55 | $purchase = Purchase::findOrFail($id); |
||
56 | |||
57 | return view('purchases.show')->withPurchase($purchase); |
||
58 | } |
||
59 | |||
60 | /** |
||
61 | * Remove the specified resource from storage. |
||
62 | * |
||
63 | * @param int $id |
||
64 | */ |
||
65 | 1 | public function destroy($id) |
|
71 | |||
72 | /** |
||
73 | * Rules for validation depending whether or not supplier has been provided. |
||
74 | * |
||
75 | * @param int $supplierId |
||
76 | * |
||
77 | * @return array |
||
78 | */ |
||
79 | 5 | private function rules($supplierId) |
|
97 | |||
98 | /** |
||
99 | * Get the supplier depending on the request. |
||
100 | * |
||
101 | * @param Request $request |
||
102 | * |
||
103 | * @return Supplier |
||
104 | */ |
||
105 | 1 | private function getSupplier(Request $request) |
|
118 | } |
||
119 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: