HighSpeaker/vendor/illuminate/database/Query/IndexHint.php

34 lines
511 B
PHP
Raw Normal View History

2024-02-04 21:30:23 +05:30
<?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;
}
}