mirror of
https://github.com/danog/psalm.git
synced 2024-12-05 13:10:49 +01:00
13 lines
238 B
Markdown
13 lines
238 B
Markdown
|
# RedundantFunctionCall
|
||
|
|
||
|
Emitted when a function call (`array_values`, `strtolower`, `ksort` etc.) is redundant.
|
||
|
|
||
|
```php
|
||
|
<?php
|
||
|
|
||
|
$a = ['already', 'a', 'list'];
|
||
|
|
||
|
$redundant = array_values($a);
|
||
|
$alreadyLower = strtolower($redundant[0]);
|
||
|
```
|