mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Add docblock
This commit is contained in:
parent
50234bc9a5
commit
f40e722397
|
@ -265,6 +265,12 @@ trait Searchable
|
||||||
return $related->getTable();
|
return $related->getTable();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Builds a search string for either MySQL or sqlite by separating the provided columns with a space.
|
||||||
|
*
|
||||||
|
* @param array $columns Columns to include in search string.
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
private function buildMultipleColumnSearch(array $columns): string
|
private function buildMultipleColumnSearch(array $columns): string
|
||||||
{
|
{
|
||||||
$driver = config('database.connections.' . config('database.default') . '.driver');
|
$driver = config('database.connections.' . config('database.default') . '.driver');
|
||||||
|
|
Loading…
Reference in a new issue