DEVSENSE / phptools-docs

PHP Tools public content
Apache License 2.0
84 stars 10 forks source link

Missing warning `Argument #1 ($array) could not be passed by reference` for some `array_*` #652

Closed ging-dev closed 2 months ago

ging-dev commented 2 months ago

Working: array_shift, array_push Not working, array_unshift, array_pop,...

For reproduce:

<?php

function a(): array {
    return [];
}

array_pop(a());
jakubmisek commented 2 months ago

fixed! thanks :)