# fluentform/3.6.51/app/Services/wpfluent/src/QueryBuilder/Raw.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 3.6.51. 35 lines.

- Page: https://pluginprobe.com/plugins/fluentform/3.6.51/code/app/Services/wpfluent/src/QueryBuilder/Raw.php
- Raw: https://pluginprobe.com/plugins/fluentform/3.6.51/raw/app/Services/wpfluent/src/QueryBuilder/Raw.php
- Modified: 2017-12-29T16:40:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/3.6.51/code/app/Services/wpfluent/src/QueryBuilder/Raw.php#L10-L20`.

```php
<?php namespace WpFluent\QueryBuilder;

class Raw
{

    /**
     * @var string
     */
    protected $value;

    /**
     * @var array
     */
    protected $bindings;

    public function __construct($value, $bindings = array())
    {
        $this->value = (string)$value;
        $this->bindings = (array)$bindings;
    }

    public function getBindings()
    {
        return $this->bindings;
    }

    /**
     * @return string
     */
    public function __toString()
    {
        return (string) $this->value;
    }
}

```
