for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GeekLab\GLPDO2\Bindings\MySQL;
use GeekLab\GLPDO2\Bindings\RawBindingInterface;
class MySQLRawBindings implements RawBindingInterface
{
/**
* !!!DANGER!!!
* Bind a raw value.
*
* @param float|bool|int|string $value
* @return array{float | bool | int | string}
array{float | bool | int | string}
2
*/
public function bRaw(float | bool | int | string $value): array
return [$value];
}