Issues (48)

src/Bindings/RawBindingInterface.php (1 issue)

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
The doc comment array{float | bool | int | string} at position 2 could not be parsed: Expected ':' at position 2, but found 'float'.
Loading history...
14
     */
15
    public function bRaw(float | bool | int | string $value): array;
16
}
17