summaryrefslogtreecommitdiff
path: root/vendor/doctrine/lexer/UPGRADE.md
diff options
context:
space:
mode:
authorpolo <ordipolo@gmx.fr>2024-08-13 23:45:21 +0200
committerpolo <ordipolo@gmx.fr>2024-08-13 23:45:21 +0200
commitbf6655a534a6775d30cafa67bd801276bda1d98d (patch)
treec6381e3f6c81c33eab72508f410b165ba05f7e9c /vendor/doctrine/lexer/UPGRADE.md
parent94d67a4b51f8e62e7d518cce26a526ae1ec48278 (diff)
downloadAppliGestionPHP-bf6655a534a6775d30cafa67bd801276bda1d98d.zip
VERSION 0.2 doctrine ORM et entités
Diffstat (limited to 'vendor/doctrine/lexer/UPGRADE.md')
-rw-r--r--vendor/doctrine/lexer/UPGRADE.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/doctrine/lexer/UPGRADE.md b/vendor/doctrine/lexer/UPGRADE.md
new file mode 100644
index 0000000..1933fcb
--- /dev/null
+++ b/vendor/doctrine/lexer/UPGRADE.md
@@ -0,0 +1,22 @@
1Note about upgrading: Doctrine uses static and runtime mechanisms to raise
2awareness about deprecated code.
3
4- Use of `@deprecated` docblock that is detected by IDEs (like PHPStorm) or
5 Static Analysis tools (like Psalm, phpstan)
6- Use of our low-overhead runtime deprecation API, details:
7 https://github.com/doctrine/deprecations/
8
9# Upgrade to 3.0.0
10
11`Doctrine\Common\Lexer\Token` no longer implements `ArrayAccess`.
12Parameter type declarations have been added to
13`Doctrine\Common\Lexer\AbstractLexer` and `Doctrine\Common\Lexer\Token`.
14You should add both parameter type declarations and return type declarations to
15your lexers, based on the `@return` phpdoc.
16
17# Upgrade to 2.0.0
18
19`AbstractLexer::glimpse()` and `AbstractLexer::peek()` now return
20instances of `Doctrine\Common\Lexer\Token`, which is an array-like class
21Using it as an array is deprecated in favor of using properties of that class.
22Using `count()` on it is deprecated with no replacement.