All Versions
64
Latest Version
Avg Release Cycle
43 days
Latest Release
1177 days ago
Changelog History
Page 7
Changelog History
Page 7
-
v2.0.1 Changes
February 28, 2016๐ Fixed
declare() {}anddeclare();are not semantically equivalent and will now result in different ASTs. The format case will have an emptystmtsarray, while the latter will setstmtstonull.- ๐ Magic constants are now supported as semi-reserved keywords.
- A shebang line like
#!/usr/bin/env phpis now allowed at the start of a namespaced file. Previously this generated an exception. - ๐จ The
prettyPrintFile()method will not strip a trailing?>from the raw data that follows a__halt_compiler()statement. - ๐จ The
prettyPrintFile()method will not strip an opening<?phpif the file starts with a comment followed by InlineHTML.
-
v2.0.0 Changes
December 04, 2015๐ Changed
- String parts of encapsed strings are now represented using
Scalar\EncapsStringPartnodes. Previously raw strings were used. This affects thepartschild ofScalar\EncapsandExpr\ShellExec. The change has been done to allow assignment of attributes to encapsed string parts.
- String parts of encapsed strings are now represented using
-
v2.0.0-beta1 Changes
October 21, 2015๐ Fixed
- ๐ Fixed issue with too many newlines being stripped at the end of heredoc/nowdoc strings in some cases. (#227)
๐ Changed
- โก๏ธ Update group use support to be in line with recent PHP 7.0 builds.
- ๐ Renamed
php-parse.phptophp-parseand registered it as a composer bin. - ๐ Use composer PSR-4 autoloader instead of custom autoloader.
- Specify phpunit as a dev dependency.
โ Added
- โ Added
shortArraySyntaxoption to pretty printer, to print all arrays using short syntax.
-
v2.0.0-alpha1 Changes
July 14, 2015A more detailed description of backwards incompatible changes can be found in the โฌ๏ธ [upgrading guide](UPGRADE-2.0.md).
โ Removed
- โ Removed support for running on PHP 5.3. It is however still possible to parse PHP 5.2 and PHP 5.3 code while running on a newer version.
- โ Removed legacy class name aliases. This includes the old non-namespaced class names and the old names for classes that were renamed for PHP 7 compatibility.
- โ Removed support for legacy node format. All nodes must have a
getSubNodeNames()method now.
โ Added
- โ Added support for remaining PHP 7 features that were not present in 1.x:
- Group use declarations. These are represented using
Stmt\GroupUsenodes. Furthermore atypeattribute was added toStmt\UseUseto handle mixed group use declarations. - Uniform variable syntax.
- Generalized yield operator.
- Scalar type declarations. These are presented using
'bool','int','float'and'string'as the type. The PHP 5 parser also accepts these, however they'll beNameinstances there. - Unicode escape sequences.
- Group use declarations. These are represented using
- โ Added
PhpParser\ParserFactoryclass, which should be used to create parser instances. - โ Added
Name::concat()which concatenates two names. - โ Added
Name->slice()which takes a subslice of a name.
๐ Changed
- ๐
PhpParser\Parseris now an interface, implemented byParser\Php5,Parser\Php7andParser\Multiple. TheMultipleparser will try multiple parsers, until one succeeds. - ๐ Token constants are now defined on
PhpParser\Parser\Tokensrather thanPhpParser\Parser. - The
Name->set(),Name->append(),Name->prepend()andName->setFirst()methods are deprecated in favor ofName::concat()andName->slice(). - โช The
NodeTraverserno longer clones nodes by default. The old behavior can be restored by passingtrueto the constructor. - 0๏ธโฃ The constructor for
Scalarnodes no longer has a default value. E.g.new LNumber()should now be written asnew LNumber(0).
๐ This changelog only includes changes from the 2.0 series. For older changes see the ๐ 1.x series changelog and the ๐ 0.9 series changelog.