|
| 1 | +<?php declare(strict_types=1); |
| 2 | + |
| 3 | +namespace Superglobals; |
| 4 | + |
| 5 | +use function PHPStan\Testing\assertNativeType; |
| 6 | +use function PHPStan\Testing\assertType; |
| 7 | + |
| 8 | +class Superglobals |
| 9 | +{ |
| 10 | + |
| 11 | + public function originalTypes(): void |
| 12 | + { |
| 13 | + assertType('array<mixed>', $GLOBALS); |
| 14 | + assertType('array<mixed>', $_SERVER); |
| 15 | + assertType('array<mixed>', $_GET); |
| 16 | + assertType('array<mixed>', $_POST); |
| 17 | + assertType('array<mixed>', $_FILES); |
| 18 | + assertType('array<mixed>', $_COOKIE); |
| 19 | + assertType('array<mixed>', $_SESSION); |
| 20 | + assertType('array<mixed>', $_REQUEST); |
| 21 | + assertType('array<mixed>', $_ENV); |
| 22 | + } |
| 23 | + |
| 24 | + public function canBeOverwritten(): void |
| 25 | + { |
| 26 | + $GLOBALS = []; |
| 27 | + assertType('array{}', $GLOBALS); |
| 28 | + assertNativeType('array{}', $GLOBALS); |
| 29 | + } |
| 30 | + |
| 31 | + public function canBePartlyOverwritten(): void |
| 32 | + { |
| 33 | + $GLOBALS['foo'] = 'foo'; |
| 34 | + assertType("non-empty-array&hasOffsetValue('foo', 'foo')", $GLOBALS); |
| 35 | + assertNativeType("non-empty-array&hasOffsetValue('foo', 'foo')", $GLOBALS); |
| 36 | + } |
| 37 | + |
| 38 | + public function canBeNarrowed(): void |
| 39 | + { |
| 40 | + if (isset($GLOBALS['foo'])) { |
| 41 | + assertType("non-empty-array&hasOffsetValue('foo', mixed~null)", $GLOBALS); |
| 42 | + assertNativeType("non-empty-array<mixed>&hasOffset('foo')", $GLOBALS); // https://github.com/phpstan/phpstan/issues/8395 |
| 43 | + } else { |
| 44 | + assertType('array<mixed>', $GLOBALS); |
| 45 | + assertNativeType('array<mixed>', $GLOBALS); |
| 46 | + } |
| 47 | + assertType('array<mixed>', $GLOBALS); |
| 48 | + assertNativeType('array<mixed>', $GLOBALS); |
| 49 | + } |
| 50 | + |
| 51 | +} |
| 52 | + |
| 53 | +function functionScope() { |
| 54 | + assertType('array<mixed>', $GLOBALS); |
| 55 | + assertNativeType('array<mixed>', $GLOBALS); |
| 56 | +} |
| 57 | + |
| 58 | +assertType('array<mixed>', $GLOBALS); |
| 59 | +assertNativeType('array<mixed>', $GLOBALS); |
| 60 | + |
| 61 | +function badNarrowing() { |
| 62 | + if (empty($_GET['id'])) { |
| 63 | + echo "b"; |
| 64 | + } else { |
| 65 | + echo "b"; |
| 66 | + } |
| 67 | + assertType('array<mixed>', $_GET); |
| 68 | + assertType('mixed', $_GET['id']); |
| 69 | +}; |
0 commit comments