1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00
psalm/docs/running_psalm/issues/MixedClone.md

10 lines
120 B
Markdown
Raw Normal View History

2020-05-18 17:20:57 -04:00
# MixedClone
Emitted when trying to clone a value whose type is not known
```php
<?php
2022-09-10 13:06:17 +02:00
$a = clone $GLOBALS["a"];
2020-05-18 17:20:57 -04:00
```