mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2025-01-23 05:41:11 +01:00
16 lines
261 B
Plaintext
16 lines
261 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 function raw($value) {}
|
|
} |