1 | <?php |
||
2 | |||
3 | namespace GeekLab\GLPDO2\Bindings; |
||
4 | |||
5 | interface RawBindingInterface |
||
6 | { |
||
7 | /** |
||
8 | * !!!DANGER!!! |
||
9 | * Bind a raw value. |
||
10 | * |
||
11 | * @param float | bool | int | string $value |
||
12 | * |
||
13 | * @return array{float | bool | int | string} |
||
0 ignored issues
–
show
Documentation
Bug
introduced
by
![]() |
|||
14 | */ |
||
15 | public function bRaw(float | bool | int | string $value): array; |
||
16 | } |
||
17 |