1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-06 04:59:14 +01:00
psalm/docs/running_psalm/issues/StringIncrement.md
2020-03-19 12:32:49 -04:00

9 lines
163 B
Markdown

# StringIncrement
Emitted when attempting to increment a string - this works in PHP, but is unexpected behaviour for most people.
```php
$a = "hello";
$a++;
```