1 | <?php |
||
12 | class TokenController extends Base |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $title = 'Tokens'; |
||
18 | protected $model = Token::class; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Listagem de Tokens.'; |
||
24 | |||
25 | /** |
||
26 | * @var array |
||
27 | */ |
||
28 | protected $columns = [ |
||
29 | 'Rule' => 'getAdminTitleAttribute', |
||
30 | ]; |
||
31 | |||
32 | /** |
||
33 | * @var array |
||
34 | */ |
||
35 | protected $search = [ |
||
36 | 'from', |
||
37 | 'to', |
||
38 | 'code' => [ |
||
39 | 'type' => 'select', |
||
40 | 'options' => 'Facilitador\Models\RedirectRule::getCodes()', |
||
41 | ], |
||
42 | 'label', |
||
43 | ]; |
||
44 | |||
45 | /** |
||
46 | * Get the permission options. |
||
47 | * |
||
48 | * @return array An associative array. |
||
49 | */ |
||
50 | public function getPermissionOptions() |
||
54 | |||
55 | /** |
||
56 | * Populate protected properties on init |
||
57 | */ |
||
58 | public function __construct() |
||
87 | |||
88 | // /** |
||
89 | // * @var string |
||
90 | // */ |
||
91 | // public $description = "Listagem de Pedidos."; |
||
92 | |||
93 | // /** |
||
94 | // * Display all the workers |
||
95 | // * |
||
96 | // * @return Illuminate\View\View |
||
97 | // */ |
||
98 | // public function index() |
||
99 | // { |
||
100 | // return $this->populateView( |
||
101 | // 'admin.orders.index', [ |
||
102 | // 'orders' => Order::orderBy('id', 'DESC')->simplePaginate(50), |
||
103 | // ] |
||
104 | // ); |
||
105 | // } |
||
106 | |||
107 | // /** |
||
108 | // * Ajax service that tails the log file for the selected worker |
||
109 | // * |
||
110 | // * @param $worker |
||
111 | // */ |
||
112 | // public function tail($worker) |
||
113 | // { |
||
114 | // // Form the path to the file |
||
115 | // $file = Worker::logPath(urldecode($worker)); |
||
116 | // if (!file_exists($file)) { |
||
117 | // throw new Exception('Log not found: '.$file); |
||
118 | // } |
||
119 | // $size = 1024 * 100; // in bytes to get |
||
120 | |||
121 | // // Read from the end of the file |
||
122 | // clearstatcache(); |
||
123 | // $fp = fopen($file, 'r'); |
||
124 | // fseek($fp, -$size, SEEK_END); |
||
125 | // $contents = explode("\n", fread($fp, $size)); |
||
126 | // fclose($fp); |
||
127 | |||
128 | // // Reverse the contents and return |
||
129 | // $contents = array_reverse($contents); |
||
130 | // if (empty($contents[0])) { |
||
131 | // array_shift($contents); |
||
132 | // } |
||
133 | // die(implode("\n", $contents)); |
||
134 | // } |
||
135 | |||
136 | // /** |
||
137 | // * Display a listing of the resource. |
||
138 | // * |
||
139 | // * @return \Illuminate\Http\Response |
||
140 | // */ |
||
141 | // public function index(Request $request) |
||
142 | // { |
||
143 | // // if ($request->ajax()) { |
||
144 | // // $query = Order::with('user', 'operadora', 'collaborator', 'customer', 'money')->select('orders.*'); |
||
145 | |||
146 | // // return Datatables::of($query)->addColumn('action', function ($order) { |
||
147 | // // return '<a href="'.route('admin.orders.show',$order->id).'" class="btn btn-xs btn-primary"><i class="glyphicon glyphicon-eye"></i> Show</a>'; |
||
148 | // // })->setRowId('id')->editColumn('created_at', function ($order) { |
||
149 | // // return $order->created_at->format('h:m:s d/m/Y'); |
||
150 | // // }) |
||
151 | // // ->setRowClass(function ($order) { |
||
152 | // // return $order->status == Order::$STATUS_APPROVED ? 'alert-success' : 'alert-warning'; |
||
153 | // // }) |
||
154 | // // ->setRowData([ |
||
155 | // // 'id' => 'test', |
||
156 | // // ]) |
||
157 | // // ->setRowAttr([ |
||
158 | // // 'color' => 'red', |
||
159 | // // ])->make(true); |
||
160 | |||
161 | // // return $this->dataTable->eloquent($query)->make(true); |
||
162 | // // } |
||
163 | // // return view('admin.orders.index'); |
||
164 | |||
165 | // // USando Service //public function index(UsersDataTable $dataTable) |
||
166 | // // return $dataTable->render('orders.index'); |
||
167 | |||
168 | // if ($request->has('query') && !empty($request->input('query'))) { |
||
169 | // dd('oi'); |
||
170 | // $orders = Order::search($request->input('query'))->orderBy('id', 'DESC')->simplePaginate(50); |
||
171 | // } else { |
||
172 | // $orders = Order::orderBy('id', 'DESC')->simplePaginate(50); |
||
173 | // } |
||
174 | // return view('admin.orders.index', compact('orders')); |
||
175 | // } |
||
176 | |||
177 | // /** |
||
178 | // * Show the form for creating a new resource. |
||
179 | // * |
||
180 | // * @return \Illuminate\Http\Response |
||
181 | // */ |
||
182 | // public function create() |
||
183 | // { |
||
184 | // return view('admin.orders.create'); |
||
185 | // } |
||
186 | |||
187 | // /** |
||
188 | // * Store a newly created resource in storage. |
||
189 | // * |
||
190 | // * @param \Illuminate\Http\Request $request |
||
191 | // * @return \Illuminate\Http\Response |
||
192 | // */ |
||
193 | // public function store(Request $request) |
||
194 | // { |
||
195 | // $request->validate([ |
||
196 | // 'total'=>'required', |
||
197 | // 'money'=> 'required|integer', |
||
198 | // 'operadora' => 'required|integer' |
||
199 | // ]); |
||
200 | // $order = new Order([ |
||
201 | // 'total' => $request->get('total'), |
||
202 | // 'money'=> $request->get('money'), |
||
203 | // 'operadora'=> $request->get('operadora') |
||
204 | // ]); |
||
205 | // $order->save(); |
||
206 | // return redirect('/orders')->with('success', 'Stock has been added'); |
||
207 | // } |
||
208 | |||
209 | // /** |
||
210 | // * Display the specified resource. |
||
211 | // * |
||
212 | // * @param int $id |
||
213 | // * @return \Illuminate\Http\Response |
||
214 | // */ |
||
215 | // public function show($id) |
||
216 | // { |
||
217 | // $order = Order::findOrFail($id); |
||
218 | // return view('admin.orders.show', compact('order')); |
||
219 | // } |
||
220 | |||
221 | |||
222 | // /** |
||
223 | // * Show the form for editing the specified resource. |
||
224 | // * |
||
225 | // * @param int $id |
||
226 | // * @return \Illuminate\Http\Response |
||
227 | // */ |
||
228 | // public function edit($id) |
||
229 | // { |
||
230 | // $order = Order::find($id); |
||
231 | |||
232 | // return view('admin.orders.edit', compact('order')); |
||
233 | // } |
||
234 | |||
235 | // /** |
||
236 | // * Update the specified resource in storage. |
||
237 | // * |
||
238 | // * @param \Illuminate\Http\Request $request |
||
239 | // * @param int $id |
||
240 | // * @return \Illuminate\Http\Response |
||
241 | // */ |
||
242 | // public function update(Request $request, $id) |
||
243 | // { |
||
244 | // $request->validate([ |
||
245 | // 'total'=>'required', |
||
246 | // 'money'=> 'required|integer', |
||
247 | // 'operadora' => 'required|integer' |
||
248 | // ]); |
||
249 | |||
250 | // $order = Order::findOrFail($id); |
||
251 | // $order->total = $request->get('total'); |
||
252 | // $order->money = $request->get('money'); |
||
253 | // $order->operadora = $request->get('operadora'); |
||
254 | // $order->save(); |
||
255 | |||
256 | // return redirect('/orders')->with('success', 'Stock has been updated'); |
||
257 | // } |
||
258 | |||
259 | // /** |
||
260 | // * Remove the specified resource from storage. |
||
261 | // * |
||
262 | // * @param int $id |
||
263 | // * @return \Illuminate\Http\Response |
||
264 | // */ |
||
265 | // public function destroy($id) |
||
266 | // { |
||
267 | // $order = Order::findOrFail($id); |
||
268 | // $order->delete(); |
||
269 | |||
270 | // return redirect('/orders')->with('success', 'Stock has been deleted Successfully'); |
||
271 | // } |
||
272 | } |
||
273 |
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different sub-classes of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the parent class: