From 1cfc9440d3dff9a96f348b2535b1c535b11b2b2c Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Mon, 2 Sep 2024 15:13:50 +0200 Subject: [PATCH] test: Fix missing symbols (#1065) --- composer.lock | 14 +++++++------- specs/exp/instanceof.php | 4 ++-- src/Symbol/Reflector.php | 6 ++++++ 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/composer.lock b/composer.lock index c1fc38bc..7f40689c 100644 --- a/composer.lock +++ b/composer.lock @@ -207,16 +207,16 @@ }, { "name": "nikic/php-parser", - "version": "v5.0.2", + "version": "v5.1.0", "source": { "type": "git", "url": "/~https://github.com/nikic/PHP-Parser.git", - "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13" + "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13", - "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1", + "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1", "shasum": "" }, "require": { @@ -227,7 +227,7 @@ }, "require-dev": { "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + "phpunit/phpunit": "^9.0" }, "bin": [ "bin/php-parse" @@ -259,9 +259,9 @@ ], "support": { "issues": "/~https://github.com/nikic/PHP-Parser/issues", - "source": "/~https://github.com/nikic/PHP-Parser/tree/v5.0.2" + "source": "/~https://github.com/nikic/PHP-Parser/tree/v5.1.0" }, - "time": "2024-03-05T20:51:40+00:00" + "time": "2024-07-01T20:03:41+00:00" }, { "name": "psr/container", diff --git a/specs/exp/instanceof.php b/specs/exp/instanceof.php index a387c4f8..15589c05 100644 --- a/specs/exp/instanceof.php +++ b/specs/exp/instanceof.php @@ -96,7 +96,7 @@ $file = new \stdClass(); - ($file instanceof \SplFileInfo) ? $file : new \SplFileInfo($file); + $file instanceof \SplFileInfo ? $file : new \SplFileInfo($file); ----