2020-03-19 17:32:49 +01:00
|
|
|
# ForbiddenCode
|
|
|
|
|
|
|
|
Emitted when Psalm encounters a var_dump, exec or similar expression that may make your code more vulnerable
|
|
|
|
|
|
|
|
```php
|
2020-03-21 00:13:46 +01:00
|
|
|
<?php
|
|
|
|
|
2020-03-19 17:32:49 +01:00
|
|
|
var_dump("bah");
|
|
|
|
```
|
2020-08-13 15:21:13 +02:00
|
|
|
|
|
|
|
This functions list can be extended by configuring `forbiddenFunctions` in `psalm.xml`
|
|
|
|
|
|
|
|
```xml
|
|
|
|
<?xml version="1.0"?>
|
|
|
|
<psalm>
|
|
|
|
<!-- other configs -->
|
|
|
|
|
|
|
|
<forbiddenFunctions>
|
|
|
|
<function name="dd"/>
|
2023-01-13 11:21:34 +01:00
|
|
|
<function name="var_dump"/>
|
2020-08-13 15:21:13 +02:00
|
|
|
</forbiddenFunctions>
|
|
|
|
</psalm>
|
|
|
|
```
|