mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +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',
|
'call_user_func', 'call_user_func_array', 'define', 'create_function',
|
||||||
|
|
||||||
// http
|
// http
|
||||||
'header', 'header_remove', 'http_response_code', 'setcookie',
|
'header', 'header_remove', 'http_response_code', 'setcookie', 'setrawcookie',
|
||||||
|
|
||||||
// output buffer
|
// output buffer
|
||||||
'ob_start', 'ob_end_clean', 'ob_get_clean', 'readfile', 'printf', 'var_dump', 'phpinfo',
|
'ob_start', 'ob_end_clean', 'ob_get_clean', 'readfile', 'printf', 'var_dump', 'phpinfo',
|
||||||
|
@ -666,6 +666,13 @@ class UnusedCodeTest extends TestCase
|
|||||||
return $c;
|
return $c;
|
||||||
}',
|
}',
|
||||||
],
|
],
|
||||||
|
'setRawCookieImpure' => [
|
||||||
|
'code' => '<?php
|
||||||
|
setrawcookie(
|
||||||
|
"name",
|
||||||
|
"value",
|
||||||
|
);',
|
||||||
|
],
|
||||||
'usedUsort' => [
|
'usedUsort' => [
|
||||||
'code' => '<?php
|
'code' => '<?php
|
||||||
/** @param string[] $arr */
|
/** @param string[] $arr */
|
||||||
|
Loading…
Reference in New Issue
Block a user