From 6dbeef63bc12c3e0b5b1f8f384c1ac82c3a6e17e Mon Sep 17 00:00:00 2001 From: Nate Eagleson Date: Wed, 1 Nov 2017 12:38:54 -0400 Subject: [PATCH] docs: correct parse-stubs section in readme (#502) As the parse-stubs step is done automatically by `composer install` since https://github.com/felixfbecker/php-language-server/commit/34d3d2030dabc29bd919d0ea795bcb8d994228de, we no longer need to explicitly instruct people to do it. Note that sometimes you must parse the PHP stubs manually --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 017ba72..90c66cb 100644 --- a/README.md +++ b/README.md @@ -192,9 +192,6 @@ Clone the repository and run composer install to install dependencies. -Then parse the stubs with - - composer run-script parse-stubs Run the tests with @@ -203,3 +200,7 @@ Run the tests with Lint with composer lint + +The project parses PHPStorm's PHP stubs to get support for PHP builtins. It re-parses them as needed after Composer processes, but after some code changes (such as ones involving the index or parsing) you may have to explicitly re-parse them: + + composer run-script parse-stubs