├── .codeclimate.yml ├── .editorconfig ├── .github ├── CONTRIBUTING.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .pharcc.yml ├── .phpsa.yml ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── bin └── phpsa ├── composer.json ├── docs ├── 01_Installation.md ├── 02_Usage.md ├── 03_Configuration.md ├── 04_Components.md ├── 05_Analyzers.md ├── 06_HowTo_Own_Analyzer.md └── 07_Plugins.md ├── fixtures ├── Compiling │ ├── Expression │ │ ├── StaticCall.php │ │ └── TryCatch.php │ ├── Ignore │ │ └── dontIgnoreAtAll.php │ └── statements │ │ ├── Do_.php │ │ ├── MultiplePropertiesDefinition.php │ │ ├── SinglePropertyDefinition.php │ │ └── While_.php ├── Ignore │ └── simple │ │ └── IgnoreThis.php ├── not-implemented │ └── method.php └── simple │ ├── code-smell │ ├── Cast.php │ ├── DivisionZero.php │ ├── If_.php │ ├── InfinityIfLoop.php │ ├── InfinityWhileLoop.php │ ├── StandardFunctionCall.php │ └── SwitchCase.php │ ├── syntax │ ├── Error.php │ └── Error2.php │ ├── tests │ └── PossibleReturn.php │ ├── undefined │ ├── Const.php │ ├── FCall.php │ ├── LocalVariable.php │ ├── MCall.php │ ├── NsConst.php │ ├── Property.php │ └── SCall.php │ └── unused │ └── Variable.php ├── phpcs.xml.dist ├── phpmd.xml.dist ├── phpunit.xml.dist ├── plugins └── codeclimate │ ├── Dockerfile │ ├── engine.json │ └── phpsa ├── sandbox └── Test.php ├── src ├── AliasManager.php ├── Analyzer.php ├── Analyzer │ ├── EventListener │ │ ├── ExpressionListener.php │ │ ├── ScalarListener.php │ │ └── StatementListener.php │ ├── Factory.php │ ├── Helper │ │ ├── DefaultMetadataPassTrait.php │ │ ├── Inflector.php │ │ └── ResolveExpressionTrait.php │ └── Pass │ │ ├── AnalyzerPassInterface.php │ │ ├── Expression │ │ ├── ArrayDuplicateKeys.php │ │ ├── ArrayIllegalOffsetType.php │ │ ├── ArrayShortDefinition.php │ │ ├── AssignRefNew.php │ │ ├── BacktickUsage.php │ │ ├── Casts.php │ │ ├── CompareWithArray.php │ │ ├── DivisionByOne.php │ │ ├── DivisionFromZero.php │ │ ├── DuplicatedVariablesInUseClosure.php │ │ ├── ErrorSuppression.php │ │ ├── EvalUsage.php │ │ ├── ExitUsage.php │ │ ├── FinalStaticUsage.php │ │ ├── FunctionCall │ │ │ ├── AbstractFunctionCallAnalyzer.php │ │ │ ├── AliasCheck.php │ │ │ ├── ArgumentUnpacking.php │ │ │ ├── DebugCode.php │ │ │ ├── DeprecatedFunctions.php │ │ │ ├── DeprecatedIniOptions.php │ │ │ ├── FunctionStringFormater.php │ │ │ ├── PassFunctionCallInterface.php │ │ │ ├── RandomApiMigration.php │ │ │ ├── RegularExpressions.php │ │ │ ├── SleepUsage.php │ │ │ ├── UnsafeUnserialize.php │ │ │ └── UseCast.php │ │ ├── LogicInversion.php │ │ ├── MultipleUnaryOperators.php │ │ ├── NestedTernary.php │ │ ├── StupidUnaryOperators.php │ │ └── VariableVariableUsage.php │ │ ├── Metadata.php │ │ ├── Scalar │ │ └── CheckLNumberKind.php │ │ └── Statement │ │ ├── AssignmentInCondition.php │ │ ├── ConstantNaming.php │ │ ├── FixedCondition.php │ │ ├── ForCondition.php │ │ ├── GlobalUsage.php │ │ ├── GotoUsage.php │ │ ├── HasMoreThanOneProperty.php │ │ ├── InlineHtmlUsage.php │ │ ├── MagicMethodParameters.php │ │ ├── MethodCannotReturn.php │ │ ├── MissingBody.php │ │ ├── MissingBreakStatement.php │ │ ├── MissingDocblock.php │ │ ├── MissingVisibility.php │ │ ├── OldConstructor.php │ │ ├── OptionalParamBeforeRequired.php │ │ ├── PropertyDefinitionDefaultValue.php │ │ ├── ReturnAndYieldInOneMethod.php │ │ ├── ReturnVoid.php │ │ ├── StaticUsage.php │ │ ├── TestAnnotation.php │ │ ├── UnexpectedUseOfThis.php │ │ └── YodaCondition.php ├── Application.php ├── Check.php ├── Command │ ├── AbstractCommand.php │ ├── CheckCommand.php │ ├── CompileCommand.php │ ├── DumpDocumentationCommand.php │ ├── DumpReferenceCommand.php │ └── PrintCFGCommand.php ├── CompiledExpression.php ├── Compiler.php ├── Compiler │ ├── DefinitionVisitor.php │ ├── Event │ │ ├── ExpressionBeforeCompile.php │ │ ├── ScalarBeforeCompile.php │ │ └── StatementBeforeCompile.php │ ├── Expression.php │ ├── Expression │ │ ├── AbstractExpressionCompiler.php │ │ ├── ArrayDimFetch.php │ │ ├── ArrayOp.php │ │ ├── Assign.php │ │ ├── AssignOp │ │ │ ├── BitwiseAnd.php │ │ │ ├── BitwiseOr.php │ │ │ ├── BitwiseXor.php │ │ │ ├── Concat.php │ │ │ ├── Div.php │ │ │ ├── Minus.php │ │ │ ├── Mod.php │ │ │ ├── Mul.php │ │ │ ├── Plus.php │ │ │ ├── Pow.php │ │ │ ├── ShiftLeft.php │ │ │ └── ShiftRight.php │ │ ├── AssignRef.php │ │ ├── BinaryOp │ │ │ ├── Coalesce.php │ │ │ ├── Equal.php │ │ │ ├── Identical.php │ │ │ ├── NotEqual.php │ │ │ ├── NotIdentical.php │ │ │ └── SpaceShip.php │ │ ├── Casts │ │ │ ├── ArrayCast.php │ │ │ ├── BoolCast.php │ │ │ ├── DoubleCast.php │ │ │ ├── IntCast.php │ │ │ ├── ObjectCast.php │ │ │ ├── StringCast.php │ │ │ └── UnsetCast.php │ │ ├── ClassConstFetch.php │ │ ├── CloneOp.php │ │ ├── Closure.php │ │ ├── ConstFetch.php │ │ ├── EmptyOp.php │ │ ├── ErrorSuppress.php │ │ ├── EvalOp.php │ │ ├── ExitOp.php │ │ ├── FunctionCall.php │ │ ├── IncludeOp.php │ │ ├── IssetOp.php │ │ ├── MethodCall.php │ │ ├── Operators │ │ │ ├── Arithmetical │ │ │ │ ├── Div.php │ │ │ │ ├── Minus.php │ │ │ │ ├── Mod.php │ │ │ │ ├── Mul.php │ │ │ │ ├── Plus.php │ │ │ │ └── Pow.php │ │ │ ├── Bitwise │ │ │ │ ├── BitwiseAnd.php │ │ │ │ ├── BitwiseNot.php │ │ │ │ ├── BitwiseOr.php │ │ │ │ ├── BitwiseXor.php │ │ │ │ ├── ShiftLeft.php │ │ │ │ └── ShiftRight.php │ │ │ ├── Comparison │ │ │ │ ├── AbstractOperator.php │ │ │ │ ├── Greater.php │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ ├── Smaller.php │ │ │ │ └── SmallerOrEqual.php │ │ │ ├── Concat.php │ │ │ ├── InstanceOfOp.php │ │ │ ├── Logical │ │ │ │ ├── BooleanAnd.php │ │ │ │ ├── BooleanNot.php │ │ │ │ ├── BooleanOr.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalOr.php │ │ │ │ └── LogicalXor.php │ │ │ ├── NewOp.php │ │ │ ├── PostDec.php │ │ │ ├── PostInc.php │ │ │ ├── PreDec.php │ │ │ ├── PreInc.php │ │ │ ├── UnaryMinus.php │ │ │ └── UnaryPlus.php │ │ ├── PrintOp.php │ │ ├── PropertyFetch.php │ │ ├── ShellExec.php │ │ ├── StaticCall.php │ │ ├── StaticPropertyFetch.php │ │ ├── Ternary.php │ │ ├── Variable.php │ │ ├── YieldFrom.php │ │ └── YieldOp.php │ ├── ExpressionCompilerInterface.php │ ├── GlobalVariable.php │ ├── NameResolveVisitor.php │ ├── Parameter.php │ ├── Scalar.php │ ├── Statement.php │ ├── Statement │ │ ├── AbstractCompiler.php │ │ ├── BreakSt.php │ │ ├── CaseSt.php │ │ ├── CatchSt.php │ │ ├── ConstSt.php │ │ ├── ContinueSt.php │ │ ├── DeclareSt.php │ │ ├── DoSt.php │ │ ├── EchoSt.php │ │ ├── ElseIfSt.php │ │ ├── ElseSt.php │ │ ├── FinallySt.php │ │ ├── ForSt.php │ │ ├── ForeachSt.php │ │ ├── GlobalSt.php │ │ ├── IfSt.php │ │ ├── ReturnSt.php │ │ ├── StaticSt.php │ │ ├── SwitchSt.php │ │ ├── ThrowSt.php │ │ ├── TryCatchSt.php │ │ ├── UnsetSt.php │ │ └── WhileSt.php │ ├── StatementCompilerInterface.php │ ├── SymbolTable.php │ └── Types.php ├── Configuration.php ├── ConfigurationLoader.php ├── Context.php ├── ControlFlow │ ├── Block.php │ ├── BlockTraverser.php │ ├── ControlFlowGraph.php │ ├── Node │ │ ├── AbstractNode.php │ │ ├── AssignNode.php │ │ ├── ExitNode.php │ │ ├── Expr │ │ │ ├── BinaryOp │ │ │ │ ├── AbstractBinaryOp.php │ │ │ │ ├── Equal.php │ │ │ │ ├── Greater.php │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ ├── Identical.php │ │ │ │ ├── NotEqual.php │ │ │ │ ├── NotIdentical.php │ │ │ │ ├── Smaller.php │ │ │ │ └── SmallerOrEqual.php │ │ │ └── InstanceOfExpr.php │ │ ├── JumpIfNode.php │ │ ├── JumpNode.php │ │ ├── ReturnNode.php │ │ ├── ThrowNode.php │ │ └── UnknownNode.php │ ├── Printer │ │ └── DebugText.php │ └── Visitor │ │ ├── AbstractVisitor.php │ │ ├── DebugTextVisitor.php │ │ └── UnreachableVisitor.php ├── Definition │ ├── AbstractDefinition.php │ ├── ClassDefinition.php │ ├── ClassMethod.php │ ├── ClosureDefinition.php │ ├── FileParser.php │ ├── FunctionDefinition.php │ ├── ParentDefinition.php │ ├── ReflectionClassMethod.php │ ├── RuntimeClassDefinition.php │ └── TraitDefinition.php ├── Exception.php ├── Exception │ ├── NotImplementedException.php │ └── RuntimeException.php ├── Issue.php ├── IssueLocation.php ├── IssuesCollector.php ├── Node │ └── Scalar │ │ ├── Boolean.php │ │ ├── Fake.php │ │ └── Nil.php ├── ScopePointer.php ├── Variable.php └── functions.php └── tests ├── PHPSA ├── AliasManagerTest.php ├── AnalyzeFixturesTest.php ├── Analyzer │ └── Helper │ │ └── ResolveExpressionTraitTest.php ├── ApplicationTest.php ├── Command │ ├── CheckTest.php │ ├── CompileTest.php │ ├── DumpDocumentationTest.php │ └── DumpReferenceTest.php ├── CompiledExpressionTest.php ├── Compiler │ ├── Expression │ │ ├── AbstractBinaryOp.php │ │ ├── AbstractUnaryOp.php │ │ ├── ArrayTest.php │ │ ├── AssignOp │ │ │ ├── BitwiseAndTest.php │ │ │ ├── BitwiseOrTest.php │ │ │ ├── BitwiseXorTest.php │ │ │ ├── ConcatTest.php │ │ │ ├── DivTest.php │ │ │ ├── MinusTest.php │ │ │ ├── ModTest.php │ │ │ ├── MulTest.php │ │ │ ├── PlusTest.php │ │ │ ├── PowTest.php │ │ │ ├── ShiftLeftTest.php │ │ │ └── ShiftRightTest.php │ │ ├── BinaryOp │ │ │ ├── CoalesceTest.php │ │ │ ├── EqualTest.php │ │ │ ├── IdenticalTest.php │ │ │ ├── NotEqualTest.php │ │ │ ├── NotIdenticalTest.php │ │ │ └── SpaceShipTest.php │ │ ├── Casts │ │ │ ├── ArrayCastTest.php │ │ │ ├── BoolCastTest.php │ │ │ ├── DoubleCastTest.php │ │ │ ├── IntCastTest.php │ │ │ ├── ObjectCastTest.php │ │ │ ├── StringCastTest.php │ │ │ └── UnsetCastTest.php │ │ ├── CloneTest.php │ │ ├── EmptyTest.php │ │ ├── ErrorSuppressTest.php │ │ ├── EvalTest.php │ │ ├── ExitTest.php │ │ ├── ExpressionCompilerTest.php │ │ ├── IssetTest.php │ │ ├── Operators │ │ │ ├── Arithmetical │ │ │ │ ├── AbstractDivMod.php │ │ │ │ ├── DivTest.php │ │ │ │ ├── MinusTest.php │ │ │ │ ├── ModTest.php │ │ │ │ ├── MulTest.php │ │ │ │ ├── PlusTest.php │ │ │ │ └── PowTest.php │ │ │ ├── Bitwise │ │ │ │ ├── BitwiseAndTest.php │ │ │ │ ├── BitwiseNotTest.php │ │ │ │ ├── BitwiseOrTest.php │ │ │ │ ├── BitwiseXorTest.php │ │ │ │ ├── ShiftLeftTest.php │ │ │ │ └── ShiftRightTest.php │ │ │ ├── Comparison │ │ │ │ ├── BaseTestCase.php │ │ │ │ ├── GreaterOrEqualTest.php │ │ │ │ ├── GreaterTest.php │ │ │ │ ├── SmallerOrEqualTest.php │ │ │ │ └── SmallerTest.php │ │ │ ├── ConcatTest.php │ │ │ ├── Logical │ │ │ │ ├── BooleanAndTest.php │ │ │ │ ├── BooleanNotTest.php │ │ │ │ ├── BooleanOrTest.php │ │ │ │ ├── LogicalAndTest.php │ │ │ │ ├── LogicalOrTest.php │ │ │ │ └── LogicalXorTest.php │ │ │ ├── PostDecTest.php │ │ │ ├── PostIncTest.php │ │ │ ├── PreDecTest.php │ │ │ ├── PreIncTest.php │ │ │ ├── UnaryMinusTest.php │ │ │ └── UnaryPlusTest.php │ │ ├── PrintTest.php │ │ ├── ScalarsTest.php │ │ └── TernaryTest.php │ ├── Statement │ │ ├── DoTest.php │ │ ├── EchoTest.php │ │ ├── ElseIfTest.php │ │ ├── ElseTest.php │ │ ├── ForTest.php │ │ ├── IfTest.php │ │ └── WhileTest.php │ └── TypesTest.php ├── CompilingFixturesTest.php ├── ContextTest.php ├── Defintion │ ├── ClassDefintionTest.php │ └── RuntimeClassDefintionTest.php ├── IssuesCollectorTest.php ├── ScopePointerTest.php ├── TestCase.php ├── TestCaseTest.php └── VariableTest.php ├── analyze-fixtures ├── Expression │ ├── ArrayDuplicateKeys.php │ ├── ArrayIllegalOffsetType.php │ ├── ArrayShortDefinition.php │ ├── AssignRefNew.php │ ├── BacktickUsage.php │ ├── Casts.php │ ├── CompareWithArray.php │ ├── DivisionByOne.php │ ├── DivisionFromZero.php │ ├── DuplicatedVariablesInUseClosure.php │ ├── ErrorSuppression.php │ ├── EvalUsage.php │ ├── ExitUsage.php │ ├── FinalStaticUsage.php │ ├── FunctionCall │ │ ├── AliasCheck.php │ │ ├── ArgumentUnpacking.php │ │ ├── DebugCode.php │ │ ├── DeprecatedFunctions.php │ │ ├── DeprecatedIniOptions.php │ │ ├── FunctionStringFormater.php │ │ ├── RandomApiMigration.php │ │ ├── RegularExpressions.php │ │ ├── SleepUsage.php │ │ ├── UnsafeUnserialize.php │ │ └── UseCast.php │ ├── LogicInversion.php │ ├── MultipleUnaryOperators.php │ ├── NestedTernary.php │ ├── StupidUnaryOperators.php │ └── VariableVariableUsage.php ├── Scalar │ └── CheckLNumberKind.php └── Statement │ ├── AssignmentInCondition.php │ ├── ConstantNaming.php │ ├── ForCondition.php │ ├── GlobalUsage.php │ ├── GotoUsage.php │ ├── InlineHtmlUsage.php │ ├── MagicMethodParameters.php │ ├── MethodCannotReturn.php │ ├── MissingBody.php │ ├── MissingBreakStatement.php │ ├── MissingDocblock.php │ ├── MissingVisibility.php │ ├── OldConstructor.php │ ├── OptionalParamBeforeRequired.php │ ├── PropertyDefinitionDefaultValue.php │ ├── ReturnAndYieldInOneMethod.php │ ├── ReturnVoid.php │ ├── StaticUsage.php │ ├── TestAnnotation.php │ ├── TestMultipleProperties.php │ ├── UnexpectedUseOfThis.php │ └── YodaCondition.php └── compiling-fixtures ├── MagicConst └── magic-line.php └── math ├── simple-1+1.php ├── simple-1+2.php ├── simple-ref-var+var.php └── simple-var+var.php /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/.gitignore -------------------------------------------------------------------------------- /.pharcc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/.pharcc.yml -------------------------------------------------------------------------------- /.phpsa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/.phpsa.yml -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/README.md -------------------------------------------------------------------------------- /bin/phpsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/bin/phpsa -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/composer.json -------------------------------------------------------------------------------- /docs/01_Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/docs/01_Installation.md -------------------------------------------------------------------------------- /docs/02_Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/docs/02_Usage.md -------------------------------------------------------------------------------- /docs/03_Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/docs/03_Configuration.md -------------------------------------------------------------------------------- /docs/04_Components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/docs/04_Components.md -------------------------------------------------------------------------------- /docs/05_Analyzers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/docs/05_Analyzers.md -------------------------------------------------------------------------------- /docs/06_HowTo_Own_Analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/docs/06_HowTo_Own_Analyzer.md -------------------------------------------------------------------------------- /docs/07_Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/docs/07_Plugins.md -------------------------------------------------------------------------------- /fixtures/Compiling/Expression/StaticCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/Compiling/Expression/StaticCall.php -------------------------------------------------------------------------------- /fixtures/Compiling/Expression/TryCatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/Compiling/Expression/TryCatch.php -------------------------------------------------------------------------------- /fixtures/Compiling/Ignore/dontIgnoreAtAll.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/Compiling/statements/Do_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/Compiling/statements/Do_.php -------------------------------------------------------------------------------- /fixtures/Compiling/statements/MultiplePropertiesDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/Compiling/statements/MultiplePropertiesDefinition.php -------------------------------------------------------------------------------- /fixtures/Compiling/statements/SinglePropertyDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/Compiling/statements/SinglePropertyDefinition.php -------------------------------------------------------------------------------- /fixtures/Compiling/statements/While_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/Compiling/statements/While_.php -------------------------------------------------------------------------------- /fixtures/Ignore/simple/IgnoreThis.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/not-implemented/method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/not-implemented/method.php -------------------------------------------------------------------------------- /fixtures/simple/code-smell/Cast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/code-smell/Cast.php -------------------------------------------------------------------------------- /fixtures/simple/code-smell/DivisionZero.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/code-smell/DivisionZero.php -------------------------------------------------------------------------------- /fixtures/simple/code-smell/If_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/code-smell/If_.php -------------------------------------------------------------------------------- /fixtures/simple/code-smell/InfinityIfLoop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/code-smell/InfinityIfLoop.php -------------------------------------------------------------------------------- /fixtures/simple/code-smell/InfinityWhileLoop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/code-smell/InfinityWhileLoop.php -------------------------------------------------------------------------------- /fixtures/simple/code-smell/StandardFunctionCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/code-smell/StandardFunctionCall.php -------------------------------------------------------------------------------- /fixtures/simple/code-smell/SwitchCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/code-smell/SwitchCase.php -------------------------------------------------------------------------------- /fixtures/simple/syntax/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/syntax/Error.php -------------------------------------------------------------------------------- /fixtures/simple/syntax/Error2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/syntax/Error2.php -------------------------------------------------------------------------------- /fixtures/simple/tests/PossibleReturn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/tests/PossibleReturn.php -------------------------------------------------------------------------------- /fixtures/simple/undefined/Const.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/undefined/Const.php -------------------------------------------------------------------------------- /fixtures/simple/undefined/FCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/undefined/FCall.php -------------------------------------------------------------------------------- /fixtures/simple/undefined/LocalVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/undefined/LocalVariable.php -------------------------------------------------------------------------------- /fixtures/simple/undefined/MCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/undefined/MCall.php -------------------------------------------------------------------------------- /fixtures/simple/undefined/NsConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/undefined/NsConst.php -------------------------------------------------------------------------------- /fixtures/simple/undefined/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/undefined/Property.php -------------------------------------------------------------------------------- /fixtures/simple/undefined/SCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/undefined/SCall.php -------------------------------------------------------------------------------- /fixtures/simple/unused/Variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/fixtures/simple/unused/Variable.php -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpmd.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/phpmd.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /plugins/codeclimate/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/plugins/codeclimate/Dockerfile -------------------------------------------------------------------------------- /plugins/codeclimate/engine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/plugins/codeclimate/engine.json -------------------------------------------------------------------------------- /plugins/codeclimate/phpsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/plugins/codeclimate/phpsa -------------------------------------------------------------------------------- /sandbox/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/sandbox/Test.php -------------------------------------------------------------------------------- /src/AliasManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/AliasManager.php -------------------------------------------------------------------------------- /src/Analyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer.php -------------------------------------------------------------------------------- /src/Analyzer/EventListener/ExpressionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/EventListener/ExpressionListener.php -------------------------------------------------------------------------------- /src/Analyzer/EventListener/ScalarListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/EventListener/ScalarListener.php -------------------------------------------------------------------------------- /src/Analyzer/EventListener/StatementListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/EventListener/StatementListener.php -------------------------------------------------------------------------------- /src/Analyzer/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Factory.php -------------------------------------------------------------------------------- /src/Analyzer/Helper/DefaultMetadataPassTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Helper/DefaultMetadataPassTrait.php -------------------------------------------------------------------------------- /src/Analyzer/Helper/Inflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Helper/Inflector.php -------------------------------------------------------------------------------- /src/Analyzer/Helper/ResolveExpressionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Helper/ResolveExpressionTrait.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/AnalyzerPassInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/AnalyzerPassInterface.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/ArrayDuplicateKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/ArrayDuplicateKeys.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/ArrayIllegalOffsetType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/ArrayIllegalOffsetType.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/ArrayShortDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/ArrayShortDefinition.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/AssignRefNew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/AssignRefNew.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/BacktickUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/BacktickUsage.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/Casts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/Casts.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/CompareWithArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/CompareWithArray.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/DivisionByOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/DivisionByOne.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/DivisionFromZero.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/DivisionFromZero.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/DuplicatedVariablesInUseClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/DuplicatedVariablesInUseClosure.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/ErrorSuppression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/ErrorSuppression.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/EvalUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/EvalUsage.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/ExitUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/ExitUsage.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FinalStaticUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FinalStaticUsage.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/AbstractFunctionCallAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/AbstractFunctionCallAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/AliasCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/AliasCheck.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/ArgumentUnpacking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/ArgumentUnpacking.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/DebugCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/DebugCode.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/DeprecatedFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/DeprecatedFunctions.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/DeprecatedIniOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/DeprecatedIniOptions.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/FunctionStringFormater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/FunctionStringFormater.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/PassFunctionCallInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/PassFunctionCallInterface.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/RandomApiMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/RandomApiMigration.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/RegularExpressions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/RegularExpressions.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/SleepUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/SleepUsage.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/UnsafeUnserialize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/UnsafeUnserialize.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/FunctionCall/UseCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/FunctionCall/UseCast.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/LogicInversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/LogicInversion.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/MultipleUnaryOperators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/MultipleUnaryOperators.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/NestedTernary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/NestedTernary.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/StupidUnaryOperators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/StupidUnaryOperators.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Expression/VariableVariableUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Expression/VariableVariableUsage.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Metadata.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Scalar/CheckLNumberKind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Scalar/CheckLNumberKind.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/AssignmentInCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/AssignmentInCondition.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/ConstantNaming.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/ConstantNaming.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/FixedCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/FixedCondition.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/ForCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/ForCondition.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/GlobalUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/GlobalUsage.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/GotoUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/GotoUsage.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/HasMoreThanOneProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/HasMoreThanOneProperty.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/InlineHtmlUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/InlineHtmlUsage.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/MagicMethodParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/MagicMethodParameters.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/MethodCannotReturn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/MethodCannotReturn.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/MissingBody.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/MissingBody.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/MissingBreakStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/MissingBreakStatement.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/MissingDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/MissingDocblock.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/MissingVisibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/MissingVisibility.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/OldConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/OldConstructor.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/OptionalParamBeforeRequired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/OptionalParamBeforeRequired.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/PropertyDefinitionDefaultValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/PropertyDefinitionDefaultValue.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/ReturnAndYieldInOneMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/ReturnAndYieldInOneMethod.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/ReturnVoid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/ReturnVoid.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/StaticUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/StaticUsage.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/TestAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/TestAnnotation.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/UnexpectedUseOfThis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/UnexpectedUseOfThis.php -------------------------------------------------------------------------------- /src/Analyzer/Pass/Statement/YodaCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Analyzer/Pass/Statement/YodaCondition.php -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Check.php -------------------------------------------------------------------------------- /src/Command/AbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Command/AbstractCommand.php -------------------------------------------------------------------------------- /src/Command/CheckCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Command/CheckCommand.php -------------------------------------------------------------------------------- /src/Command/CompileCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Command/CompileCommand.php -------------------------------------------------------------------------------- /src/Command/DumpDocumentationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Command/DumpDocumentationCommand.php -------------------------------------------------------------------------------- /src/Command/DumpReferenceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Command/DumpReferenceCommand.php -------------------------------------------------------------------------------- /src/Command/PrintCFGCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Command/PrintCFGCommand.php -------------------------------------------------------------------------------- /src/CompiledExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/CompiledExpression.php -------------------------------------------------------------------------------- /src/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler.php -------------------------------------------------------------------------------- /src/Compiler/DefinitionVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/DefinitionVisitor.php -------------------------------------------------------------------------------- /src/Compiler/Event/ExpressionBeforeCompile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Event/ExpressionBeforeCompile.php -------------------------------------------------------------------------------- /src/Compiler/Event/ScalarBeforeCompile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Event/ScalarBeforeCompile.php -------------------------------------------------------------------------------- /src/Compiler/Event/StatementBeforeCompile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Event/StatementBeforeCompile.php -------------------------------------------------------------------------------- /src/Compiler/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AbstractExpressionCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AbstractExpressionCompiler.php -------------------------------------------------------------------------------- /src/Compiler/Expression/ArrayDimFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/ArrayDimFetch.php -------------------------------------------------------------------------------- /src/Compiler/Expression/ArrayOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/ArrayOp.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Assign.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/BitwiseAnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/BitwiseAnd.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/BitwiseOr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/BitwiseOr.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/BitwiseXor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/BitwiseXor.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/Concat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/Concat.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/Div.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/Div.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/Minus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/Minus.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/Mod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/Mod.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/Mul.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/Mul.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/Plus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/Plus.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/Pow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/Pow.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/ShiftLeft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/ShiftLeft.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignOp/ShiftRight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignOp/ShiftRight.php -------------------------------------------------------------------------------- /src/Compiler/Expression/AssignRef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/AssignRef.php -------------------------------------------------------------------------------- /src/Compiler/Expression/BinaryOp/Coalesce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/BinaryOp/Coalesce.php -------------------------------------------------------------------------------- /src/Compiler/Expression/BinaryOp/Equal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/BinaryOp/Equal.php -------------------------------------------------------------------------------- /src/Compiler/Expression/BinaryOp/Identical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/BinaryOp/Identical.php -------------------------------------------------------------------------------- /src/Compiler/Expression/BinaryOp/NotEqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/BinaryOp/NotEqual.php -------------------------------------------------------------------------------- /src/Compiler/Expression/BinaryOp/NotIdentical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/BinaryOp/NotIdentical.php -------------------------------------------------------------------------------- /src/Compiler/Expression/BinaryOp/SpaceShip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/BinaryOp/SpaceShip.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Casts/ArrayCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Casts/ArrayCast.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Casts/BoolCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Casts/BoolCast.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Casts/DoubleCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Casts/DoubleCast.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Casts/IntCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Casts/IntCast.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Casts/ObjectCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Casts/ObjectCast.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Casts/StringCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Casts/StringCast.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Casts/UnsetCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Casts/UnsetCast.php -------------------------------------------------------------------------------- /src/Compiler/Expression/ClassConstFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/ClassConstFetch.php -------------------------------------------------------------------------------- /src/Compiler/Expression/CloneOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/CloneOp.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Closure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Closure.php -------------------------------------------------------------------------------- /src/Compiler/Expression/ConstFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/ConstFetch.php -------------------------------------------------------------------------------- /src/Compiler/Expression/EmptyOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/EmptyOp.php -------------------------------------------------------------------------------- /src/Compiler/Expression/ErrorSuppress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/ErrorSuppress.php -------------------------------------------------------------------------------- /src/Compiler/Expression/EvalOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/EvalOp.php -------------------------------------------------------------------------------- /src/Compiler/Expression/ExitOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/ExitOp.php -------------------------------------------------------------------------------- /src/Compiler/Expression/FunctionCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/FunctionCall.php -------------------------------------------------------------------------------- /src/Compiler/Expression/IncludeOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/IncludeOp.php -------------------------------------------------------------------------------- /src/Compiler/Expression/IssetOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/IssetOp.php -------------------------------------------------------------------------------- /src/Compiler/Expression/MethodCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/MethodCall.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Arithmetical/Div.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Arithmetical/Div.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Arithmetical/Minus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Arithmetical/Minus.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Arithmetical/Mod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Arithmetical/Mod.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Arithmetical/Mul.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Arithmetical/Mul.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Arithmetical/Plus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Arithmetical/Plus.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Arithmetical/Pow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Arithmetical/Pow.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Bitwise/BitwiseAnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Bitwise/BitwiseAnd.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Bitwise/BitwiseNot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Bitwise/BitwiseNot.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Bitwise/BitwiseOr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Bitwise/BitwiseOr.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Bitwise/BitwiseXor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Bitwise/BitwiseXor.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Bitwise/ShiftLeft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Bitwise/ShiftLeft.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Bitwise/ShiftRight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Bitwise/ShiftRight.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Comparison/AbstractOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Comparison/AbstractOperator.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Comparison/Greater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Comparison/Greater.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Comparison/GreaterOrEqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Comparison/GreaterOrEqual.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Comparison/Smaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Comparison/Smaller.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Comparison/SmallerOrEqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Comparison/SmallerOrEqual.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Concat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Concat.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/InstanceOfOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/InstanceOfOp.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Logical/BooleanAnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Logical/BooleanAnd.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Logical/BooleanNot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Logical/BooleanNot.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Logical/BooleanOr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Logical/BooleanOr.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Logical/LogicalAnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Logical/LogicalAnd.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Logical/LogicalOr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Logical/LogicalOr.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/Logical/LogicalXor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/Logical/LogicalXor.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/NewOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/NewOp.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/PostDec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/PostDec.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/PostInc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/PostInc.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/PreDec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/PreDec.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/PreInc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/PreInc.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/UnaryMinus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/UnaryMinus.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Operators/UnaryPlus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Operators/UnaryPlus.php -------------------------------------------------------------------------------- /src/Compiler/Expression/PrintOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/PrintOp.php -------------------------------------------------------------------------------- /src/Compiler/Expression/PropertyFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/PropertyFetch.php -------------------------------------------------------------------------------- /src/Compiler/Expression/ShellExec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/ShellExec.php -------------------------------------------------------------------------------- /src/Compiler/Expression/StaticCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/StaticCall.php -------------------------------------------------------------------------------- /src/Compiler/Expression/StaticPropertyFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/StaticPropertyFetch.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Ternary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Ternary.php -------------------------------------------------------------------------------- /src/Compiler/Expression/Variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/Variable.php -------------------------------------------------------------------------------- /src/Compiler/Expression/YieldFrom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/YieldFrom.php -------------------------------------------------------------------------------- /src/Compiler/Expression/YieldOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Expression/YieldOp.php -------------------------------------------------------------------------------- /src/Compiler/ExpressionCompilerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/ExpressionCompilerInterface.php -------------------------------------------------------------------------------- /src/Compiler/GlobalVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/GlobalVariable.php -------------------------------------------------------------------------------- /src/Compiler/NameResolveVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/NameResolveVisitor.php -------------------------------------------------------------------------------- /src/Compiler/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Parameter.php -------------------------------------------------------------------------------- /src/Compiler/Scalar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Scalar.php -------------------------------------------------------------------------------- /src/Compiler/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement.php -------------------------------------------------------------------------------- /src/Compiler/Statement/AbstractCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/AbstractCompiler.php -------------------------------------------------------------------------------- /src/Compiler/Statement/BreakSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/BreakSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/CaseSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/CaseSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/CatchSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/CatchSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/ConstSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/ConstSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/ContinueSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/ContinueSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/DeclareSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/DeclareSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/DoSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/DoSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/EchoSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/EchoSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/ElseIfSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/ElseIfSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/ElseSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/ElseSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/FinallySt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/FinallySt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/ForSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/ForSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/ForeachSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/ForeachSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/GlobalSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/GlobalSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/IfSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/IfSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/ReturnSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/ReturnSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/StaticSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/StaticSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/SwitchSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/SwitchSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/ThrowSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/ThrowSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/TryCatchSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/TryCatchSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/UnsetSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/UnsetSt.php -------------------------------------------------------------------------------- /src/Compiler/Statement/WhileSt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Statement/WhileSt.php -------------------------------------------------------------------------------- /src/Compiler/StatementCompilerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/StatementCompilerInterface.php -------------------------------------------------------------------------------- /src/Compiler/SymbolTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/SymbolTable.php -------------------------------------------------------------------------------- /src/Compiler/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Compiler/Types.php -------------------------------------------------------------------------------- /src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Configuration.php -------------------------------------------------------------------------------- /src/ConfigurationLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ConfigurationLoader.php -------------------------------------------------------------------------------- /src/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Context.php -------------------------------------------------------------------------------- /src/ControlFlow/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Block.php -------------------------------------------------------------------------------- /src/ControlFlow/BlockTraverser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/BlockTraverser.php -------------------------------------------------------------------------------- /src/ControlFlow/ControlFlowGraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/ControlFlowGraph.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/AbstractNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/AbstractNode.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/AssignNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/AssignNode.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/ExitNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/ExitNode.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/Expr/BinaryOp/AbstractBinaryOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/Expr/BinaryOp/AbstractBinaryOp.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/Expr/BinaryOp/Equal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/Expr/BinaryOp/Equal.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/Expr/BinaryOp/Greater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/Expr/BinaryOp/Greater.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/Expr/BinaryOp/GreaterOrEqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/Expr/BinaryOp/GreaterOrEqual.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/Expr/BinaryOp/Identical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/Expr/BinaryOp/Identical.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/Expr/BinaryOp/NotEqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/Expr/BinaryOp/NotEqual.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/Expr/BinaryOp/NotIdentical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/Expr/BinaryOp/NotIdentical.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/Expr/BinaryOp/Smaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/Expr/BinaryOp/Smaller.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/Expr/BinaryOp/SmallerOrEqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/Expr/BinaryOp/SmallerOrEqual.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/Expr/InstanceOfExpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/Expr/InstanceOfExpr.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/JumpIfNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/JumpIfNode.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/JumpNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/JumpNode.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/ReturnNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/ReturnNode.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/ThrowNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/ThrowNode.php -------------------------------------------------------------------------------- /src/ControlFlow/Node/UnknownNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Node/UnknownNode.php -------------------------------------------------------------------------------- /src/ControlFlow/Printer/DebugText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Printer/DebugText.php -------------------------------------------------------------------------------- /src/ControlFlow/Visitor/AbstractVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Visitor/AbstractVisitor.php -------------------------------------------------------------------------------- /src/ControlFlow/Visitor/DebugTextVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Visitor/DebugTextVisitor.php -------------------------------------------------------------------------------- /src/ControlFlow/Visitor/UnreachableVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ControlFlow/Visitor/UnreachableVisitor.php -------------------------------------------------------------------------------- /src/Definition/AbstractDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Definition/AbstractDefinition.php -------------------------------------------------------------------------------- /src/Definition/ClassDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Definition/ClassDefinition.php -------------------------------------------------------------------------------- /src/Definition/ClassMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Definition/ClassMethod.php -------------------------------------------------------------------------------- /src/Definition/ClosureDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Definition/ClosureDefinition.php -------------------------------------------------------------------------------- /src/Definition/FileParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Definition/FileParser.php -------------------------------------------------------------------------------- /src/Definition/FunctionDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Definition/FunctionDefinition.php -------------------------------------------------------------------------------- /src/Definition/ParentDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Definition/ParentDefinition.php -------------------------------------------------------------------------------- /src/Definition/ReflectionClassMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Definition/ReflectionClassMethod.php -------------------------------------------------------------------------------- /src/Definition/RuntimeClassDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Definition/RuntimeClassDefinition.php -------------------------------------------------------------------------------- /src/Definition/TraitDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Definition/TraitDefinition.php -------------------------------------------------------------------------------- /src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Exception.php -------------------------------------------------------------------------------- /src/Exception/NotImplementedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Exception/NotImplementedException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Issue.php -------------------------------------------------------------------------------- /src/IssueLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/IssueLocation.php -------------------------------------------------------------------------------- /src/IssuesCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/IssuesCollector.php -------------------------------------------------------------------------------- /src/Node/Scalar/Boolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Node/Scalar/Boolean.php -------------------------------------------------------------------------------- /src/Node/Scalar/Fake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Node/Scalar/Fake.php -------------------------------------------------------------------------------- /src/Node/Scalar/Nil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Node/Scalar/Nil.php -------------------------------------------------------------------------------- /src/ScopePointer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/ScopePointer.php -------------------------------------------------------------------------------- /src/Variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/Variable.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/src/functions.php -------------------------------------------------------------------------------- /tests/PHPSA/AliasManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/AliasManagerTest.php -------------------------------------------------------------------------------- /tests/PHPSA/AnalyzeFixturesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/AnalyzeFixturesTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Analyzer/Helper/ResolveExpressionTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Analyzer/Helper/ResolveExpressionTraitTest.php -------------------------------------------------------------------------------- /tests/PHPSA/ApplicationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/ApplicationTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Command/CheckTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Command/CheckTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Command/CompileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Command/CompileTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Command/DumpDocumentationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Command/DumpDocumentationTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Command/DumpReferenceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Command/DumpReferenceTest.php -------------------------------------------------------------------------------- /tests/PHPSA/CompiledExpressionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/CompiledExpressionTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AbstractBinaryOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AbstractBinaryOp.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AbstractUnaryOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AbstractUnaryOp.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/ArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/ArrayTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/BitwiseAndTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/BitwiseAndTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/BitwiseOrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/BitwiseOrTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/BitwiseXorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/BitwiseXorTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/ConcatTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/ConcatTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/DivTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/DivTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/MinusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/MinusTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/ModTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/ModTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/MulTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/MulTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/PlusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/PlusTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/PowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/PowTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/ShiftLeftTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/ShiftLeftTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/AssignOp/ShiftRightTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/AssignOp/ShiftRightTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/BinaryOp/CoalesceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/BinaryOp/CoalesceTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/BinaryOp/EqualTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/BinaryOp/EqualTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/BinaryOp/IdenticalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/BinaryOp/IdenticalTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/BinaryOp/NotEqualTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/BinaryOp/NotEqualTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/BinaryOp/NotIdenticalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/BinaryOp/NotIdenticalTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/BinaryOp/SpaceShipTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/BinaryOp/SpaceShipTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Casts/ArrayCastTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Casts/ArrayCastTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Casts/BoolCastTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Casts/BoolCastTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Casts/DoubleCastTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Casts/DoubleCastTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Casts/IntCastTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Casts/IntCastTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Casts/ObjectCastTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Casts/ObjectCastTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Casts/StringCastTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Casts/StringCastTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Casts/UnsetCastTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Casts/UnsetCastTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/CloneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/CloneTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/EmptyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/EmptyTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/ErrorSuppressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/ErrorSuppressTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/EvalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/EvalTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/ExitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/ExitTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/ExpressionCompilerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/ExpressionCompilerTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/IssetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/IssetTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Arithmetical/AbstractDivMod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Arithmetical/AbstractDivMod.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Arithmetical/DivTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Arithmetical/DivTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Arithmetical/MinusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Arithmetical/MinusTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Arithmetical/ModTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Arithmetical/ModTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Arithmetical/MulTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Arithmetical/MulTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Arithmetical/PlusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Arithmetical/PlusTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Arithmetical/PowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Arithmetical/PowTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Bitwise/BitwiseAndTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Bitwise/BitwiseAndTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Bitwise/BitwiseNotTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Bitwise/BitwiseNotTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Bitwise/BitwiseOrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Bitwise/BitwiseOrTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Bitwise/BitwiseXorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Bitwise/BitwiseXorTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Bitwise/ShiftLeftTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Bitwise/ShiftLeftTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Bitwise/ShiftRightTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Bitwise/ShiftRightTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Comparison/BaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Comparison/BaseTestCase.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Comparison/GreaterOrEqualTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Comparison/GreaterOrEqualTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Comparison/GreaterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Comparison/GreaterTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Comparison/SmallerOrEqualTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Comparison/SmallerOrEqualTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Comparison/SmallerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Comparison/SmallerTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/ConcatTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/ConcatTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Logical/BooleanAndTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Logical/BooleanAndTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Logical/BooleanNotTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Logical/BooleanNotTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Logical/BooleanOrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Logical/BooleanOrTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Logical/LogicalAndTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Logical/LogicalAndTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Logical/LogicalOrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Logical/LogicalOrTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/Logical/LogicalXorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/Logical/LogicalXorTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/PostDecTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/PostDecTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/PostIncTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/PostIncTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/PreDecTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/PreDecTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/PreIncTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/PreIncTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/UnaryMinusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/UnaryMinusTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/Operators/UnaryPlusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/Operators/UnaryPlusTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/PrintTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/PrintTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/ScalarsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/ScalarsTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Expression/TernaryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Expression/TernaryTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Statement/DoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Statement/DoTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Statement/EchoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Statement/EchoTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Statement/ElseIfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Statement/ElseIfTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Statement/ElseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Statement/ElseTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Statement/ForTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Statement/ForTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Statement/IfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Statement/IfTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/Statement/WhileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/Statement/WhileTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Compiler/TypesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Compiler/TypesTest.php -------------------------------------------------------------------------------- /tests/PHPSA/CompilingFixturesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/CompilingFixturesTest.php -------------------------------------------------------------------------------- /tests/PHPSA/ContextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/ContextTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Defintion/ClassDefintionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Defintion/ClassDefintionTest.php -------------------------------------------------------------------------------- /tests/PHPSA/Defintion/RuntimeClassDefintionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/Defintion/RuntimeClassDefintionTest.php -------------------------------------------------------------------------------- /tests/PHPSA/IssuesCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/IssuesCollectorTest.php -------------------------------------------------------------------------------- /tests/PHPSA/ScopePointerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/ScopePointerTest.php -------------------------------------------------------------------------------- /tests/PHPSA/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/TestCase.php -------------------------------------------------------------------------------- /tests/PHPSA/TestCaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/TestCaseTest.php -------------------------------------------------------------------------------- /tests/PHPSA/VariableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/PHPSA/VariableTest.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/ArrayDuplicateKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/ArrayDuplicateKeys.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/ArrayIllegalOffsetType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/ArrayIllegalOffsetType.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/ArrayShortDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/ArrayShortDefinition.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/AssignRefNew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/AssignRefNew.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/BacktickUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/BacktickUsage.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/Casts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/Casts.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/CompareWithArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/CompareWithArray.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/DivisionByOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/DivisionByOne.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/DivisionFromZero.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/DivisionFromZero.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/DuplicatedVariablesInUseClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/DuplicatedVariablesInUseClosure.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/ErrorSuppression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/ErrorSuppression.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/EvalUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/EvalUsage.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/ExitUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/ExitUsage.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FinalStaticUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FinalStaticUsage.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FunctionCall/AliasCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FunctionCall/AliasCheck.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FunctionCall/ArgumentUnpacking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FunctionCall/ArgumentUnpacking.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FunctionCall/DebugCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FunctionCall/DebugCode.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FunctionCall/DeprecatedFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FunctionCall/DeprecatedFunctions.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FunctionCall/DeprecatedIniOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FunctionCall/DeprecatedIniOptions.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FunctionCall/FunctionStringFormater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FunctionCall/FunctionStringFormater.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FunctionCall/RandomApiMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FunctionCall/RandomApiMigration.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FunctionCall/RegularExpressions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FunctionCall/RegularExpressions.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FunctionCall/SleepUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FunctionCall/SleepUsage.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FunctionCall/UnsafeUnserialize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FunctionCall/UnsafeUnserialize.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/FunctionCall/UseCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/FunctionCall/UseCast.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/LogicInversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/LogicInversion.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/MultipleUnaryOperators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/MultipleUnaryOperators.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/NestedTernary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/NestedTernary.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/StupidUnaryOperators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/StupidUnaryOperators.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Expression/VariableVariableUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Expression/VariableVariableUsage.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Scalar/CheckLNumberKind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Scalar/CheckLNumberKind.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/AssignmentInCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/AssignmentInCondition.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/ConstantNaming.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/ConstantNaming.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/ForCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/ForCondition.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/GlobalUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/GlobalUsage.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/GotoUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/GotoUsage.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/InlineHtmlUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/InlineHtmlUsage.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/MagicMethodParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/MagicMethodParameters.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/MethodCannotReturn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/MethodCannotReturn.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/MissingBody.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/MissingBody.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/MissingBreakStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/MissingBreakStatement.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/MissingDocblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/MissingDocblock.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/MissingVisibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/MissingVisibility.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/OldConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/OldConstructor.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/OptionalParamBeforeRequired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/OptionalParamBeforeRequired.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/PropertyDefinitionDefaultValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/PropertyDefinitionDefaultValue.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/ReturnAndYieldInOneMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/ReturnAndYieldInOneMethod.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/ReturnVoid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/ReturnVoid.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/StaticUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/StaticUsage.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/TestAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/TestAnnotation.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/TestMultipleProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/TestMultipleProperties.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/UnexpectedUseOfThis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/UnexpectedUseOfThis.php -------------------------------------------------------------------------------- /tests/analyze-fixtures/Statement/YodaCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/analyze-fixtures/Statement/YodaCondition.php -------------------------------------------------------------------------------- /tests/compiling-fixtures/MagicConst/magic-line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/compiling-fixtures/MagicConst/magic-line.php -------------------------------------------------------------------------------- /tests/compiling-fixtures/math/simple-1+1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/compiling-fixtures/math/simple-1+1.php -------------------------------------------------------------------------------- /tests/compiling-fixtures/math/simple-1+2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/compiling-fixtures/math/simple-1+2.php -------------------------------------------------------------------------------- /tests/compiling-fixtures/math/simple-ref-var+var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/compiling-fixtures/math/simple-ref-var+var.php -------------------------------------------------------------------------------- /tests/compiling-fixtures/math/simple-var+var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovr/phpsa/HEAD/tests/compiling-fixtures/math/simple-var+var.php --------------------------------------------------------------------------------