mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
9 lines
163 B
Markdown
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++;
|
||
|
```
|