| 1 | <?php |
||
| 15 | class OtpSecret extends AbstractField |
||
| 16 | { |
||
| 17 | use Tooltip; |
||
| 18 | use Placeholder; |
||
| 19 | |||
| 20 | public function value(Request $request) |
||
| 24 | |||
| 25 | public function shouldSkip(Request $request) |
||
| 29 | |||
| 30 | public function getListView($model) |
||
| 34 | |||
| 35 | public function getEditFormView($model) |
||
| 42 | |||
| 43 | public function getCreateFormView() |
||
| 49 | |||
| 50 | public function qrSvg($model): string |
||
| 65 | } |
||
| 66 |
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@returnannotation as described here.