mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2025-01-23 05:41:11 +01:00
cf9fbd88c0
* Convert DB facade stub method to static
17 lines
269 B
Plaintext
17 lines
269 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Support\Facades;
|
|
|
|
class DB extends Facade
|
|
{
|
|
/**
|
|
* Create a raw database expression.
|
|
*
|
|
* @param mixed $value
|
|
* @return void
|
|
*
|
|
* @psalm-taint-sink sql $value
|
|
*/
|
|
public static function raw($value) {}
|
|
}
|