/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Database/Query/IndexHint.php
32 строки
491 B
Andrew Brown
[12.x] remove `@return` docblocks on constructors (#55076)
19 мар 2025, 23:10
Не верифицирован
19 мар 2025, 23:10
8f0e00b
Код
Авторство
О чём код?
<?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 */ public function __construct($type, $index) { $this->type = $type; $this->index = $index; } }