JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "IndexHint.php"

Full Path: /var/www/laravel_filter/vendor/laravel/framework/src/Illuminate/Database/Query/IndexHint.php
File size: 511 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Illuminate\Database\Query;

class IndexHint
{
    /**
     * The type of query hint.
     *
     * @var string
     */
    public $type;

    /**
     * The name of the index.
     *
     * @var string
     */
    public $index;

    /**
     * Create a new index hint instance.
     *
     * @param  string  $type
     * @param  string  $index
     * @return void
     */
    public function __construct($type, $index)
    {
        $this->type = $type;
        $this->index = $index;
    }
}