mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-11-26 20:34:48 +01:00
17 lines
302 B
Plaintext
17 lines
302 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Support\Facades;
|
|
|
|
class DB extends Facade
|
|
{
|
|
/**
|
|
* Create a raw database expression.
|
|
*
|
|
* @param mixed $value
|
|
* @return \Illuminate\Database\Query\Expression
|
|
*
|
|
* @psalm-taint-sink sql $value
|
|
*/
|
|
public static function raw($value) {}
|
|
}
|