Releases: permafrost-dev/php-code-search
Releases · permafrost-dev/php-code-search
1.8.0
static()
supports searching for static property accesses likeSomeClass::$myProperty
ormyProperty
- major internal refactoring of nodes
- nodes now have a location property
1.7.0
- use latest version of
code-snippets
- implement multi-line highlighting for code snippets
1.6.5
- fix typehint issue
1.6.4
- use the
permafrost-dev/code-snippets
package
1.6.3
- add
getLineNumber
helper method to theCodeSnippet
class
1.6.2
- fix additional issues with node names
1.6.1
- fix issue with function call node names
1.6.0
- all function call, static method call, method call nodes have an
args
property containing the value node(s) of the parsed arguments. - assignment nodes now have a
value
property andvalue()
method. - strings and numbers are converted to
StringNode
andNumberNode
nodes, respectively. - most values converted to Node classes that implement either
ResultNode
,ValueNode
, or both. - operations (addition, concat, etc.) converted to Node classes that implement
OperationNode
. - fixed several bugs related to non-matches being returned as matches.
1.5.3
- fix issues with
Assignment
nodes
1.5.2
- fix issues with
Array
,ArrayItem
andArrayDimFetch
nodes