mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
Merge pull request #9356 from edsrzf/setrawcookie-impure
This commit is contained in:
commit
28db105f73
@ -425,7 +425,7 @@ class Functions
|
||||
'call_user_func', 'call_user_func_array', 'define', 'create_function',
|
||||
|
||||
// http
|
||||
'header', 'header_remove', 'http_response_code', 'setcookie',
|
||||
'header', 'header_remove', 'http_response_code', 'setcookie', 'setrawcookie',
|
||||
|
||||
// output buffer
|
||||
'ob_start', 'ob_end_clean', 'ob_get_clean', 'readfile', 'printf', 'var_dump', 'phpinfo',
|
||||
|
@ -666,6 +666,13 @@ class UnusedCodeTest extends TestCase
|
||||
return $c;
|
||||
}',
|
||||
],
|
||||
'setRawCookieImpure' => [
|
||||
'code' => '<?php
|
||||
setrawcookie(
|
||||
"name",
|
||||
"value",
|
||||
);',
|
||||
],
|
||||
'usedUsort' => [
|
||||
'code' => '<?php
|
||||
/** @param string[] $arr */
|
||||
|
Loading…
Reference in New Issue
Block a user