├── .gitignore ├── Diagram.png ├── Dockerfile ├── README.md ├── TDD Microservice.xml ├── docker-compose.yaml ├── financial ├── .gitignore ├── application │ ├── .htaccess │ ├── cache │ │ └── index.html │ ├── config │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── foreign_chars.php │ │ ├── hooks.php │ │ ├── index.html │ │ ├── memcached.php │ │ ├── migration.php │ │ ├── mimes.php │ │ ├── profiler.php │ │ ├── routes.php │ │ ├── smileys.php │ │ ├── testing │ │ │ └── database.php │ │ └── user_agents.php │ ├── controllers │ │ ├── Invoice.php │ │ ├── Migrate.php │ │ ├── Welcome.php │ │ └── index.html │ ├── core │ │ └── index.html │ ├── database │ │ └── data.db │ ├── helpers │ │ ├── index.html │ │ └── invoice_helper.php │ ├── hooks │ │ └── index.html │ ├── index.html │ ├── language │ │ ├── english │ │ │ └── index.html │ │ └── index.html │ ├── libraries │ │ └── index.html │ ├── logs │ │ └── index.html │ ├── migrations │ │ └── 001_add_invoice.php │ ├── models │ │ ├── Invoice_model.php │ │ └── index.html │ ├── tests │ │ ├── .gitignore │ │ ├── Bootstrap.php │ │ ├── DbTestCase.php │ │ ├── TestCase.php │ │ ├── UnitTestCase.php │ │ ├── _ci_phpunit_test │ │ │ ├── CIPHPUnitTest.php │ │ │ ├── CIPHPUnitTestAutoloader.php │ │ │ ├── CIPHPUnitTestCase.php │ │ │ ├── CIPHPUnitTestDbConnectionStore.php │ │ │ ├── CIPHPUnitTestDbTestCase.php │ │ │ ├── CIPHPUnitTestDouble.php │ │ │ ├── CIPHPUnitTestFileCache.php │ │ │ ├── CIPHPUnitTestNullCodeIgniter.php │ │ │ ├── CIPHPUnitTestReflection.php │ │ │ ├── CIPHPUnitTestRequest.php │ │ │ ├── CIPHPUnitTestRouter.php │ │ │ ├── CIPHPUnitTestSuperGlobal.php │ │ │ ├── CIPHPUnitTestUnitTestCase.php │ │ │ ├── ChangeLog.md │ │ │ ├── TestSuiteProvider.php │ │ │ ├── alias │ │ │ │ ├── MonkeyPatch.php │ │ │ │ └── ReflectionHelper.php │ │ │ ├── autoloader.php │ │ │ ├── exceptions │ │ │ │ ├── CIPHPUnitTestExitException.php │ │ │ │ ├── CIPHPUnitTestRedirectException.php │ │ │ │ ├── CIPHPUnitTestShow404Exception.php │ │ │ │ └── CIPHPUnitTestShowErrorException.php │ │ │ ├── functions.php │ │ │ ├── patcher │ │ │ │ ├── 2.x │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── ExitException.php │ │ │ │ │ ├── MonkeyPatchManager.php │ │ │ │ │ └── Patcher │ │ │ │ │ │ ├── AbstractPatcher.php │ │ │ │ │ │ ├── Backtrace.php │ │ │ │ │ │ ├── ConstantPatcher.php │ │ │ │ │ │ ├── ConstantPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── Proxy.php │ │ │ │ │ │ ├── ExitPatcher.php │ │ │ │ │ │ ├── FunctionPatcher.php │ │ │ │ │ │ ├── FunctionPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── Proxy.php │ │ │ │ │ │ ├── MethodPatcher.php │ │ │ │ │ │ └── MethodPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── PatchManager.php │ │ │ │ ├── 3.x │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── ExitException.php │ │ │ │ │ ├── MonkeyPatchManager.php │ │ │ │ │ └── Patcher │ │ │ │ │ │ ├── AbstractPatcher.php │ │ │ │ │ │ ├── Backtrace.php │ │ │ │ │ │ ├── ConstantPatcher.php │ │ │ │ │ │ ├── ConstantPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── Proxy.php │ │ │ │ │ │ ├── ExitPatcher.php │ │ │ │ │ │ ├── FunctionPatcher.php │ │ │ │ │ │ ├── FunctionPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── Proxy.php │ │ │ │ │ │ ├── MethodPatcher.php │ │ │ │ │ │ └── MethodPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── PatchManager.php │ │ │ │ ├── Cache.php │ │ │ │ ├── IncludeStream.php │ │ │ │ ├── InvocationVerifier.php │ │ │ │ ├── MonkeyPatch.php │ │ │ │ ├── PathChecker.php │ │ │ │ ├── bootstrap.php │ │ │ │ ├── functions │ │ │ │ │ └── exit__.php │ │ │ │ └── third_party │ │ │ │ │ ├── PHP-Parser-2.1.1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── UPGRADE-1.0.md │ │ │ │ │ ├── UPGRADE-2.0.md │ │ │ │ │ ├── bin │ │ │ │ │ │ └── php-parse │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── 0_Introduction.markdown │ │ │ │ │ │ ├── 2_Usage_of_basic_components.markdown │ │ │ │ │ │ ├── 3_Other_node_tree_representations.markdown │ │ │ │ │ │ ├── 4_Code_generation.markdown │ │ │ │ │ │ └── component │ │ │ │ │ │ │ ├── Error.markdown │ │ │ │ │ │ │ └── Lexer.markdown │ │ │ │ │ ├── grammar │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── analyze.php │ │ │ │ │ │ ├── parser.template │ │ │ │ │ │ ├── php5.y │ │ │ │ │ │ ├── php7.y │ │ │ │ │ │ ├── rebuildParsers.php │ │ │ │ │ │ ├── tokens.template │ │ │ │ │ │ └── tokens.y │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── PhpParser │ │ │ │ │ │ │ ├── Autoloader.php │ │ │ │ │ │ │ ├── Builder.php │ │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ ├── Declaration.php │ │ │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ │ │ └── Use_.php │ │ │ │ │ │ │ ├── BuilderAbstract.php │ │ │ │ │ │ │ ├── BuilderFactory.php │ │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ │ ├── Comment │ │ │ │ │ │ │ │ └── Doc.php │ │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ │ ├── Lexer.php │ │ │ │ │ │ │ ├── Lexer │ │ │ │ │ │ │ │ └── Emulative.php │ │ │ │ │ │ │ ├── Node.php │ │ │ │ │ │ │ ├── Node │ │ │ │ │ │ │ │ ├── Arg.php │ │ │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ │ │ ├── Expr │ │ │ │ │ │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ │ │ │ │ │ ├── ArrayItem.php │ │ │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ │ │ ├── Assign.php │ │ │ │ │ │ │ │ │ ├── AssignOp.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.php │ │ │ │ │ │ │ │ │ ├── BinaryOp │ │ │ │ │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ │ │ │ │ ├── Equal.php │ │ │ │ │ │ │ │ │ │ ├── Greater.php │ │ │ │ │ │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ │ │ │ │ │ ├── Identical.php │ │ │ │ │ │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ │ │ │ │ │ ├── Smaller.php │ │ │ │ │ │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ │ │ │ │ │ └── Spaceship.php │ │ │ │ │ │ │ │ │ ├── BitwiseNot.php │ │ │ │ │ │ │ │ │ ├── BooleanNot.php │ │ │ │ │ │ │ │ │ ├── Cast.php │ │ │ │ │ │ │ │ │ ├── Cast │ │ │ │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ │ │ │ ├── Bool_.php │ │ │ │ │ │ │ │ │ │ ├── Double.php │ │ │ │ │ │ │ │ │ │ ├── Int_.php │ │ │ │ │ │ │ │ │ │ ├── Object_.php │ │ │ │ │ │ │ │ │ │ ├── String_.php │ │ │ │ │ │ │ │ │ │ └── Unset_.php │ │ │ │ │ │ │ │ │ ├── ClassConstFetch.php │ │ │ │ │ │ │ │ │ ├── Clone_.php │ │ │ │ │ │ │ │ │ ├── Closure.php │ │ │ │ │ │ │ │ │ ├── ClosureUse.php │ │ │ │ │ │ │ │ │ ├── ConstFetch.php │ │ │ │ │ │ │ │ │ ├── Empty_.php │ │ │ │ │ │ │ │ │ ├── ErrorSuppress.php │ │ │ │ │ │ │ │ │ ├── Eval_.php │ │ │ │ │ │ │ │ │ ├── Exit_.php │ │ │ │ │ │ │ │ │ ├── FuncCall.php │ │ │ │ │ │ │ │ │ ├── Include_.php │ │ │ │ │ │ │ │ │ ├── Instanceof_.php │ │ │ │ │ │ │ │ │ ├── Isset_.php │ │ │ │ │ │ │ │ │ ├── List_.php │ │ │ │ │ │ │ │ │ ├── MethodCall.php │ │ │ │ │ │ │ │ │ ├── New_.php │ │ │ │ │ │ │ │ │ ├── PostDec.php │ │ │ │ │ │ │ │ │ ├── PostInc.php │ │ │ │ │ │ │ │ │ ├── PreDec.php │ │ │ │ │ │ │ │ │ ├── PreInc.php │ │ │ │ │ │ │ │ │ ├── Print_.php │ │ │ │ │ │ │ │ │ ├── PropertyFetch.php │ │ │ │ │ │ │ │ │ ├── ShellExec.php │ │ │ │ │ │ │ │ │ ├── StaticCall.php │ │ │ │ │ │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ │ │ │ │ │ ├── Ternary.php │ │ │ │ │ │ │ │ │ ├── UnaryMinus.php │ │ │ │ │ │ │ │ │ ├── UnaryPlus.php │ │ │ │ │ │ │ │ │ ├── Variable.php │ │ │ │ │ │ │ │ │ ├── YieldFrom.php │ │ │ │ │ │ │ │ │ └── Yield_.php │ │ │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ │ │ ├── Name │ │ │ │ │ │ │ │ │ ├── FullyQualified.php │ │ │ │ │ │ │ │ │ └── Relative.php │ │ │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ │ │ ├── Scalar.php │ │ │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ │ │ ├── DNumber.php │ │ │ │ │ │ │ │ │ ├── Encapsed.php │ │ │ │ │ │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ │ │ │ │ │ ├── LNumber.php │ │ │ │ │ │ │ │ │ ├── MagicConst.php │ │ │ │ │ │ │ │ │ ├── MagicConst │ │ │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ │ │ ├── Dir.php │ │ │ │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ │ │ └── Trait_.php │ │ │ │ │ │ │ │ │ └── String_.php │ │ │ │ │ │ │ │ ├── Stmt.php │ │ │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ │ │ ├── Break_.php │ │ │ │ │ │ │ │ │ ├── Case_.php │ │ │ │ │ │ │ │ │ ├── Catch_.php │ │ │ │ │ │ │ │ │ ├── ClassConst.php │ │ │ │ │ │ │ │ │ ├── ClassLike.php │ │ │ │ │ │ │ │ │ ├── ClassMethod.php │ │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ │ │ │ ├── Continue_.php │ │ │ │ │ │ │ │ │ ├── DeclareDeclare.php │ │ │ │ │ │ │ │ │ ├── Declare_.php │ │ │ │ │ │ │ │ │ ├── Do_.php │ │ │ │ │ │ │ │ │ ├── Echo_.php │ │ │ │ │ │ │ │ │ ├── ElseIf_.php │ │ │ │ │ │ │ │ │ ├── Else_.php │ │ │ │ │ │ │ │ │ ├── For_.php │ │ │ │ │ │ │ │ │ ├── Foreach_.php │ │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ │ ├── Global_.php │ │ │ │ │ │ │ │ │ ├── Goto_.php │ │ │ │ │ │ │ │ │ ├── GroupUse.php │ │ │ │ │ │ │ │ │ ├── HaltCompiler.php │ │ │ │ │ │ │ │ │ ├── If_.php │ │ │ │ │ │ │ │ │ ├── InlineHTML.php │ │ │ │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ │ │ │ ├── Label.php │ │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ │ ├── Nop.php │ │ │ │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ │ │ │ ├── PropertyProperty.php │ │ │ │ │ │ │ │ │ ├── Return_.php │ │ │ │ │ │ │ │ │ ├── StaticVar.php │ │ │ │ │ │ │ │ │ ├── Static_.php │ │ │ │ │ │ │ │ │ ├── Switch_.php │ │ │ │ │ │ │ │ │ ├── Throw_.php │ │ │ │ │ │ │ │ │ ├── TraitUse.php │ │ │ │ │ │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ │ │ │ │ │ ├── TraitUseAdaptation │ │ │ │ │ │ │ │ │ ├── Alias.php │ │ │ │ │ │ │ │ │ └── Precedence.php │ │ │ │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ │ │ │ ├── TryCatch.php │ │ │ │ │ │ │ │ │ ├── Unset_.php │ │ │ │ │ │ │ │ │ ├── UseUse.php │ │ │ │ │ │ │ │ │ ├── Use_.php │ │ │ │ │ │ │ │ │ └── While_.php │ │ │ │ │ │ │ ├── NodeAbstract.php │ │ │ │ │ │ │ ├── NodeDumper.php │ │ │ │ │ │ │ ├── NodeTraverser.php │ │ │ │ │ │ │ ├── NodeTraverserInterface.php │ │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ │ │ └── NameResolver.php │ │ │ │ │ │ │ ├── NodeVisitorAbstract.php │ │ │ │ │ │ │ ├── Parser.php │ │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ │ ├── Multiple.php │ │ │ │ │ │ │ │ ├── Php5.php │ │ │ │ │ │ │ │ ├── Php7.php │ │ │ │ │ │ │ │ └── Tokens.php │ │ │ │ │ │ │ ├── ParserAbstract.php │ │ │ │ │ │ │ ├── ParserFactory.php │ │ │ │ │ │ │ ├── PrettyPrinter │ │ │ │ │ │ │ │ └── Standard.php │ │ │ │ │ │ │ ├── PrettyPrinterAbstract.php │ │ │ │ │ │ │ ├── Serializer.php │ │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ │ │ ├── Unserializer.php │ │ │ │ │ │ │ └── Unserializer │ │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ │ └── bootstrap.php │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ ├── test │ │ │ │ │ │ ├── PhpParser │ │ │ │ │ │ │ ├── AutoloaderTest.php │ │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ │ │ ├── FunctionTest.php │ │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ │ ├── MethodTest.php │ │ │ │ │ │ │ │ ├── NamespaceTest.php │ │ │ │ │ │ │ │ ├── ParamTest.php │ │ │ │ │ │ │ │ ├── PropertyTest.php │ │ │ │ │ │ │ │ ├── TraitTest.php │ │ │ │ │ │ │ │ └── UseTest.php │ │ │ │ │ │ │ ├── BuilderFactoryTest.php │ │ │ │ │ │ │ ├── CodeParsingTest.php │ │ │ │ │ │ │ ├── CodeTestAbstract.php │ │ │ │ │ │ │ ├── CommentTest.php │ │ │ │ │ │ │ ├── ErrorTest.php │ │ │ │ │ │ │ ├── Lexer │ │ │ │ │ │ │ │ └── EmulativeTest.php │ │ │ │ │ │ │ ├── LexerTest.php │ │ │ │ │ │ │ ├── Node │ │ │ │ │ │ │ │ ├── NameTest.php │ │ │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ │ │ ├── MagicConstTest.php │ │ │ │ │ │ │ │ │ └── StringTest.php │ │ │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ │ │ ├── ClassMethodTest.php │ │ │ │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ │ │ └── PropertyTest.php │ │ │ │ │ │ │ ├── NodeAbstractTest.php │ │ │ │ │ │ │ ├── NodeDumperTest.php │ │ │ │ │ │ │ ├── NodeTraverserTest.php │ │ │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ │ │ └── NameResolverTest.php │ │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ │ ├── MultipleTest.php │ │ │ │ │ │ │ │ ├── Php5Test.php │ │ │ │ │ │ │ │ └── Php7Test.php │ │ │ │ │ │ │ ├── ParserFactoryTest.php │ │ │ │ │ │ │ ├── ParserTest.php │ │ │ │ │ │ │ ├── PrettyPrinterTest.php │ │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ │ └── XMLTest.php │ │ │ │ │ │ │ └── Unserializer │ │ │ │ │ │ │ │ └── XMLTest.php │ │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ │ └── code │ │ │ │ │ │ │ ├── parser │ │ │ │ │ │ │ ├── blockComments.test │ │ │ │ │ │ │ ├── comments.test │ │ │ │ │ │ │ ├── errorHandling │ │ │ │ │ │ │ │ ├── eofError.test │ │ │ │ │ │ │ │ └── recovery.test │ │ │ │ │ │ │ ├── expr │ │ │ │ │ │ │ │ ├── arrayDef.test │ │ │ │ │ │ │ │ ├── assign.test │ │ │ │ │ │ │ │ ├── assignNewByRef.test │ │ │ │ │ │ │ │ ├── cast.test │ │ │ │ │ │ │ │ ├── clone.test │ │ │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ │ │ ├── comparison.test │ │ │ │ │ │ │ │ ├── constant_expr.test │ │ │ │ │ │ │ │ ├── errorSuppress.test │ │ │ │ │ │ │ │ ├── exit.test │ │ │ │ │ │ │ │ ├── fetchAndCall │ │ │ │ │ │ │ │ │ ├── args.test │ │ │ │ │ │ │ │ │ ├── constFetch.test │ │ │ │ │ │ │ │ │ ├── constantDeref.test │ │ │ │ │ │ │ │ │ ├── funcCall.test │ │ │ │ │ │ │ │ │ ├── newDeref.test │ │ │ │ │ │ │ │ │ ├── objectAccess.test │ │ │ │ │ │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ │ │ │ │ │ ├── staticCall.test │ │ │ │ │ │ │ │ │ └── staticPropertyFetch.test │ │ │ │ │ │ │ │ ├── includeAndEval.test │ │ │ │ │ │ │ │ ├── issetAndEmpty.test │ │ │ │ │ │ │ │ ├── logic.test │ │ │ │ │ │ │ │ ├── math.test │ │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ │ ├── newWithoutClass.test │ │ │ │ │ │ │ │ ├── print.test │ │ │ │ │ │ │ │ ├── shellExec.test │ │ │ │ │ │ │ │ ├── ternaryAndCoalesce.test │ │ │ │ │ │ │ │ ├── uvs │ │ │ │ │ │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ │ │ │ │ │ ├── indirectCall.test │ │ │ │ │ │ │ │ │ ├── isset.test │ │ │ │ │ │ │ │ │ ├── misc.test │ │ │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ │ │ └── staticProperty.test │ │ │ │ │ │ │ │ └── variable.test │ │ │ │ │ │ │ ├── scalar │ │ │ │ │ │ │ │ ├── constantString.test │ │ │ │ │ │ │ │ ├── docString.test │ │ │ │ │ │ │ │ ├── docStringNewlines.test │ │ │ │ │ │ │ │ ├── encapsedString.test │ │ │ │ │ │ │ │ ├── float.test │ │ │ │ │ │ │ │ ├── int.test │ │ │ │ │ │ │ │ ├── invalidOctal.test │ │ │ │ │ │ │ │ ├── magicConst.test │ │ │ │ │ │ │ │ └── unicodeEscape.test │ │ │ │ │ │ │ ├── semiReserved.test │ │ │ │ │ │ │ └── stmt │ │ │ │ │ │ │ │ ├── blocklessStatement.test │ │ │ │ │ │ │ │ ├── class │ │ │ │ │ │ │ │ ├── abstract.test │ │ │ │ │ │ │ │ ├── anonymous.test │ │ │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ │ │ ├── final.test │ │ │ │ │ │ │ │ ├── implicitPublic.test │ │ │ │ │ │ │ │ ├── interface.test │ │ │ │ │ │ │ │ ├── modifier.test │ │ │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ │ │ ├── php4Style.test │ │ │ │ │ │ │ │ ├── simple.test │ │ │ │ │ │ │ │ ├── staticMethod.test │ │ │ │ │ │ │ │ └── trait.test │ │ │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ │ │ ├── controlFlow.test │ │ │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ │ │ ├── echo.test │ │ │ │ │ │ │ │ ├── function │ │ │ │ │ │ │ │ ├── byRef.test │ │ │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ │ │ ├── defaultValues.test │ │ │ │ │ │ │ │ ├── returnTypes.test │ │ │ │ │ │ │ │ ├── scalarTypeDeclarations.test │ │ │ │ │ │ │ │ ├── specialVars.test │ │ │ │ │ │ │ │ ├── typeDeclarations.test │ │ │ │ │ │ │ │ ├── variadic.test │ │ │ │ │ │ │ │ └── variadicDefaultValue.test │ │ │ │ │ │ │ │ ├── generator │ │ │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ │ │ ├── yieldPrecedence.test │ │ │ │ │ │ │ │ └── yieldUnaryPrecedence.test │ │ │ │ │ │ │ │ ├── haltCompiler.test │ │ │ │ │ │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ │ │ │ │ │ ├── haltCompilerOffset.test │ │ │ │ │ │ │ │ ├── haltCompilerOutermostScope.test │ │ │ │ │ │ │ │ ├── hashbang.test │ │ │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ │ │ ├── inlineHTML.test │ │ │ │ │ │ │ │ ├── loop │ │ │ │ │ │ │ │ ├── do.test │ │ │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ │ │ └── while.test │ │ │ │ │ │ │ │ ├── namespace │ │ │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ │ │ ├── braced.test │ │ │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ │ │ ├── groupUseErrors.test │ │ │ │ │ │ │ │ ├── invalidName.test │ │ │ │ │ │ │ │ ├── mix.test │ │ │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ │ │ ├── nested.test │ │ │ │ │ │ │ │ ├── notBraced.test │ │ │ │ │ │ │ │ ├── nsAfterHashbang.test │ │ │ │ │ │ │ │ ├── outsideStmt.test │ │ │ │ │ │ │ │ └── outsideStmtInvalid.test │ │ │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ │ │ ├── tryWithoutCatch.test │ │ │ │ │ │ │ │ └── unset.test │ │ │ │ │ │ │ └── prettyPrinter │ │ │ │ │ │ │ ├── comments.test │ │ │ │ │ │ │ ├── expr │ │ │ │ │ │ │ ├── anonymousClass.test │ │ │ │ │ │ │ ├── call.test │ │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ │ ├── constant_deref.test │ │ │ │ │ │ │ ├── docStrings.test │ │ │ │ │ │ │ ├── include.test │ │ │ │ │ │ │ ├── intrinsics.test │ │ │ │ │ │ │ ├── list.test │ │ │ │ │ │ │ ├── literals.test │ │ │ │ │ │ │ ├── numbers.test │ │ │ │ │ │ │ ├── operators.test │ │ │ │ │ │ │ ├── parentheses.test │ │ │ │ │ │ │ ├── shortArraySyntax.test │ │ │ │ │ │ │ ├── stringEscaping.test │ │ │ │ │ │ │ ├── uvs.test │ │ │ │ │ │ │ ├── variables.test │ │ │ │ │ │ │ └── yield.test │ │ │ │ │ │ │ ├── inlineHTMLandPHPtest.file-test │ │ │ │ │ │ │ ├── onlyInlineHTML.file-test │ │ │ │ │ │ │ ├── onlyPHP.file-test │ │ │ │ │ │ │ └── stmt │ │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ │ ├── break_continue.test │ │ │ │ │ │ │ ├── class.test │ │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ │ ├── do_while.test │ │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ │ ├── function_signatures.test │ │ │ │ │ │ │ ├── global_static_variables.test │ │ │ │ │ │ │ ├── goto.test │ │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ │ ├── haltCompiler.file-test │ │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ │ ├── namespaces.test │ │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ │ ├── throw.test │ │ │ │ │ │ │ ├── traitUse.test │ │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ │ └── while.test │ │ │ │ │ └── test_old │ │ │ │ │ │ ├── run-php-src.sh │ │ │ │ │ │ └── run.php │ │ │ │ │ └── PHP-Parser-3.0.3 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── UPGRADE-1.0.md │ │ │ │ │ ├── UPGRADE-2.0.md │ │ │ │ │ ├── UPGRADE-3.0.md │ │ │ │ │ ├── bin │ │ │ │ │ └── php-parse │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── doc │ │ │ │ │ ├── 0_Introduction.markdown │ │ │ │ │ ├── 2_Usage_of_basic_components.markdown │ │ │ │ │ ├── 3_Other_node_tree_representations.markdown │ │ │ │ │ ├── 4_Code_generation.markdown │ │ │ │ │ └── component │ │ │ │ │ │ ├── Error_handling.markdown │ │ │ │ │ │ └── Lexer.markdown │ │ │ │ │ ├── grammar │ │ │ │ │ ├── README.md │ │ │ │ │ ├── parser.template │ │ │ │ │ ├── php5.y │ │ │ │ │ ├── php7.y │ │ │ │ │ ├── rebuildParsers.php │ │ │ │ │ ├── tokens.template │ │ │ │ │ └── tokens.y │ │ │ │ │ ├── lib │ │ │ │ │ ├── PhpParser │ │ │ │ │ │ ├── Autoloader.php │ │ │ │ │ │ ├── Builder.php │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ ├── Declaration.php │ │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ │ └── Use_.php │ │ │ │ │ │ ├── BuilderAbstract.php │ │ │ │ │ │ ├── BuilderFactory.php │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ ├── Comment │ │ │ │ │ │ │ └── Doc.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── ErrorHandler.php │ │ │ │ │ │ ├── ErrorHandler │ │ │ │ │ │ │ ├── Collecting.php │ │ │ │ │ │ │ └── Throwing.php │ │ │ │ │ │ ├── Lexer.php │ │ │ │ │ │ ├── Lexer │ │ │ │ │ │ │ └── Emulative.php │ │ │ │ │ │ ├── Node.php │ │ │ │ │ │ ├── Node │ │ │ │ │ │ │ ├── Arg.php │ │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ │ ├── Expr │ │ │ │ │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ │ │ │ │ ├── ArrayItem.php │ │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ │ ├── Assign.php │ │ │ │ │ │ │ │ ├── AssignOp.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.php │ │ │ │ │ │ │ │ ├── BinaryOp │ │ │ │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ │ │ │ ├── Equal.php │ │ │ │ │ │ │ │ │ ├── Greater.php │ │ │ │ │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ │ │ │ │ ├── Identical.php │ │ │ │ │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ │ │ │ │ ├── Smaller.php │ │ │ │ │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ │ │ │ │ └── Spaceship.php │ │ │ │ │ │ │ │ ├── BitwiseNot.php │ │ │ │ │ │ │ │ ├── BooleanNot.php │ │ │ │ │ │ │ │ ├── Cast.php │ │ │ │ │ │ │ │ ├── Cast │ │ │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ │ │ ├── Bool_.php │ │ │ │ │ │ │ │ │ ├── Double.php │ │ │ │ │ │ │ │ │ ├── Int_.php │ │ │ │ │ │ │ │ │ ├── Object_.php │ │ │ │ │ │ │ │ │ ├── String_.php │ │ │ │ │ │ │ │ │ └── Unset_.php │ │ │ │ │ │ │ │ ├── ClassConstFetch.php │ │ │ │ │ │ │ │ ├── Clone_.php │ │ │ │ │ │ │ │ ├── Closure.php │ │ │ │ │ │ │ │ ├── ClosureUse.php │ │ │ │ │ │ │ │ ├── ConstFetch.php │ │ │ │ │ │ │ │ ├── Empty_.php │ │ │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ │ │ ├── ErrorSuppress.php │ │ │ │ │ │ │ │ ├── Eval_.php │ │ │ │ │ │ │ │ ├── Exit_.php │ │ │ │ │ │ │ │ ├── FuncCall.php │ │ │ │ │ │ │ │ ├── Include_.php │ │ │ │ │ │ │ │ ├── Instanceof_.php │ │ │ │ │ │ │ │ ├── Isset_.php │ │ │ │ │ │ │ │ ├── List_.php │ │ │ │ │ │ │ │ ├── MethodCall.php │ │ │ │ │ │ │ │ ├── New_.php │ │ │ │ │ │ │ │ ├── PostDec.php │ │ │ │ │ │ │ │ ├── PostInc.php │ │ │ │ │ │ │ │ ├── PreDec.php │ │ │ │ │ │ │ │ ├── PreInc.php │ │ │ │ │ │ │ │ ├── Print_.php │ │ │ │ │ │ │ │ ├── PropertyFetch.php │ │ │ │ │ │ │ │ ├── ShellExec.php │ │ │ │ │ │ │ │ ├── StaticCall.php │ │ │ │ │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ │ │ │ │ ├── Ternary.php │ │ │ │ │ │ │ │ ├── UnaryMinus.php │ │ │ │ │ │ │ │ ├── UnaryPlus.php │ │ │ │ │ │ │ │ ├── Variable.php │ │ │ │ │ │ │ │ ├── YieldFrom.php │ │ │ │ │ │ │ │ └── Yield_.php │ │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ │ ├── Name │ │ │ │ │ │ │ │ ├── FullyQualified.php │ │ │ │ │ │ │ │ └── Relative.php │ │ │ │ │ │ │ ├── NullableType.php │ │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ │ ├── Scalar.php │ │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ │ ├── DNumber.php │ │ │ │ │ │ │ │ ├── Encapsed.php │ │ │ │ │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ │ │ │ │ ├── LNumber.php │ │ │ │ │ │ │ │ ├── MagicConst.php │ │ │ │ │ │ │ │ ├── MagicConst │ │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ │ ├── Dir.php │ │ │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ │ └── Trait_.php │ │ │ │ │ │ │ │ └── String_.php │ │ │ │ │ │ │ ├── Stmt.php │ │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ │ ├── Break_.php │ │ │ │ │ │ │ │ ├── Case_.php │ │ │ │ │ │ │ │ ├── Catch_.php │ │ │ │ │ │ │ │ ├── ClassConst.php │ │ │ │ │ │ │ │ ├── ClassLike.php │ │ │ │ │ │ │ │ ├── ClassMethod.php │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ │ │ ├── Continue_.php │ │ │ │ │ │ │ │ ├── DeclareDeclare.php │ │ │ │ │ │ │ │ ├── Declare_.php │ │ │ │ │ │ │ │ ├── Do_.php │ │ │ │ │ │ │ │ ├── Echo_.php │ │ │ │ │ │ │ │ ├── ElseIf_.php │ │ │ │ │ │ │ │ ├── Else_.php │ │ │ │ │ │ │ │ ├── Finally_.php │ │ │ │ │ │ │ │ ├── For_.php │ │ │ │ │ │ │ │ ├── Foreach_.php │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ ├── Global_.php │ │ │ │ │ │ │ │ ├── Goto_.php │ │ │ │ │ │ │ │ ├── GroupUse.php │ │ │ │ │ │ │ │ ├── HaltCompiler.php │ │ │ │ │ │ │ │ ├── If_.php │ │ │ │ │ │ │ │ ├── InlineHTML.php │ │ │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ │ │ ├── Label.php │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ ├── Nop.php │ │ │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ │ │ ├── PropertyProperty.php │ │ │ │ │ │ │ │ ├── Return_.php │ │ │ │ │ │ │ │ ├── StaticVar.php │ │ │ │ │ │ │ │ ├── Static_.php │ │ │ │ │ │ │ │ ├── Switch_.php │ │ │ │ │ │ │ │ ├── Throw_.php │ │ │ │ │ │ │ │ ├── TraitUse.php │ │ │ │ │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ │ │ │ │ ├── TraitUseAdaptation │ │ │ │ │ │ │ │ ├── Alias.php │ │ │ │ │ │ │ │ └── Precedence.php │ │ │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ │ │ ├── TryCatch.php │ │ │ │ │ │ │ │ ├── Unset_.php │ │ │ │ │ │ │ │ ├── UseUse.php │ │ │ │ │ │ │ │ ├── Use_.php │ │ │ │ │ │ │ │ └── While_.php │ │ │ │ │ │ ├── NodeAbstract.php │ │ │ │ │ │ ├── NodeDumper.php │ │ │ │ │ │ ├── NodeTraverser.php │ │ │ │ │ │ ├── NodeTraverserInterface.php │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ │ └── NameResolver.php │ │ │ │ │ │ ├── NodeVisitorAbstract.php │ │ │ │ │ │ ├── Parser.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── Multiple.php │ │ │ │ │ │ │ ├── Php5.php │ │ │ │ │ │ │ ├── Php7.php │ │ │ │ │ │ │ └── Tokens.php │ │ │ │ │ │ ├── ParserAbstract.php │ │ │ │ │ │ ├── ParserFactory.php │ │ │ │ │ │ ├── PrettyPrinter │ │ │ │ │ │ │ └── Standard.php │ │ │ │ │ │ ├── PrettyPrinterAbstract.php │ │ │ │ │ │ ├── Serializer.php │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ │ ├── Unserializer.php │ │ │ │ │ │ └── Unserializer │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ └── bootstrap.php │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ ├── test │ │ │ │ │ ├── PhpParser │ │ │ │ │ │ ├── AutoloaderTest.php │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ │ ├── FunctionTest.php │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ ├── MethodTest.php │ │ │ │ │ │ │ ├── NamespaceTest.php │ │ │ │ │ │ │ ├── ParamTest.php │ │ │ │ │ │ │ ├── PropertyTest.php │ │ │ │ │ │ │ ├── TraitTest.php │ │ │ │ │ │ │ └── UseTest.php │ │ │ │ │ │ ├── BuilderFactoryTest.php │ │ │ │ │ │ ├── CodeParsingTest.php │ │ │ │ │ │ ├── CodeTestAbstract.php │ │ │ │ │ │ ├── CommentTest.php │ │ │ │ │ │ ├── ErrorHandler │ │ │ │ │ │ │ ├── CollectingTest.php │ │ │ │ │ │ │ └── ThrowingTest.php │ │ │ │ │ │ ├── ErrorTest.php │ │ │ │ │ │ ├── Lexer │ │ │ │ │ │ │ └── EmulativeTest.php │ │ │ │ │ │ ├── LexerTest.php │ │ │ │ │ │ ├── Node │ │ │ │ │ │ │ ├── NameTest.php │ │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ │ ├── MagicConstTest.php │ │ │ │ │ │ │ │ └── StringTest.php │ │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ │ ├── ClassConstTest.php │ │ │ │ │ │ │ │ ├── ClassMethodTest.php │ │ │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ │ └── PropertyTest.php │ │ │ │ │ │ ├── NodeAbstractTest.php │ │ │ │ │ │ ├── NodeDumperTest.php │ │ │ │ │ │ ├── NodeTraverserTest.php │ │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ │ └── NameResolverTest.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── MultipleTest.php │ │ │ │ │ │ │ ├── Php5Test.php │ │ │ │ │ │ │ └── Php7Test.php │ │ │ │ │ │ ├── ParserFactoryTest.php │ │ │ │ │ │ ├── ParserTest.php │ │ │ │ │ │ ├── PrettyPrinterTest.php │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ └── XMLTest.php │ │ │ │ │ │ └── Unserializer │ │ │ │ │ │ │ └── XMLTest.php │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ └── code │ │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── blockComments.test │ │ │ │ │ │ ├── comments.test │ │ │ │ │ │ ├── errorHandling │ │ │ │ │ │ │ ├── eofError.test │ │ │ │ │ │ │ ├── lexerErrors.test │ │ │ │ │ │ │ └── recovery.test │ │ │ │ │ │ ├── expr │ │ │ │ │ │ │ ├── arrayDef.test │ │ │ │ │ │ │ ├── arrayDestructuring.test │ │ │ │ │ │ │ ├── assign.test │ │ │ │ │ │ │ ├── assignNewByRef.test │ │ │ │ │ │ │ ├── cast.test │ │ │ │ │ │ │ ├── clone.test │ │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ │ ├── comparison.test │ │ │ │ │ │ │ ├── constant_expr.test │ │ │ │ │ │ │ ├── errorSuppress.test │ │ │ │ │ │ │ ├── exit.test │ │ │ │ │ │ │ ├── fetchAndCall │ │ │ │ │ │ │ │ ├── args.test │ │ │ │ │ │ │ │ ├── constFetch.test │ │ │ │ │ │ │ │ ├── constantDeref.test │ │ │ │ │ │ │ │ ├── funcCall.test │ │ │ │ │ │ │ │ ├── newDeref.test │ │ │ │ │ │ │ │ ├── objectAccess.test │ │ │ │ │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ │ │ │ │ ├── staticCall.test │ │ │ │ │ │ │ │ └── staticPropertyFetch.test │ │ │ │ │ │ │ ├── includeAndEval.test │ │ │ │ │ │ │ ├── issetAndEmpty.test │ │ │ │ │ │ │ ├── listWithKeys.test │ │ │ │ │ │ │ ├── logic.test │ │ │ │ │ │ │ ├── math.test │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ ├── newWithoutClass.test │ │ │ │ │ │ │ ├── print.test │ │ │ │ │ │ │ ├── shellExec.test │ │ │ │ │ │ │ ├── ternaryAndCoalesce.test │ │ │ │ │ │ │ ├── uvs │ │ │ │ │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ │ │ │ │ ├── indirectCall.test │ │ │ │ │ │ │ │ ├── isset.test │ │ │ │ │ │ │ │ ├── misc.test │ │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ │ └── staticProperty.test │ │ │ │ │ │ │ └── variable.test │ │ │ │ │ │ ├── scalar │ │ │ │ │ │ │ ├── constantString.test │ │ │ │ │ │ │ ├── docString.test │ │ │ │ │ │ │ ├── docStringNewlines.test │ │ │ │ │ │ │ ├── encapsedNegVarOffset.test │ │ │ │ │ │ │ ├── encapsedString.test │ │ │ │ │ │ │ ├── float.test │ │ │ │ │ │ │ ├── int.test │ │ │ │ │ │ │ ├── invalidOctal.test │ │ │ │ │ │ │ ├── magicConst.test │ │ │ │ │ │ │ └── unicodeEscape.test │ │ │ │ │ │ ├── semiReserved.test │ │ │ │ │ │ └── stmt │ │ │ │ │ │ │ ├── blocklessStatement.test │ │ │ │ │ │ │ ├── class │ │ │ │ │ │ │ ├── abstract.test │ │ │ │ │ │ │ ├── anonymous.test │ │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ │ ├── constModifierErrors.test │ │ │ │ │ │ │ ├── constModifiers.test │ │ │ │ │ │ │ ├── final.test │ │ │ │ │ │ │ ├── implicitPublic.test │ │ │ │ │ │ │ ├── interface.test │ │ │ │ │ │ │ ├── modifier.test │ │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ │ ├── php4Style.test │ │ │ │ │ │ │ ├── simple.test │ │ │ │ │ │ │ ├── staticMethod.test │ │ │ │ │ │ │ └── trait.test │ │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ │ ├── controlFlow.test │ │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ │ ├── echo.test │ │ │ │ │ │ │ ├── function │ │ │ │ │ │ │ ├── builtinTypeDeclarations.test │ │ │ │ │ │ │ ├── byRef.test │ │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ │ ├── defaultValues.test │ │ │ │ │ │ │ ├── nullableTypes.test │ │ │ │ │ │ │ ├── returnTypes.test │ │ │ │ │ │ │ ├── specialVars.test │ │ │ │ │ │ │ ├── typeDeclarations.test │ │ │ │ │ │ │ ├── variadic.test │ │ │ │ │ │ │ └── variadicDefaultValue.test │ │ │ │ │ │ │ ├── generator │ │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ │ ├── yieldPrecedence.test │ │ │ │ │ │ │ └── yieldUnaryPrecedence.test │ │ │ │ │ │ │ ├── haltCompiler.test │ │ │ │ │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ │ │ │ │ ├── haltCompilerOffset.test │ │ │ │ │ │ │ ├── haltCompilerOutermostScope.test │ │ │ │ │ │ │ ├── hashbang.test │ │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ │ ├── inlineHTML.test │ │ │ │ │ │ │ ├── loop │ │ │ │ │ │ │ ├── do.test │ │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ │ └── while.test │ │ │ │ │ │ │ ├── multiCatch.test │ │ │ │ │ │ │ ├── namespace │ │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ │ ├── braced.test │ │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ │ ├── groupUseErrors.test │ │ │ │ │ │ │ ├── groupUsePositions.test │ │ │ │ │ │ │ ├── invalidName.test │ │ │ │ │ │ │ ├── mix.test │ │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ │ ├── nested.test │ │ │ │ │ │ │ ├── notBraced.test │ │ │ │ │ │ │ ├── nsAfterHashbang.test │ │ │ │ │ │ │ ├── outsideStmt.test │ │ │ │ │ │ │ └── outsideStmtInvalid.test │ │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ │ ├── tryWithoutCatch.test │ │ │ │ │ │ │ └── unset.test │ │ │ │ │ │ └── prettyPrinter │ │ │ │ │ │ ├── comments.test │ │ │ │ │ │ ├── expr │ │ │ │ │ │ ├── anonymousClass.test │ │ │ │ │ │ ├── arrayDestructuring.test │ │ │ │ │ │ ├── call.test │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ ├── constant_deref.test │ │ │ │ │ │ ├── docStrings.test │ │ │ │ │ │ ├── include.test │ │ │ │ │ │ ├── intrinsics.test │ │ │ │ │ │ ├── list.test │ │ │ │ │ │ ├── literals.test │ │ │ │ │ │ ├── numbers.test │ │ │ │ │ │ ├── operators.test │ │ │ │ │ │ ├── parentheses.test │ │ │ │ │ │ ├── shortArraySyntax.test │ │ │ │ │ │ ├── stringEscaping.test │ │ │ │ │ │ ├── uvs.test │ │ │ │ │ │ ├── variables.test │ │ │ │ │ │ └── yield.test │ │ │ │ │ │ ├── inlineHTMLandPHPtest.file-test │ │ │ │ │ │ ├── onlyInlineHTML.file-test │ │ │ │ │ │ ├── onlyPHP.file-test │ │ │ │ │ │ └── stmt │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ ├── break_continue.test │ │ │ │ │ │ ├── class.test │ │ │ │ │ │ ├── class_const.test │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ ├── do_while.test │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ ├── function_signatures.test │ │ │ │ │ │ ├── global_static_variables.test │ │ │ │ │ │ ├── goto.test │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ ├── haltCompiler.file-test │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ ├── multiCatch.test │ │ │ │ │ │ ├── namespaces.test │ │ │ │ │ │ ├── nullable_types.test │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ ├── throw.test │ │ │ │ │ │ ├── traitUse.test │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ └── while.test │ │ │ │ │ └── test_old │ │ │ │ │ ├── run-php-src.sh │ │ │ │ │ └── run.php │ │ │ └── replacing │ │ │ │ ├── core │ │ │ │ ├── CodeIgniter.php │ │ │ │ ├── Common.php │ │ │ │ ├── Input.php │ │ │ │ ├── Loader.php │ │ │ │ ├── Output.php │ │ │ │ └── old │ │ │ │ │ ├── 3.0.0-Common.php │ │ │ │ │ ├── 3.0.0-Loader.php │ │ │ │ │ ├── 3.0.1-Loader.php │ │ │ │ │ ├── 3.0.3-CodeIgniter.php │ │ │ │ │ ├── 3.0.3-Input.php │ │ │ │ │ ├── 3.0.3-Loader.php │ │ │ │ │ ├── 3.0.4-CodeIgniter.php │ │ │ │ │ ├── 3.0.4-Input.php │ │ │ │ │ ├── 3.0.4-Loader.php │ │ │ │ │ ├── 3.0.5-CodeIgniter.php │ │ │ │ │ ├── 3.0.5-Loader.php │ │ │ │ │ ├── 3.0.6-CodeIgniter.php │ │ │ │ │ ├── 3.1.0-CodeIgniter.php │ │ │ │ │ ├── 3.1.0-Common.php │ │ │ │ │ ├── 3.1.0-Input.php │ │ │ │ │ ├── 3.1.0-Loader.php │ │ │ │ │ ├── 3.1.10-CodeIgniter.php │ │ │ │ │ ├── 3.1.10-Common.php │ │ │ │ │ ├── 3.1.10-Input.php │ │ │ │ │ ├── 3.1.10-Loader.php │ │ │ │ │ ├── 3.1.10-Output.php │ │ │ │ │ ├── 3.1.2-CodeIgniter.php │ │ │ │ │ ├── 3.1.2-Common.php │ │ │ │ │ ├── 3.1.2-Input.php │ │ │ │ │ ├── 3.1.2-Loader.php │ │ │ │ │ ├── 3.1.3-CodeIgniter.php │ │ │ │ │ ├── 3.1.3-Common.php │ │ │ │ │ ├── 3.1.3-Input.php │ │ │ │ │ ├── 3.1.3-Loader.php │ │ │ │ │ ├── 3.1.4-CodeIgniter.php │ │ │ │ │ ├── 3.1.4-Common.php │ │ │ │ │ ├── 3.1.4-Input.php │ │ │ │ │ ├── 3.1.4-Loader.php │ │ │ │ │ ├── 3.1.5-CodeIgniter.php │ │ │ │ │ ├── 3.1.5-Common.php │ │ │ │ │ ├── 3.1.5-Input.php │ │ │ │ │ ├── 3.1.5-Loader.php │ │ │ │ │ ├── 3.1.6-CodeIgniter.php │ │ │ │ │ ├── 3.1.6-Common.php │ │ │ │ │ ├── 3.1.6-Input.php │ │ │ │ │ ├── 3.1.6-Loader.php │ │ │ │ │ ├── 3.1.7-CodeIgniter.php │ │ │ │ │ ├── 3.1.7-Common.php │ │ │ │ │ ├── 3.1.7-Input.php │ │ │ │ │ ├── 3.1.7-Loader.php │ │ │ │ │ ├── 3.1.7-Output.php │ │ │ │ │ ├── 3.1.8-CodeIgniter.php │ │ │ │ │ ├── 3.1.8-Common.php │ │ │ │ │ ├── 3.1.8-Input.php │ │ │ │ │ ├── 3.1.8-Loader.php │ │ │ │ │ ├── 3.1.8-Output.php │ │ │ │ │ ├── 3.1.9-CodeIgniter.php │ │ │ │ │ ├── 3.1.9-Common.php │ │ │ │ │ ├── 3.1.9-Input.php │ │ │ │ │ ├── 3.1.9-Loader.php │ │ │ │ │ └── 3.1.9-Output.php │ │ │ │ ├── helpers │ │ │ │ ├── download_helper.php │ │ │ │ ├── old │ │ │ │ │ ├── 3.1.10-download_helper.php │ │ │ │ │ ├── 3.1.10-url_helper.php │ │ │ │ │ ├── 3.1.6-download_helper.php │ │ │ │ │ ├── 3.1.6-url_helper.php │ │ │ │ │ ├── 3.1.7-download_helper.php │ │ │ │ │ ├── 3.1.7-url_helper.php │ │ │ │ │ ├── 3.1.8-download_helper.php │ │ │ │ │ ├── 3.1.8-url_helper.php │ │ │ │ │ ├── 3.1.9-download_helper.php │ │ │ │ │ └── 3.1.9-url_helper.php │ │ │ │ └── url_helper.php │ │ │ │ ├── libraries │ │ │ │ ├── Upload.php │ │ │ │ └── old │ │ │ │ │ ├── 3.1.10-Upload.php │ │ │ │ │ ├── 3.1.2-Upload.php │ │ │ │ │ ├── 3.1.3-Upload.php │ │ │ │ │ ├── 3.1.4-Upload.php │ │ │ │ │ ├── 3.1.5-Upload.php │ │ │ │ │ ├── 3.1.6-Upload.php │ │ │ │ │ ├── 3.1.7-Upload.php │ │ │ │ │ ├── 3.1.8-Upload.php │ │ │ │ │ └── 3.1.9-Upload.php │ │ │ │ ├── make-links.sh │ │ │ │ └── mv-current.sh │ │ ├── controllers │ │ │ ├── Invoice_test.php │ │ │ └── Welcome_test.php │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── hooks │ │ │ └── .gitkeep │ │ ├── libraries │ │ │ └── .gitkeep │ │ ├── mocks │ │ │ ├── autoloader.php │ │ │ └── libraries │ │ │ │ └── email.php │ │ ├── models │ │ │ ├── .gitkeep │ │ │ └── Invoice_model_test.php │ │ └── phpunit.xml │ ├── third_party │ │ └── index.html │ └── views │ │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ ├── html │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ └── index.html │ │ ├── index.html │ │ └── welcome_message.php ├── composer.json ├── composer.lock ├── index.php ├── start_worker.sh └── system │ ├── .htaccess │ ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html │ ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html │ ├── fonts │ ├── index.html │ └── texb.ttf │ ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php │ ├── index.html │ ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html │ └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Javascript │ ├── Jquery.php │ └── index.html │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html ├── index.php ├── install-dependency.sh ├── order ├── .gitignore ├── application │ ├── .htaccess │ ├── cache │ │ └── index.html │ ├── config │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── foreign_chars.php │ │ ├── hooks.php │ │ ├── index.html │ │ ├── memcached.php │ │ ├── migration.php │ │ ├── mimes.php │ │ ├── profiler.php │ │ ├── routes.php │ │ ├── smileys.php │ │ ├── testing │ │ │ └── database.php │ │ └── user_agents.php │ ├── controllers │ │ ├── Migrate.php │ │ ├── Order.php │ │ ├── Welcome.php │ │ └── index.html │ ├── core │ │ └── index.html │ ├── database │ │ └── data.db │ ├── helpers │ │ ├── checkout_helper.php │ │ └── index.html │ ├── hooks │ │ └── index.html │ ├── index.html │ ├── language │ │ ├── english │ │ │ └── index.html │ │ └── index.html │ ├── libraries │ │ ├── Php_func.php │ │ └── index.html │ ├── logs │ │ └── index.html │ ├── migrations │ │ └── 001_add_order.php │ ├── models │ │ ├── Order_model.php │ │ └── index.html │ ├── tests │ │ ├── .gitignore │ │ ├── .phpunit.result.cache │ │ ├── Bootstrap.php │ │ ├── DbTestCase.php │ │ ├── TestCase.php │ │ ├── UnitTestCase.php │ │ ├── _ci_phpunit_test │ │ │ ├── CIPHPUnitTest.php │ │ │ ├── CIPHPUnitTestAutoloader.php │ │ │ ├── CIPHPUnitTestCase.php │ │ │ ├── CIPHPUnitTestDbConnectionStore.php │ │ │ ├── CIPHPUnitTestDbTestCase.php │ │ │ ├── CIPHPUnitTestDouble.php │ │ │ ├── CIPHPUnitTestFileCache.php │ │ │ ├── CIPHPUnitTestNullCodeIgniter.php │ │ │ ├── CIPHPUnitTestReflection.php │ │ │ ├── CIPHPUnitTestRequest.php │ │ │ ├── CIPHPUnitTestRouter.php │ │ │ ├── CIPHPUnitTestSuperGlobal.php │ │ │ ├── CIPHPUnitTestUnitTestCase.php │ │ │ ├── ChangeLog.md │ │ │ ├── TestSuiteProvider.php │ │ │ ├── alias │ │ │ │ ├── MonkeyPatch.php │ │ │ │ └── ReflectionHelper.php │ │ │ ├── autoloader.php │ │ │ ├── exceptions │ │ │ │ ├── CIPHPUnitTestExitException.php │ │ │ │ ├── CIPHPUnitTestRedirectException.php │ │ │ │ ├── CIPHPUnitTestShow404Exception.php │ │ │ │ └── CIPHPUnitTestShowErrorException.php │ │ │ ├── functions.php │ │ │ ├── patcher │ │ │ │ ├── 2.x │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── ExitException.php │ │ │ │ │ ├── MonkeyPatchManager.php │ │ │ │ │ └── Patcher │ │ │ │ │ │ ├── AbstractPatcher.php │ │ │ │ │ │ ├── Backtrace.php │ │ │ │ │ │ ├── ConstantPatcher.php │ │ │ │ │ │ ├── ConstantPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── Proxy.php │ │ │ │ │ │ ├── ExitPatcher.php │ │ │ │ │ │ ├── FunctionPatcher.php │ │ │ │ │ │ ├── FunctionPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── Proxy.php │ │ │ │ │ │ ├── MethodPatcher.php │ │ │ │ │ │ └── MethodPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── PatchManager.php │ │ │ │ ├── 3.x │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── ExitException.php │ │ │ │ │ ├── MonkeyPatchManager.php │ │ │ │ │ └── Patcher │ │ │ │ │ │ ├── AbstractPatcher.php │ │ │ │ │ │ ├── Backtrace.php │ │ │ │ │ │ ├── ConstantPatcher.php │ │ │ │ │ │ ├── ConstantPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── Proxy.php │ │ │ │ │ │ ├── ExitPatcher.php │ │ │ │ │ │ ├── FunctionPatcher.php │ │ │ │ │ │ ├── FunctionPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── Proxy.php │ │ │ │ │ │ ├── MethodPatcher.php │ │ │ │ │ │ └── MethodPatcher │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ └── PatchManager.php │ │ │ │ ├── Cache.php │ │ │ │ ├── IncludeStream.php │ │ │ │ ├── InvocationVerifier.php │ │ │ │ ├── MonkeyPatch.php │ │ │ │ ├── PathChecker.php │ │ │ │ ├── bootstrap.php │ │ │ │ ├── functions │ │ │ │ │ └── exit__.php │ │ │ │ └── third_party │ │ │ │ │ ├── PHP-Parser-2.1.1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── UPGRADE-1.0.md │ │ │ │ │ ├── UPGRADE-2.0.md │ │ │ │ │ ├── bin │ │ │ │ │ │ └── php-parse │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── 0_Introduction.markdown │ │ │ │ │ │ ├── 2_Usage_of_basic_components.markdown │ │ │ │ │ │ ├── 3_Other_node_tree_representations.markdown │ │ │ │ │ │ ├── 4_Code_generation.markdown │ │ │ │ │ │ └── component │ │ │ │ │ │ │ ├── Error.markdown │ │ │ │ │ │ │ └── Lexer.markdown │ │ │ │ │ ├── grammar │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── analyze.php │ │ │ │ │ │ ├── parser.template │ │ │ │ │ │ ├── php5.y │ │ │ │ │ │ ├── php7.y │ │ │ │ │ │ ├── rebuildParsers.php │ │ │ │ │ │ ├── tokens.template │ │ │ │ │ │ └── tokens.y │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── PhpParser │ │ │ │ │ │ │ ├── Autoloader.php │ │ │ │ │ │ │ ├── Builder.php │ │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ ├── Declaration.php │ │ │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ │ │ └── Use_.php │ │ │ │ │ │ │ ├── BuilderAbstract.php │ │ │ │ │ │ │ ├── BuilderFactory.php │ │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ │ ├── Comment │ │ │ │ │ │ │ │ └── Doc.php │ │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ │ ├── Lexer.php │ │ │ │ │ │ │ ├── Lexer │ │ │ │ │ │ │ │ └── Emulative.php │ │ │ │ │ │ │ ├── Node.php │ │ │ │ │ │ │ ├── Node │ │ │ │ │ │ │ │ ├── Arg.php │ │ │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ │ │ ├── Expr │ │ │ │ │ │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ │ │ │ │ │ ├── ArrayItem.php │ │ │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ │ │ ├── Assign.php │ │ │ │ │ │ │ │ │ ├── AssignOp.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.php │ │ │ │ │ │ │ │ │ ├── BinaryOp │ │ │ │ │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ │ │ │ │ ├── Equal.php │ │ │ │ │ │ │ │ │ │ ├── Greater.php │ │ │ │ │ │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ │ │ │ │ │ ├── Identical.php │ │ │ │ │ │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ │ │ │ │ │ ├── Smaller.php │ │ │ │ │ │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ │ │ │ │ │ └── Spaceship.php │ │ │ │ │ │ │ │ │ ├── BitwiseNot.php │ │ │ │ │ │ │ │ │ ├── BooleanNot.php │ │ │ │ │ │ │ │ │ ├── Cast.php │ │ │ │ │ │ │ │ │ ├── Cast │ │ │ │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ │ │ │ ├── Bool_.php │ │ │ │ │ │ │ │ │ │ ├── Double.php │ │ │ │ │ │ │ │ │ │ ├── Int_.php │ │ │ │ │ │ │ │ │ │ ├── Object_.php │ │ │ │ │ │ │ │ │ │ ├── String_.php │ │ │ │ │ │ │ │ │ │ └── Unset_.php │ │ │ │ │ │ │ │ │ ├── ClassConstFetch.php │ │ │ │ │ │ │ │ │ ├── Clone_.php │ │ │ │ │ │ │ │ │ ├── Closure.php │ │ │ │ │ │ │ │ │ ├── ClosureUse.php │ │ │ │ │ │ │ │ │ ├── ConstFetch.php │ │ │ │ │ │ │ │ │ ├── Empty_.php │ │ │ │ │ │ │ │ │ ├── ErrorSuppress.php │ │ │ │ │ │ │ │ │ ├── Eval_.php │ │ │ │ │ │ │ │ │ ├── Exit_.php │ │ │ │ │ │ │ │ │ ├── FuncCall.php │ │ │ │ │ │ │ │ │ ├── Include_.php │ │ │ │ │ │ │ │ │ ├── Instanceof_.php │ │ │ │ │ │ │ │ │ ├── Isset_.php │ │ │ │ │ │ │ │ │ ├── List_.php │ │ │ │ │ │ │ │ │ ├── MethodCall.php │ │ │ │ │ │ │ │ │ ├── New_.php │ │ │ │ │ │ │ │ │ ├── PostDec.php │ │ │ │ │ │ │ │ │ ├── PostInc.php │ │ │ │ │ │ │ │ │ ├── PreDec.php │ │ │ │ │ │ │ │ │ ├── PreInc.php │ │ │ │ │ │ │ │ │ ├── Print_.php │ │ │ │ │ │ │ │ │ ├── PropertyFetch.php │ │ │ │ │ │ │ │ │ ├── ShellExec.php │ │ │ │ │ │ │ │ │ ├── StaticCall.php │ │ │ │ │ │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ │ │ │ │ │ ├── Ternary.php │ │ │ │ │ │ │ │ │ ├── UnaryMinus.php │ │ │ │ │ │ │ │ │ ├── UnaryPlus.php │ │ │ │ │ │ │ │ │ ├── Variable.php │ │ │ │ │ │ │ │ │ ├── YieldFrom.php │ │ │ │ │ │ │ │ │ └── Yield_.php │ │ │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ │ │ ├── Name │ │ │ │ │ │ │ │ │ ├── FullyQualified.php │ │ │ │ │ │ │ │ │ └── Relative.php │ │ │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ │ │ ├── Scalar.php │ │ │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ │ │ ├── DNumber.php │ │ │ │ │ │ │ │ │ ├── Encapsed.php │ │ │ │ │ │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ │ │ │ │ │ ├── LNumber.php │ │ │ │ │ │ │ │ │ ├── MagicConst.php │ │ │ │ │ │ │ │ │ ├── MagicConst │ │ │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ │ │ ├── Dir.php │ │ │ │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ │ │ └── Trait_.php │ │ │ │ │ │ │ │ │ └── String_.php │ │ │ │ │ │ │ │ ├── Stmt.php │ │ │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ │ │ ├── Break_.php │ │ │ │ │ │ │ │ │ ├── Case_.php │ │ │ │ │ │ │ │ │ ├── Catch_.php │ │ │ │ │ │ │ │ │ ├── ClassConst.php │ │ │ │ │ │ │ │ │ ├── ClassLike.php │ │ │ │ │ │ │ │ │ ├── ClassMethod.php │ │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ │ │ │ ├── Continue_.php │ │ │ │ │ │ │ │ │ ├── DeclareDeclare.php │ │ │ │ │ │ │ │ │ ├── Declare_.php │ │ │ │ │ │ │ │ │ ├── Do_.php │ │ │ │ │ │ │ │ │ ├── Echo_.php │ │ │ │ │ │ │ │ │ ├── ElseIf_.php │ │ │ │ │ │ │ │ │ ├── Else_.php │ │ │ │ │ │ │ │ │ ├── For_.php │ │ │ │ │ │ │ │ │ ├── Foreach_.php │ │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ │ ├── Global_.php │ │ │ │ │ │ │ │ │ ├── Goto_.php │ │ │ │ │ │ │ │ │ ├── GroupUse.php │ │ │ │ │ │ │ │ │ ├── HaltCompiler.php │ │ │ │ │ │ │ │ │ ├── If_.php │ │ │ │ │ │ │ │ │ ├── InlineHTML.php │ │ │ │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ │ │ │ ├── Label.php │ │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ │ ├── Nop.php │ │ │ │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ │ │ │ ├── PropertyProperty.php │ │ │ │ │ │ │ │ │ ├── Return_.php │ │ │ │ │ │ │ │ │ ├── StaticVar.php │ │ │ │ │ │ │ │ │ ├── Static_.php │ │ │ │ │ │ │ │ │ ├── Switch_.php │ │ │ │ │ │ │ │ │ ├── Throw_.php │ │ │ │ │ │ │ │ │ ├── TraitUse.php │ │ │ │ │ │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ │ │ │ │ │ ├── TraitUseAdaptation │ │ │ │ │ │ │ │ │ ├── Alias.php │ │ │ │ │ │ │ │ │ └── Precedence.php │ │ │ │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ │ │ │ ├── TryCatch.php │ │ │ │ │ │ │ │ │ ├── Unset_.php │ │ │ │ │ │ │ │ │ ├── UseUse.php │ │ │ │ │ │ │ │ │ ├── Use_.php │ │ │ │ │ │ │ │ │ └── While_.php │ │ │ │ │ │ │ ├── NodeAbstract.php │ │ │ │ │ │ │ ├── NodeDumper.php │ │ │ │ │ │ │ ├── NodeTraverser.php │ │ │ │ │ │ │ ├── NodeTraverserInterface.php │ │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ │ │ └── NameResolver.php │ │ │ │ │ │ │ ├── NodeVisitorAbstract.php │ │ │ │ │ │ │ ├── Parser.php │ │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ │ ├── Multiple.php │ │ │ │ │ │ │ │ ├── Php5.php │ │ │ │ │ │ │ │ ├── Php7.php │ │ │ │ │ │ │ │ └── Tokens.php │ │ │ │ │ │ │ ├── ParserAbstract.php │ │ │ │ │ │ │ ├── ParserFactory.php │ │ │ │ │ │ │ ├── PrettyPrinter │ │ │ │ │ │ │ │ └── Standard.php │ │ │ │ │ │ │ ├── PrettyPrinterAbstract.php │ │ │ │ │ │ │ ├── Serializer.php │ │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ │ │ ├── Unserializer.php │ │ │ │ │ │ │ └── Unserializer │ │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ │ └── bootstrap.php │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ ├── test │ │ │ │ │ │ ├── PhpParser │ │ │ │ │ │ │ ├── AutoloaderTest.php │ │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ │ │ ├── FunctionTest.php │ │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ │ ├── MethodTest.php │ │ │ │ │ │ │ │ ├── NamespaceTest.php │ │ │ │ │ │ │ │ ├── ParamTest.php │ │ │ │ │ │ │ │ ├── PropertyTest.php │ │ │ │ │ │ │ │ ├── TraitTest.php │ │ │ │ │ │ │ │ └── UseTest.php │ │ │ │ │ │ │ ├── BuilderFactoryTest.php │ │ │ │ │ │ │ ├── CodeParsingTest.php │ │ │ │ │ │ │ ├── CodeTestAbstract.php │ │ │ │ │ │ │ ├── CommentTest.php │ │ │ │ │ │ │ ├── ErrorTest.php │ │ │ │ │ │ │ ├── Lexer │ │ │ │ │ │ │ │ └── EmulativeTest.php │ │ │ │ │ │ │ ├── LexerTest.php │ │ │ │ │ │ │ ├── Node │ │ │ │ │ │ │ │ ├── NameTest.php │ │ │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ │ │ ├── MagicConstTest.php │ │ │ │ │ │ │ │ │ └── StringTest.php │ │ │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ │ │ ├── ClassMethodTest.php │ │ │ │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ │ │ └── PropertyTest.php │ │ │ │ │ │ │ ├── NodeAbstractTest.php │ │ │ │ │ │ │ ├── NodeDumperTest.php │ │ │ │ │ │ │ ├── NodeTraverserTest.php │ │ │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ │ │ └── NameResolverTest.php │ │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ │ ├── MultipleTest.php │ │ │ │ │ │ │ │ ├── Php5Test.php │ │ │ │ │ │ │ │ └── Php7Test.php │ │ │ │ │ │ │ ├── ParserFactoryTest.php │ │ │ │ │ │ │ ├── ParserTest.php │ │ │ │ │ │ │ ├── PrettyPrinterTest.php │ │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ │ └── XMLTest.php │ │ │ │ │ │ │ └── Unserializer │ │ │ │ │ │ │ │ └── XMLTest.php │ │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ │ └── code │ │ │ │ │ │ │ ├── parser │ │ │ │ │ │ │ ├── blockComments.test │ │ │ │ │ │ │ ├── comments.test │ │ │ │ │ │ │ ├── errorHandling │ │ │ │ │ │ │ │ ├── eofError.test │ │ │ │ │ │ │ │ └── recovery.test │ │ │ │ │ │ │ ├── expr │ │ │ │ │ │ │ │ ├── arrayDef.test │ │ │ │ │ │ │ │ ├── assign.test │ │ │ │ │ │ │ │ ├── assignNewByRef.test │ │ │ │ │ │ │ │ ├── cast.test │ │ │ │ │ │ │ │ ├── clone.test │ │ │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ │ │ ├── comparison.test │ │ │ │ │ │ │ │ ├── constant_expr.test │ │ │ │ │ │ │ │ ├── errorSuppress.test │ │ │ │ │ │ │ │ ├── exit.test │ │ │ │ │ │ │ │ ├── fetchAndCall │ │ │ │ │ │ │ │ │ ├── args.test │ │ │ │ │ │ │ │ │ ├── constFetch.test │ │ │ │ │ │ │ │ │ ├── constantDeref.test │ │ │ │ │ │ │ │ │ ├── funcCall.test │ │ │ │ │ │ │ │ │ ├── newDeref.test │ │ │ │ │ │ │ │ │ ├── objectAccess.test │ │ │ │ │ │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ │ │ │ │ │ ├── staticCall.test │ │ │ │ │ │ │ │ │ └── staticPropertyFetch.test │ │ │ │ │ │ │ │ ├── includeAndEval.test │ │ │ │ │ │ │ │ ├── issetAndEmpty.test │ │ │ │ │ │ │ │ ├── logic.test │ │ │ │ │ │ │ │ ├── math.test │ │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ │ ├── newWithoutClass.test │ │ │ │ │ │ │ │ ├── print.test │ │ │ │ │ │ │ │ ├── shellExec.test │ │ │ │ │ │ │ │ ├── ternaryAndCoalesce.test │ │ │ │ │ │ │ │ ├── uvs │ │ │ │ │ │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ │ │ │ │ │ ├── indirectCall.test │ │ │ │ │ │ │ │ │ ├── isset.test │ │ │ │ │ │ │ │ │ ├── misc.test │ │ │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ │ │ └── staticProperty.test │ │ │ │ │ │ │ │ └── variable.test │ │ │ │ │ │ │ ├── scalar │ │ │ │ │ │ │ │ ├── constantString.test │ │ │ │ │ │ │ │ ├── docString.test │ │ │ │ │ │ │ │ ├── docStringNewlines.test │ │ │ │ │ │ │ │ ├── encapsedString.test │ │ │ │ │ │ │ │ ├── float.test │ │ │ │ │ │ │ │ ├── int.test │ │ │ │ │ │ │ │ ├── invalidOctal.test │ │ │ │ │ │ │ │ ├── magicConst.test │ │ │ │ │ │ │ │ └── unicodeEscape.test │ │ │ │ │ │ │ ├── semiReserved.test │ │ │ │ │ │ │ └── stmt │ │ │ │ │ │ │ │ ├── blocklessStatement.test │ │ │ │ │ │ │ │ ├── class │ │ │ │ │ │ │ │ ├── abstract.test │ │ │ │ │ │ │ │ ├── anonymous.test │ │ │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ │ │ ├── final.test │ │ │ │ │ │ │ │ ├── implicitPublic.test │ │ │ │ │ │ │ │ ├── interface.test │ │ │ │ │ │ │ │ ├── modifier.test │ │ │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ │ │ ├── php4Style.test │ │ │ │ │ │ │ │ ├── simple.test │ │ │ │ │ │ │ │ ├── staticMethod.test │ │ │ │ │ │ │ │ └── trait.test │ │ │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ │ │ ├── controlFlow.test │ │ │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ │ │ ├── echo.test │ │ │ │ │ │ │ │ ├── function │ │ │ │ │ │ │ │ ├── byRef.test │ │ │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ │ │ ├── defaultValues.test │ │ │ │ │ │ │ │ ├── returnTypes.test │ │ │ │ │ │ │ │ ├── scalarTypeDeclarations.test │ │ │ │ │ │ │ │ ├── specialVars.test │ │ │ │ │ │ │ │ ├── typeDeclarations.test │ │ │ │ │ │ │ │ ├── variadic.test │ │ │ │ │ │ │ │ └── variadicDefaultValue.test │ │ │ │ │ │ │ │ ├── generator │ │ │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ │ │ ├── yieldPrecedence.test │ │ │ │ │ │ │ │ └── yieldUnaryPrecedence.test │ │ │ │ │ │ │ │ ├── haltCompiler.test │ │ │ │ │ │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ │ │ │ │ │ ├── haltCompilerOffset.test │ │ │ │ │ │ │ │ ├── haltCompilerOutermostScope.test │ │ │ │ │ │ │ │ ├── hashbang.test │ │ │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ │ │ ├── inlineHTML.test │ │ │ │ │ │ │ │ ├── loop │ │ │ │ │ │ │ │ ├── do.test │ │ │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ │ │ └── while.test │ │ │ │ │ │ │ │ ├── namespace │ │ │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ │ │ ├── braced.test │ │ │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ │ │ ├── groupUseErrors.test │ │ │ │ │ │ │ │ ├── invalidName.test │ │ │ │ │ │ │ │ ├── mix.test │ │ │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ │ │ ├── nested.test │ │ │ │ │ │ │ │ ├── notBraced.test │ │ │ │ │ │ │ │ ├── nsAfterHashbang.test │ │ │ │ │ │ │ │ ├── outsideStmt.test │ │ │ │ │ │ │ │ └── outsideStmtInvalid.test │ │ │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ │ │ ├── tryWithoutCatch.test │ │ │ │ │ │ │ │ └── unset.test │ │ │ │ │ │ │ └── prettyPrinter │ │ │ │ │ │ │ ├── comments.test │ │ │ │ │ │ │ ├── expr │ │ │ │ │ │ │ ├── anonymousClass.test │ │ │ │ │ │ │ ├── call.test │ │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ │ ├── constant_deref.test │ │ │ │ │ │ │ ├── docStrings.test │ │ │ │ │ │ │ ├── include.test │ │ │ │ │ │ │ ├── intrinsics.test │ │ │ │ │ │ │ ├── list.test │ │ │ │ │ │ │ ├── literals.test │ │ │ │ │ │ │ ├── numbers.test │ │ │ │ │ │ │ ├── operators.test │ │ │ │ │ │ │ ├── parentheses.test │ │ │ │ │ │ │ ├── shortArraySyntax.test │ │ │ │ │ │ │ ├── stringEscaping.test │ │ │ │ │ │ │ ├── uvs.test │ │ │ │ │ │ │ ├── variables.test │ │ │ │ │ │ │ └── yield.test │ │ │ │ │ │ │ ├── inlineHTMLandPHPtest.file-test │ │ │ │ │ │ │ ├── onlyInlineHTML.file-test │ │ │ │ │ │ │ ├── onlyPHP.file-test │ │ │ │ │ │ │ └── stmt │ │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ │ ├── break_continue.test │ │ │ │ │ │ │ ├── class.test │ │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ │ ├── do_while.test │ │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ │ ├── function_signatures.test │ │ │ │ │ │ │ ├── global_static_variables.test │ │ │ │ │ │ │ ├── goto.test │ │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ │ ├── haltCompiler.file-test │ │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ │ ├── namespaces.test │ │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ │ ├── throw.test │ │ │ │ │ │ │ ├── traitUse.test │ │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ │ └── while.test │ │ │ │ │ └── test_old │ │ │ │ │ │ ├── run-php-src.sh │ │ │ │ │ │ └── run.php │ │ │ │ │ └── PHP-Parser-3.0.3 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── UPGRADE-1.0.md │ │ │ │ │ ├── UPGRADE-2.0.md │ │ │ │ │ ├── UPGRADE-3.0.md │ │ │ │ │ ├── bin │ │ │ │ │ └── php-parse │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── doc │ │ │ │ │ ├── 0_Introduction.markdown │ │ │ │ │ ├── 2_Usage_of_basic_components.markdown │ │ │ │ │ ├── 3_Other_node_tree_representations.markdown │ │ │ │ │ ├── 4_Code_generation.markdown │ │ │ │ │ └── component │ │ │ │ │ │ ├── Error_handling.markdown │ │ │ │ │ │ └── Lexer.markdown │ │ │ │ │ ├── grammar │ │ │ │ │ ├── README.md │ │ │ │ │ ├── parser.template │ │ │ │ │ ├── php5.y │ │ │ │ │ ├── php7.y │ │ │ │ │ ├── rebuildParsers.php │ │ │ │ │ ├── tokens.template │ │ │ │ │ └── tokens.y │ │ │ │ │ ├── lib │ │ │ │ │ ├── PhpParser │ │ │ │ │ │ ├── Autoloader.php │ │ │ │ │ │ ├── Builder.php │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ ├── Declaration.php │ │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ │ └── Use_.php │ │ │ │ │ │ ├── BuilderAbstract.php │ │ │ │ │ │ ├── BuilderFactory.php │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ ├── Comment │ │ │ │ │ │ │ └── Doc.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── ErrorHandler.php │ │ │ │ │ │ ├── ErrorHandler │ │ │ │ │ │ │ ├── Collecting.php │ │ │ │ │ │ │ └── Throwing.php │ │ │ │ │ │ ├── Lexer.php │ │ │ │ │ │ ├── Lexer │ │ │ │ │ │ │ └── Emulative.php │ │ │ │ │ │ ├── Node.php │ │ │ │ │ │ ├── Node │ │ │ │ │ │ │ ├── Arg.php │ │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ │ ├── Expr │ │ │ │ │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ │ │ │ │ ├── ArrayItem.php │ │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ │ ├── Assign.php │ │ │ │ │ │ │ │ ├── AssignOp.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.php │ │ │ │ │ │ │ │ ├── BinaryOp │ │ │ │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ │ │ │ ├── Equal.php │ │ │ │ │ │ │ │ │ ├── Greater.php │ │ │ │ │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ │ │ │ │ ├── Identical.php │ │ │ │ │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ │ │ │ │ ├── Smaller.php │ │ │ │ │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ │ │ │ │ └── Spaceship.php │ │ │ │ │ │ │ │ ├── BitwiseNot.php │ │ │ │ │ │ │ │ ├── BooleanNot.php │ │ │ │ │ │ │ │ ├── Cast.php │ │ │ │ │ │ │ │ ├── Cast │ │ │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ │ │ ├── Bool_.php │ │ │ │ │ │ │ │ │ ├── Double.php │ │ │ │ │ │ │ │ │ ├── Int_.php │ │ │ │ │ │ │ │ │ ├── Object_.php │ │ │ │ │ │ │ │ │ ├── String_.php │ │ │ │ │ │ │ │ │ └── Unset_.php │ │ │ │ │ │ │ │ ├── ClassConstFetch.php │ │ │ │ │ │ │ │ ├── Clone_.php │ │ │ │ │ │ │ │ ├── Closure.php │ │ │ │ │ │ │ │ ├── ClosureUse.php │ │ │ │ │ │ │ │ ├── ConstFetch.php │ │ │ │ │ │ │ │ ├── Empty_.php │ │ │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ │ │ ├── ErrorSuppress.php │ │ │ │ │ │ │ │ ├── Eval_.php │ │ │ │ │ │ │ │ ├── Exit_.php │ │ │ │ │ │ │ │ ├── FuncCall.php │ │ │ │ │ │ │ │ ├── Include_.php │ │ │ │ │ │ │ │ ├── Instanceof_.php │ │ │ │ │ │ │ │ ├── Isset_.php │ │ │ │ │ │ │ │ ├── List_.php │ │ │ │ │ │ │ │ ├── MethodCall.php │ │ │ │ │ │ │ │ ├── New_.php │ │ │ │ │ │ │ │ ├── PostDec.php │ │ │ │ │ │ │ │ ├── PostInc.php │ │ │ │ │ │ │ │ ├── PreDec.php │ │ │ │ │ │ │ │ ├── PreInc.php │ │ │ │ │ │ │ │ ├── Print_.php │ │ │ │ │ │ │ │ ├── PropertyFetch.php │ │ │ │ │ │ │ │ ├── ShellExec.php │ │ │ │ │ │ │ │ ├── StaticCall.php │ │ │ │ │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ │ │ │ │ ├── Ternary.php │ │ │ │ │ │ │ │ ├── UnaryMinus.php │ │ │ │ │ │ │ │ ├── UnaryPlus.php │ │ │ │ │ │ │ │ ├── Variable.php │ │ │ │ │ │ │ │ ├── YieldFrom.php │ │ │ │ │ │ │ │ └── Yield_.php │ │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ │ ├── Name │ │ │ │ │ │ │ │ ├── FullyQualified.php │ │ │ │ │ │ │ │ └── Relative.php │ │ │ │ │ │ │ ├── NullableType.php │ │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ │ ├── Scalar.php │ │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ │ ├── DNumber.php │ │ │ │ │ │ │ │ ├── Encapsed.php │ │ │ │ │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ │ │ │ │ ├── LNumber.php │ │ │ │ │ │ │ │ ├── MagicConst.php │ │ │ │ │ │ │ │ ├── MagicConst │ │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ │ ├── Dir.php │ │ │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ │ └── Trait_.php │ │ │ │ │ │ │ │ └── String_.php │ │ │ │ │ │ │ ├── Stmt.php │ │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ │ ├── Break_.php │ │ │ │ │ │ │ │ ├── Case_.php │ │ │ │ │ │ │ │ ├── Catch_.php │ │ │ │ │ │ │ │ ├── ClassConst.php │ │ │ │ │ │ │ │ ├── ClassLike.php │ │ │ │ │ │ │ │ ├── ClassMethod.php │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ │ │ ├── Continue_.php │ │ │ │ │ │ │ │ ├── DeclareDeclare.php │ │ │ │ │ │ │ │ ├── Declare_.php │ │ │ │ │ │ │ │ ├── Do_.php │ │ │ │ │ │ │ │ ├── Echo_.php │ │ │ │ │ │ │ │ ├── ElseIf_.php │ │ │ │ │ │ │ │ ├── Else_.php │ │ │ │ │ │ │ │ ├── Finally_.php │ │ │ │ │ │ │ │ ├── For_.php │ │ │ │ │ │ │ │ ├── Foreach_.php │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ ├── Global_.php │ │ │ │ │ │ │ │ ├── Goto_.php │ │ │ │ │ │ │ │ ├── GroupUse.php │ │ │ │ │ │ │ │ ├── HaltCompiler.php │ │ │ │ │ │ │ │ ├── If_.php │ │ │ │ │ │ │ │ ├── InlineHTML.php │ │ │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ │ │ ├── Label.php │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ ├── Nop.php │ │ │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ │ │ ├── PropertyProperty.php │ │ │ │ │ │ │ │ ├── Return_.php │ │ │ │ │ │ │ │ ├── StaticVar.php │ │ │ │ │ │ │ │ ├── Static_.php │ │ │ │ │ │ │ │ ├── Switch_.php │ │ │ │ │ │ │ │ ├── Throw_.php │ │ │ │ │ │ │ │ ├── TraitUse.php │ │ │ │ │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ │ │ │ │ ├── TraitUseAdaptation │ │ │ │ │ │ │ │ ├── Alias.php │ │ │ │ │ │ │ │ └── Precedence.php │ │ │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ │ │ ├── TryCatch.php │ │ │ │ │ │ │ │ ├── Unset_.php │ │ │ │ │ │ │ │ ├── UseUse.php │ │ │ │ │ │ │ │ ├── Use_.php │ │ │ │ │ │ │ │ └── While_.php │ │ │ │ │ │ ├── NodeAbstract.php │ │ │ │ │ │ ├── NodeDumper.php │ │ │ │ │ │ ├── NodeTraverser.php │ │ │ │ │ │ ├── NodeTraverserInterface.php │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ │ └── NameResolver.php │ │ │ │ │ │ ├── NodeVisitorAbstract.php │ │ │ │ │ │ ├── Parser.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── Multiple.php │ │ │ │ │ │ │ ├── Php5.php │ │ │ │ │ │ │ ├── Php7.php │ │ │ │ │ │ │ └── Tokens.php │ │ │ │ │ │ ├── ParserAbstract.php │ │ │ │ │ │ ├── ParserFactory.php │ │ │ │ │ │ ├── PrettyPrinter │ │ │ │ │ │ │ └── Standard.php │ │ │ │ │ │ ├── PrettyPrinterAbstract.php │ │ │ │ │ │ ├── Serializer.php │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ │ ├── Unserializer.php │ │ │ │ │ │ └── Unserializer │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ └── bootstrap.php │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ ├── test │ │ │ │ │ ├── PhpParser │ │ │ │ │ │ ├── AutoloaderTest.php │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ │ ├── FunctionTest.php │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ ├── MethodTest.php │ │ │ │ │ │ │ ├── NamespaceTest.php │ │ │ │ │ │ │ ├── ParamTest.php │ │ │ │ │ │ │ ├── PropertyTest.php │ │ │ │ │ │ │ ├── TraitTest.php │ │ │ │ │ │ │ └── UseTest.php │ │ │ │ │ │ ├── BuilderFactoryTest.php │ │ │ │ │ │ ├── CodeParsingTest.php │ │ │ │ │ │ ├── CodeTestAbstract.php │ │ │ │ │ │ ├── CommentTest.php │ │ │ │ │ │ ├── ErrorHandler │ │ │ │ │ │ │ ├── CollectingTest.php │ │ │ │ │ │ │ └── ThrowingTest.php │ │ │ │ │ │ ├── ErrorTest.php │ │ │ │ │ │ ├── Lexer │ │ │ │ │ │ │ └── EmulativeTest.php │ │ │ │ │ │ ├── LexerTest.php │ │ │ │ │ │ ├── Node │ │ │ │ │ │ │ ├── NameTest.php │ │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ │ ├── MagicConstTest.php │ │ │ │ │ │ │ │ └── StringTest.php │ │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ │ ├── ClassConstTest.php │ │ │ │ │ │ │ │ ├── ClassMethodTest.php │ │ │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ │ └── PropertyTest.php │ │ │ │ │ │ ├── NodeAbstractTest.php │ │ │ │ │ │ ├── NodeDumperTest.php │ │ │ │ │ │ ├── NodeTraverserTest.php │ │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ │ └── NameResolverTest.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── MultipleTest.php │ │ │ │ │ │ │ ├── Php5Test.php │ │ │ │ │ │ │ └── Php7Test.php │ │ │ │ │ │ ├── ParserFactoryTest.php │ │ │ │ │ │ ├── ParserTest.php │ │ │ │ │ │ ├── PrettyPrinterTest.php │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ └── XMLTest.php │ │ │ │ │ │ └── Unserializer │ │ │ │ │ │ │ └── XMLTest.php │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ └── code │ │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── blockComments.test │ │ │ │ │ │ ├── comments.test │ │ │ │ │ │ ├── errorHandling │ │ │ │ │ │ │ ├── eofError.test │ │ │ │ │ │ │ ├── lexerErrors.test │ │ │ │ │ │ │ └── recovery.test │ │ │ │ │ │ ├── expr │ │ │ │ │ │ │ ├── arrayDef.test │ │ │ │ │ │ │ ├── arrayDestructuring.test │ │ │ │ │ │ │ ├── assign.test │ │ │ │ │ │ │ ├── assignNewByRef.test │ │ │ │ │ │ │ ├── cast.test │ │ │ │ │ │ │ ├── clone.test │ │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ │ ├── comparison.test │ │ │ │ │ │ │ ├── constant_expr.test │ │ │ │ │ │ │ ├── errorSuppress.test │ │ │ │ │ │ │ ├── exit.test │ │ │ │ │ │ │ ├── fetchAndCall │ │ │ │ │ │ │ │ ├── args.test │ │ │ │ │ │ │ │ ├── constFetch.test │ │ │ │ │ │ │ │ ├── constantDeref.test │ │ │ │ │ │ │ │ ├── funcCall.test │ │ │ │ │ │ │ │ ├── newDeref.test │ │ │ │ │ │ │ │ ├── objectAccess.test │ │ │ │ │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ │ │ │ │ ├── staticCall.test │ │ │ │ │ │ │ │ └── staticPropertyFetch.test │ │ │ │ │ │ │ ├── includeAndEval.test │ │ │ │ │ │ │ ├── issetAndEmpty.test │ │ │ │ │ │ │ ├── listWithKeys.test │ │ │ │ │ │ │ ├── logic.test │ │ │ │ │ │ │ ├── math.test │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ ├── newWithoutClass.test │ │ │ │ │ │ │ ├── print.test │ │ │ │ │ │ │ ├── shellExec.test │ │ │ │ │ │ │ ├── ternaryAndCoalesce.test │ │ │ │ │ │ │ ├── uvs │ │ │ │ │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ │ │ │ │ ├── indirectCall.test │ │ │ │ │ │ │ │ ├── isset.test │ │ │ │ │ │ │ │ ├── misc.test │ │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ │ └── staticProperty.test │ │ │ │ │ │ │ └── variable.test │ │ │ │ │ │ ├── scalar │ │ │ │ │ │ │ ├── constantString.test │ │ │ │ │ │ │ ├── docString.test │ │ │ │ │ │ │ ├── docStringNewlines.test │ │ │ │ │ │ │ ├── encapsedNegVarOffset.test │ │ │ │ │ │ │ ├── encapsedString.test │ │ │ │ │ │ │ ├── float.test │ │ │ │ │ │ │ ├── int.test │ │ │ │ │ │ │ ├── invalidOctal.test │ │ │ │ │ │ │ ├── magicConst.test │ │ │ │ │ │ │ └── unicodeEscape.test │ │ │ │ │ │ ├── semiReserved.test │ │ │ │ │ │ └── stmt │ │ │ │ │ │ │ ├── blocklessStatement.test │ │ │ │ │ │ │ ├── class │ │ │ │ │ │ │ ├── abstract.test │ │ │ │ │ │ │ ├── anonymous.test │ │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ │ ├── constModifierErrors.test │ │ │ │ │ │ │ ├── constModifiers.test │ │ │ │ │ │ │ ├── final.test │ │ │ │ │ │ │ ├── implicitPublic.test │ │ │ │ │ │ │ ├── interface.test │ │ │ │ │ │ │ ├── modifier.test │ │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ │ ├── php4Style.test │ │ │ │ │ │ │ ├── simple.test │ │ │ │ │ │ │ ├── staticMethod.test │ │ │ │ │ │ │ └── trait.test │ │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ │ ├── controlFlow.test │ │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ │ ├── echo.test │ │ │ │ │ │ │ ├── function │ │ │ │ │ │ │ ├── builtinTypeDeclarations.test │ │ │ │ │ │ │ ├── byRef.test │ │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ │ ├── defaultValues.test │ │ │ │ │ │ │ ├── nullableTypes.test │ │ │ │ │ │ │ ├── returnTypes.test │ │ │ │ │ │ │ ├── specialVars.test │ │ │ │ │ │ │ ├── typeDeclarations.test │ │ │ │ │ │ │ ├── variadic.test │ │ │ │ │ │ │ └── variadicDefaultValue.test │ │ │ │ │ │ │ ├── generator │ │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ │ ├── yieldPrecedence.test │ │ │ │ │ │ │ └── yieldUnaryPrecedence.test │ │ │ │ │ │ │ ├── haltCompiler.test │ │ │ │ │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ │ │ │ │ ├── haltCompilerOffset.test │ │ │ │ │ │ │ ├── haltCompilerOutermostScope.test │ │ │ │ │ │ │ ├── hashbang.test │ │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ │ ├── inlineHTML.test │ │ │ │ │ │ │ ├── loop │ │ │ │ │ │ │ ├── do.test │ │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ │ └── while.test │ │ │ │ │ │ │ ├── multiCatch.test │ │ │ │ │ │ │ ├── namespace │ │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ │ ├── braced.test │ │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ │ ├── groupUseErrors.test │ │ │ │ │ │ │ ├── groupUsePositions.test │ │ │ │ │ │ │ ├── invalidName.test │ │ │ │ │ │ │ ├── mix.test │ │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ │ ├── nested.test │ │ │ │ │ │ │ ├── notBraced.test │ │ │ │ │ │ │ ├── nsAfterHashbang.test │ │ │ │ │ │ │ ├── outsideStmt.test │ │ │ │ │ │ │ └── outsideStmtInvalid.test │ │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ │ ├── tryWithoutCatch.test │ │ │ │ │ │ │ └── unset.test │ │ │ │ │ │ └── prettyPrinter │ │ │ │ │ │ ├── comments.test │ │ │ │ │ │ ├── expr │ │ │ │ │ │ ├── anonymousClass.test │ │ │ │ │ │ ├── arrayDestructuring.test │ │ │ │ │ │ ├── call.test │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ ├── constant_deref.test │ │ │ │ │ │ ├── docStrings.test │ │ │ │ │ │ ├── include.test │ │ │ │ │ │ ├── intrinsics.test │ │ │ │ │ │ ├── list.test │ │ │ │ │ │ ├── literals.test │ │ │ │ │ │ ├── numbers.test │ │ │ │ │ │ ├── operators.test │ │ │ │ │ │ ├── parentheses.test │ │ │ │ │ │ ├── shortArraySyntax.test │ │ │ │ │ │ ├── stringEscaping.test │ │ │ │ │ │ ├── uvs.test │ │ │ │ │ │ ├── variables.test │ │ │ │ │ │ └── yield.test │ │ │ │ │ │ ├── inlineHTMLandPHPtest.file-test │ │ │ │ │ │ ├── onlyInlineHTML.file-test │ │ │ │ │ │ ├── onlyPHP.file-test │ │ │ │ │ │ └── stmt │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ ├── break_continue.test │ │ │ │ │ │ ├── class.test │ │ │ │ │ │ ├── class_const.test │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ ├── do_while.test │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ ├── function_signatures.test │ │ │ │ │ │ ├── global_static_variables.test │ │ │ │ │ │ ├── goto.test │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ ├── haltCompiler.file-test │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ ├── multiCatch.test │ │ │ │ │ │ ├── namespaces.test │ │ │ │ │ │ ├── nullable_types.test │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ ├── throw.test │ │ │ │ │ │ ├── traitUse.test │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ └── while.test │ │ │ │ │ └── test_old │ │ │ │ │ ├── run-php-src.sh │ │ │ │ │ └── run.php │ │ │ └── replacing │ │ │ │ ├── core │ │ │ │ ├── CodeIgniter.php │ │ │ │ ├── Common.php │ │ │ │ ├── Input.php │ │ │ │ ├── Loader.php │ │ │ │ ├── Output.php │ │ │ │ └── old │ │ │ │ │ ├── 3.0.0-Common.php │ │ │ │ │ ├── 3.0.0-Loader.php │ │ │ │ │ ├── 3.0.1-Loader.php │ │ │ │ │ ├── 3.0.3-CodeIgniter.php │ │ │ │ │ ├── 3.0.3-Input.php │ │ │ │ │ ├── 3.0.3-Loader.php │ │ │ │ │ ├── 3.0.4-CodeIgniter.php │ │ │ │ │ ├── 3.0.4-Input.php │ │ │ │ │ ├── 3.0.4-Loader.php │ │ │ │ │ ├── 3.0.5-CodeIgniter.php │ │ │ │ │ ├── 3.0.5-Loader.php │ │ │ │ │ ├── 3.0.6-CodeIgniter.php │ │ │ │ │ ├── 3.1.0-CodeIgniter.php │ │ │ │ │ ├── 3.1.0-Common.php │ │ │ │ │ ├── 3.1.0-Input.php │ │ │ │ │ ├── 3.1.0-Loader.php │ │ │ │ │ ├── 3.1.10-CodeIgniter.php │ │ │ │ │ ├── 3.1.10-Common.php │ │ │ │ │ ├── 3.1.10-Input.php │ │ │ │ │ ├── 3.1.10-Loader.php │ │ │ │ │ ├── 3.1.10-Output.php │ │ │ │ │ ├── 3.1.2-CodeIgniter.php │ │ │ │ │ ├── 3.1.2-Common.php │ │ │ │ │ ├── 3.1.2-Input.php │ │ │ │ │ ├── 3.1.2-Loader.php │ │ │ │ │ ├── 3.1.3-CodeIgniter.php │ │ │ │ │ ├── 3.1.3-Common.php │ │ │ │ │ ├── 3.1.3-Input.php │ │ │ │ │ ├── 3.1.3-Loader.php │ │ │ │ │ ├── 3.1.4-CodeIgniter.php │ │ │ │ │ ├── 3.1.4-Common.php │ │ │ │ │ ├── 3.1.4-Input.php │ │ │ │ │ ├── 3.1.4-Loader.php │ │ │ │ │ ├── 3.1.5-CodeIgniter.php │ │ │ │ │ ├── 3.1.5-Common.php │ │ │ │ │ ├── 3.1.5-Input.php │ │ │ │ │ ├── 3.1.5-Loader.php │ │ │ │ │ ├── 3.1.6-CodeIgniter.php │ │ │ │ │ ├── 3.1.6-Common.php │ │ │ │ │ ├── 3.1.6-Input.php │ │ │ │ │ ├── 3.1.6-Loader.php │ │ │ │ │ ├── 3.1.7-CodeIgniter.php │ │ │ │ │ ├── 3.1.7-Common.php │ │ │ │ │ ├── 3.1.7-Input.php │ │ │ │ │ ├── 3.1.7-Loader.php │ │ │ │ │ ├── 3.1.7-Output.php │ │ │ │ │ ├── 3.1.8-CodeIgniter.php │ │ │ │ │ ├── 3.1.8-Common.php │ │ │ │ │ ├── 3.1.8-Input.php │ │ │ │ │ ├── 3.1.8-Loader.php │ │ │ │ │ ├── 3.1.8-Output.php │ │ │ │ │ ├── 3.1.9-CodeIgniter.php │ │ │ │ │ ├── 3.1.9-Common.php │ │ │ │ │ ├── 3.1.9-Input.php │ │ │ │ │ ├── 3.1.9-Loader.php │ │ │ │ │ └── 3.1.9-Output.php │ │ │ │ ├── helpers │ │ │ │ ├── download_helper.php │ │ │ │ ├── old │ │ │ │ │ ├── 3.1.10-download_helper.php │ │ │ │ │ ├── 3.1.10-url_helper.php │ │ │ │ │ ├── 3.1.6-download_helper.php │ │ │ │ │ ├── 3.1.6-url_helper.php │ │ │ │ │ ├── 3.1.7-download_helper.php │ │ │ │ │ ├── 3.1.7-url_helper.php │ │ │ │ │ ├── 3.1.8-download_helper.php │ │ │ │ │ ├── 3.1.8-url_helper.php │ │ │ │ │ ├── 3.1.9-download_helper.php │ │ │ │ │ └── 3.1.9-url_helper.php │ │ │ │ └── url_helper.php │ │ │ │ ├── libraries │ │ │ │ ├── Upload.php │ │ │ │ └── old │ │ │ │ │ ├── 3.1.10-Upload.php │ │ │ │ │ ├── 3.1.2-Upload.php │ │ │ │ │ ├── 3.1.3-Upload.php │ │ │ │ │ ├── 3.1.4-Upload.php │ │ │ │ │ ├── 3.1.5-Upload.php │ │ │ │ │ ├── 3.1.6-Upload.php │ │ │ │ │ ├── 3.1.7-Upload.php │ │ │ │ │ ├── 3.1.8-Upload.php │ │ │ │ │ └── 3.1.9-Upload.php │ │ │ │ ├── make-links.sh │ │ │ │ └── mv-current.sh │ │ ├── controllers │ │ │ ├── Order_test.php │ │ │ └── Welcome_test.php │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── hooks │ │ │ └── .gitkeep │ │ ├── libraries │ │ │ └── .gitkeep │ │ ├── mocks │ │ │ ├── autoloader.php │ │ │ └── libraries │ │ │ │ └── email.php │ │ ├── models │ │ │ ├── .gitkeep │ │ │ └── Order_model_test.php │ │ └── phpunit.xml │ ├── third_party │ │ └── index.html │ └── views │ │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ ├── html │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ └── index.html │ │ ├── index.html │ │ └── welcome_message.php ├── composer.json ├── composer.lock ├── index.php └── system │ ├── .htaccess │ ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html │ ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html │ ├── fonts │ ├── index.html │ └── texb.ttf │ ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php │ ├── index.html │ ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html │ └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Javascript │ ├── Jquery.php │ └── index.html │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html └── warehouse ├── .gitignore ├── application ├── .htaccess ├── cache │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ ├── testing │ │ └── database.php │ └── user_agents.php ├── controllers │ ├── Migrate.php │ ├── Product.php │ ├── Welcome.php │ └── index.html ├── core │ └── index.html ├── database │ └── data.db ├── helpers │ ├── index.html │ └── product_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── migrations │ └── 001_add_product.php ├── models │ ├── Product_model.php │ └── index.html ├── tests │ ├── .gitignore │ ├── .phpunit.result.cache │ ├── Bootstrap.php │ ├── DbTestCase.php │ ├── TestCase.php │ ├── UnitTestCase.php │ ├── _ci_phpunit_test │ │ ├── CIPHPUnitTest.php │ │ ├── CIPHPUnitTestAutoloader.php │ │ ├── CIPHPUnitTestCase.php │ │ ├── CIPHPUnitTestDbConnectionStore.php │ │ ├── CIPHPUnitTestDbTestCase.php │ │ ├── CIPHPUnitTestDouble.php │ │ ├── CIPHPUnitTestFileCache.php │ │ ├── CIPHPUnitTestNullCodeIgniter.php │ │ ├── CIPHPUnitTestReflection.php │ │ ├── CIPHPUnitTestRequest.php │ │ ├── CIPHPUnitTestRouter.php │ │ ├── CIPHPUnitTestSuperGlobal.php │ │ ├── CIPHPUnitTestUnitTestCase.php │ │ ├── ChangeLog.md │ │ ├── TestSuiteProvider.php │ │ ├── alias │ │ │ ├── MonkeyPatch.php │ │ │ └── ReflectionHelper.php │ │ ├── autoloader.php │ │ ├── exceptions │ │ │ ├── CIPHPUnitTestExitException.php │ │ │ ├── CIPHPUnitTestRedirectException.php │ │ │ ├── CIPHPUnitTestShow404Exception.php │ │ │ └── CIPHPUnitTestShowErrorException.php │ │ ├── functions.php │ │ ├── patcher │ │ │ ├── 2.x │ │ │ │ ├── Exception │ │ │ │ │ └── ExitException.php │ │ │ │ ├── MonkeyPatchManager.php │ │ │ │ └── Patcher │ │ │ │ │ ├── AbstractPatcher.php │ │ │ │ │ ├── Backtrace.php │ │ │ │ │ ├── ConstantPatcher.php │ │ │ │ │ ├── ConstantPatcher │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ └── Proxy.php │ │ │ │ │ ├── ExitPatcher.php │ │ │ │ │ ├── FunctionPatcher.php │ │ │ │ │ ├── FunctionPatcher │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ └── Proxy.php │ │ │ │ │ ├── MethodPatcher.php │ │ │ │ │ └── MethodPatcher │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ └── PatchManager.php │ │ │ ├── 3.x │ │ │ │ ├── Exception │ │ │ │ │ └── ExitException.php │ │ │ │ ├── MonkeyPatchManager.php │ │ │ │ └── Patcher │ │ │ │ │ ├── AbstractPatcher.php │ │ │ │ │ ├── Backtrace.php │ │ │ │ │ ├── ConstantPatcher.php │ │ │ │ │ ├── ConstantPatcher │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ └── Proxy.php │ │ │ │ │ ├── ExitPatcher.php │ │ │ │ │ ├── FunctionPatcher.php │ │ │ │ │ ├── FunctionPatcher │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ └── Proxy.php │ │ │ │ │ ├── MethodPatcher.php │ │ │ │ │ └── MethodPatcher │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ └── PatchManager.php │ │ │ ├── Cache.php │ │ │ ├── IncludeStream.php │ │ │ ├── InvocationVerifier.php │ │ │ ├── MonkeyPatch.php │ │ │ ├── PathChecker.php │ │ │ ├── bootstrap.php │ │ │ ├── functions │ │ │ │ └── exit__.php │ │ │ └── third_party │ │ │ │ ├── PHP-Parser-2.1.1 │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── UPGRADE-1.0.md │ │ │ │ ├── UPGRADE-2.0.md │ │ │ │ ├── bin │ │ │ │ │ └── php-parse │ │ │ │ ├── composer.json │ │ │ │ ├── doc │ │ │ │ │ ├── 0_Introduction.markdown │ │ │ │ │ ├── 2_Usage_of_basic_components.markdown │ │ │ │ │ ├── 3_Other_node_tree_representations.markdown │ │ │ │ │ ├── 4_Code_generation.markdown │ │ │ │ │ └── component │ │ │ │ │ │ ├── Error.markdown │ │ │ │ │ │ └── Lexer.markdown │ │ │ │ ├── grammar │ │ │ │ │ ├── README.md │ │ │ │ │ ├── analyze.php │ │ │ │ │ ├── parser.template │ │ │ │ │ ├── php5.y │ │ │ │ │ ├── php7.y │ │ │ │ │ ├── rebuildParsers.php │ │ │ │ │ ├── tokens.template │ │ │ │ │ └── tokens.y │ │ │ │ ├── lib │ │ │ │ │ ├── PhpParser │ │ │ │ │ │ ├── Autoloader.php │ │ │ │ │ │ ├── Builder.php │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ ├── Declaration.php │ │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ │ └── Use_.php │ │ │ │ │ │ ├── BuilderAbstract.php │ │ │ │ │ │ ├── BuilderFactory.php │ │ │ │ │ │ ├── Comment.php │ │ │ │ │ │ ├── Comment │ │ │ │ │ │ │ └── Doc.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── Lexer.php │ │ │ │ │ │ ├── Lexer │ │ │ │ │ │ │ └── Emulative.php │ │ │ │ │ │ ├── Node.php │ │ │ │ │ │ ├── Node │ │ │ │ │ │ │ ├── Arg.php │ │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ │ ├── Expr │ │ │ │ │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ │ │ │ │ ├── ArrayItem.php │ │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ │ ├── Assign.php │ │ │ │ │ │ │ │ ├── AssignOp.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.php │ │ │ │ │ │ │ │ ├── BinaryOp │ │ │ │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ │ │ │ ├── Equal.php │ │ │ │ │ │ │ │ │ ├── Greater.php │ │ │ │ │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ │ │ │ │ ├── Identical.php │ │ │ │ │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ │ │ │ │ ├── Smaller.php │ │ │ │ │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ │ │ │ │ └── Spaceship.php │ │ │ │ │ │ │ │ ├── BitwiseNot.php │ │ │ │ │ │ │ │ ├── BooleanNot.php │ │ │ │ │ │ │ │ ├── Cast.php │ │ │ │ │ │ │ │ ├── Cast │ │ │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ │ │ ├── Bool_.php │ │ │ │ │ │ │ │ │ ├── Double.php │ │ │ │ │ │ │ │ │ ├── Int_.php │ │ │ │ │ │ │ │ │ ├── Object_.php │ │ │ │ │ │ │ │ │ ├── String_.php │ │ │ │ │ │ │ │ │ └── Unset_.php │ │ │ │ │ │ │ │ ├── ClassConstFetch.php │ │ │ │ │ │ │ │ ├── Clone_.php │ │ │ │ │ │ │ │ ├── Closure.php │ │ │ │ │ │ │ │ ├── ClosureUse.php │ │ │ │ │ │ │ │ ├── ConstFetch.php │ │ │ │ │ │ │ │ ├── Empty_.php │ │ │ │ │ │ │ │ ├── ErrorSuppress.php │ │ │ │ │ │ │ │ ├── Eval_.php │ │ │ │ │ │ │ │ ├── Exit_.php │ │ │ │ │ │ │ │ ├── FuncCall.php │ │ │ │ │ │ │ │ ├── Include_.php │ │ │ │ │ │ │ │ ├── Instanceof_.php │ │ │ │ │ │ │ │ ├── Isset_.php │ │ │ │ │ │ │ │ ├── List_.php │ │ │ │ │ │ │ │ ├── MethodCall.php │ │ │ │ │ │ │ │ ├── New_.php │ │ │ │ │ │ │ │ ├── PostDec.php │ │ │ │ │ │ │ │ ├── PostInc.php │ │ │ │ │ │ │ │ ├── PreDec.php │ │ │ │ │ │ │ │ ├── PreInc.php │ │ │ │ │ │ │ │ ├── Print_.php │ │ │ │ │ │ │ │ ├── PropertyFetch.php │ │ │ │ │ │ │ │ ├── ShellExec.php │ │ │ │ │ │ │ │ ├── StaticCall.php │ │ │ │ │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ │ │ │ │ ├── Ternary.php │ │ │ │ │ │ │ │ ├── UnaryMinus.php │ │ │ │ │ │ │ │ ├── UnaryPlus.php │ │ │ │ │ │ │ │ ├── Variable.php │ │ │ │ │ │ │ │ ├── YieldFrom.php │ │ │ │ │ │ │ │ └── Yield_.php │ │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ │ ├── Name │ │ │ │ │ │ │ │ ├── FullyQualified.php │ │ │ │ │ │ │ │ └── Relative.php │ │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ │ ├── Scalar.php │ │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ │ ├── DNumber.php │ │ │ │ │ │ │ │ ├── Encapsed.php │ │ │ │ │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ │ │ │ │ ├── LNumber.php │ │ │ │ │ │ │ │ ├── MagicConst.php │ │ │ │ │ │ │ │ ├── MagicConst │ │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ │ ├── Dir.php │ │ │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ │ └── Trait_.php │ │ │ │ │ │ │ │ └── String_.php │ │ │ │ │ │ │ ├── Stmt.php │ │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ │ ├── Break_.php │ │ │ │ │ │ │ │ ├── Case_.php │ │ │ │ │ │ │ │ ├── Catch_.php │ │ │ │ │ │ │ │ ├── ClassConst.php │ │ │ │ │ │ │ │ ├── ClassLike.php │ │ │ │ │ │ │ │ ├── ClassMethod.php │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ │ │ ├── Continue_.php │ │ │ │ │ │ │ │ ├── DeclareDeclare.php │ │ │ │ │ │ │ │ ├── Declare_.php │ │ │ │ │ │ │ │ ├── Do_.php │ │ │ │ │ │ │ │ ├── Echo_.php │ │ │ │ │ │ │ │ ├── ElseIf_.php │ │ │ │ │ │ │ │ ├── Else_.php │ │ │ │ │ │ │ │ ├── For_.php │ │ │ │ │ │ │ │ ├── Foreach_.php │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ ├── Global_.php │ │ │ │ │ │ │ │ ├── Goto_.php │ │ │ │ │ │ │ │ ├── GroupUse.php │ │ │ │ │ │ │ │ ├── HaltCompiler.php │ │ │ │ │ │ │ │ ├── If_.php │ │ │ │ │ │ │ │ ├── InlineHTML.php │ │ │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ │ │ ├── Label.php │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ ├── Nop.php │ │ │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ │ │ ├── PropertyProperty.php │ │ │ │ │ │ │ │ ├── Return_.php │ │ │ │ │ │ │ │ ├── StaticVar.php │ │ │ │ │ │ │ │ ├── Static_.php │ │ │ │ │ │ │ │ ├── Switch_.php │ │ │ │ │ │ │ │ ├── Throw_.php │ │ │ │ │ │ │ │ ├── TraitUse.php │ │ │ │ │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ │ │ │ │ ├── TraitUseAdaptation │ │ │ │ │ │ │ │ ├── Alias.php │ │ │ │ │ │ │ │ └── Precedence.php │ │ │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ │ │ ├── TryCatch.php │ │ │ │ │ │ │ │ ├── Unset_.php │ │ │ │ │ │ │ │ ├── UseUse.php │ │ │ │ │ │ │ │ ├── Use_.php │ │ │ │ │ │ │ │ └── While_.php │ │ │ │ │ │ ├── NodeAbstract.php │ │ │ │ │ │ ├── NodeDumper.php │ │ │ │ │ │ ├── NodeTraverser.php │ │ │ │ │ │ ├── NodeTraverserInterface.php │ │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ │ └── NameResolver.php │ │ │ │ │ │ ├── NodeVisitorAbstract.php │ │ │ │ │ │ ├── Parser.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── Multiple.php │ │ │ │ │ │ │ ├── Php5.php │ │ │ │ │ │ │ ├── Php7.php │ │ │ │ │ │ │ └── Tokens.php │ │ │ │ │ │ ├── ParserAbstract.php │ │ │ │ │ │ ├── ParserFactory.php │ │ │ │ │ │ ├── PrettyPrinter │ │ │ │ │ │ │ └── Standard.php │ │ │ │ │ │ ├── PrettyPrinterAbstract.php │ │ │ │ │ │ ├── Serializer.php │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ │ ├── Unserializer.php │ │ │ │ │ │ └── Unserializer │ │ │ │ │ │ │ └── XML.php │ │ │ │ │ └── bootstrap.php │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── test │ │ │ │ │ ├── PhpParser │ │ │ │ │ │ ├── AutoloaderTest.php │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ │ ├── FunctionTest.php │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ ├── MethodTest.php │ │ │ │ │ │ │ ├── NamespaceTest.php │ │ │ │ │ │ │ ├── ParamTest.php │ │ │ │ │ │ │ ├── PropertyTest.php │ │ │ │ │ │ │ ├── TraitTest.php │ │ │ │ │ │ │ └── UseTest.php │ │ │ │ │ │ ├── BuilderFactoryTest.php │ │ │ │ │ │ ├── CodeParsingTest.php │ │ │ │ │ │ ├── CodeTestAbstract.php │ │ │ │ │ │ ├── CommentTest.php │ │ │ │ │ │ ├── ErrorTest.php │ │ │ │ │ │ ├── Lexer │ │ │ │ │ │ │ └── EmulativeTest.php │ │ │ │ │ │ ├── LexerTest.php │ │ │ │ │ │ ├── Node │ │ │ │ │ │ │ ├── NameTest.php │ │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ │ ├── MagicConstTest.php │ │ │ │ │ │ │ │ └── StringTest.php │ │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ │ ├── ClassMethodTest.php │ │ │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ │ └── PropertyTest.php │ │ │ │ │ │ ├── NodeAbstractTest.php │ │ │ │ │ │ ├── NodeDumperTest.php │ │ │ │ │ │ ├── NodeTraverserTest.php │ │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ │ └── NameResolverTest.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── MultipleTest.php │ │ │ │ │ │ │ ├── Php5Test.php │ │ │ │ │ │ │ └── Php7Test.php │ │ │ │ │ │ ├── ParserFactoryTest.php │ │ │ │ │ │ ├── ParserTest.php │ │ │ │ │ │ ├── PrettyPrinterTest.php │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ └── XMLTest.php │ │ │ │ │ │ └── Unserializer │ │ │ │ │ │ │ └── XMLTest.php │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ └── code │ │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── blockComments.test │ │ │ │ │ │ ├── comments.test │ │ │ │ │ │ ├── errorHandling │ │ │ │ │ │ │ ├── eofError.test │ │ │ │ │ │ │ └── recovery.test │ │ │ │ │ │ ├── expr │ │ │ │ │ │ │ ├── arrayDef.test │ │ │ │ │ │ │ ├── assign.test │ │ │ │ │ │ │ ├── assignNewByRef.test │ │ │ │ │ │ │ ├── cast.test │ │ │ │ │ │ │ ├── clone.test │ │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ │ ├── comparison.test │ │ │ │ │ │ │ ├── constant_expr.test │ │ │ │ │ │ │ ├── errorSuppress.test │ │ │ │ │ │ │ ├── exit.test │ │ │ │ │ │ │ ├── fetchAndCall │ │ │ │ │ │ │ │ ├── args.test │ │ │ │ │ │ │ │ ├── constFetch.test │ │ │ │ │ │ │ │ ├── constantDeref.test │ │ │ │ │ │ │ │ ├── funcCall.test │ │ │ │ │ │ │ │ ├── newDeref.test │ │ │ │ │ │ │ │ ├── objectAccess.test │ │ │ │ │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ │ │ │ │ ├── staticCall.test │ │ │ │ │ │ │ │ └── staticPropertyFetch.test │ │ │ │ │ │ │ ├── includeAndEval.test │ │ │ │ │ │ │ ├── issetAndEmpty.test │ │ │ │ │ │ │ ├── logic.test │ │ │ │ │ │ │ ├── math.test │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ ├── newWithoutClass.test │ │ │ │ │ │ │ ├── print.test │ │ │ │ │ │ │ ├── shellExec.test │ │ │ │ │ │ │ ├── ternaryAndCoalesce.test │ │ │ │ │ │ │ ├── uvs │ │ │ │ │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ │ │ │ │ ├── indirectCall.test │ │ │ │ │ │ │ │ ├── isset.test │ │ │ │ │ │ │ │ ├── misc.test │ │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ │ └── staticProperty.test │ │ │ │ │ │ │ └── variable.test │ │ │ │ │ │ ├── scalar │ │ │ │ │ │ │ ├── constantString.test │ │ │ │ │ │ │ ├── docString.test │ │ │ │ │ │ │ ├── docStringNewlines.test │ │ │ │ │ │ │ ├── encapsedString.test │ │ │ │ │ │ │ ├── float.test │ │ │ │ │ │ │ ├── int.test │ │ │ │ │ │ │ ├── invalidOctal.test │ │ │ │ │ │ │ ├── magicConst.test │ │ │ │ │ │ │ └── unicodeEscape.test │ │ │ │ │ │ ├── semiReserved.test │ │ │ │ │ │ └── stmt │ │ │ │ │ │ │ ├── blocklessStatement.test │ │ │ │ │ │ │ ├── class │ │ │ │ │ │ │ ├── abstract.test │ │ │ │ │ │ │ ├── anonymous.test │ │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ │ ├── final.test │ │ │ │ │ │ │ ├── implicitPublic.test │ │ │ │ │ │ │ ├── interface.test │ │ │ │ │ │ │ ├── modifier.test │ │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ │ ├── php4Style.test │ │ │ │ │ │ │ ├── simple.test │ │ │ │ │ │ │ ├── staticMethod.test │ │ │ │ │ │ │ └── trait.test │ │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ │ ├── controlFlow.test │ │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ │ ├── echo.test │ │ │ │ │ │ │ ├── function │ │ │ │ │ │ │ ├── byRef.test │ │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ │ ├── defaultValues.test │ │ │ │ │ │ │ ├── returnTypes.test │ │ │ │ │ │ │ ├── scalarTypeDeclarations.test │ │ │ │ │ │ │ ├── specialVars.test │ │ │ │ │ │ │ ├── typeDeclarations.test │ │ │ │ │ │ │ ├── variadic.test │ │ │ │ │ │ │ └── variadicDefaultValue.test │ │ │ │ │ │ │ ├── generator │ │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ │ ├── yieldPrecedence.test │ │ │ │ │ │ │ └── yieldUnaryPrecedence.test │ │ │ │ │ │ │ ├── haltCompiler.test │ │ │ │ │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ │ │ │ │ ├── haltCompilerOffset.test │ │ │ │ │ │ │ ├── haltCompilerOutermostScope.test │ │ │ │ │ │ │ ├── hashbang.test │ │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ │ ├── inlineHTML.test │ │ │ │ │ │ │ ├── loop │ │ │ │ │ │ │ ├── do.test │ │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ │ └── while.test │ │ │ │ │ │ │ ├── namespace │ │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ │ ├── braced.test │ │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ │ ├── groupUseErrors.test │ │ │ │ │ │ │ ├── invalidName.test │ │ │ │ │ │ │ ├── mix.test │ │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ │ ├── nested.test │ │ │ │ │ │ │ ├── notBraced.test │ │ │ │ │ │ │ ├── nsAfterHashbang.test │ │ │ │ │ │ │ ├── outsideStmt.test │ │ │ │ │ │ │ └── outsideStmtInvalid.test │ │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ │ ├── tryWithoutCatch.test │ │ │ │ │ │ │ └── unset.test │ │ │ │ │ │ └── prettyPrinter │ │ │ │ │ │ ├── comments.test │ │ │ │ │ │ ├── expr │ │ │ │ │ │ ├── anonymousClass.test │ │ │ │ │ │ ├── call.test │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ ├── constant_deref.test │ │ │ │ │ │ ├── docStrings.test │ │ │ │ │ │ ├── include.test │ │ │ │ │ │ ├── intrinsics.test │ │ │ │ │ │ ├── list.test │ │ │ │ │ │ ├── literals.test │ │ │ │ │ │ ├── numbers.test │ │ │ │ │ │ ├── operators.test │ │ │ │ │ │ ├── parentheses.test │ │ │ │ │ │ ├── shortArraySyntax.test │ │ │ │ │ │ ├── stringEscaping.test │ │ │ │ │ │ ├── uvs.test │ │ │ │ │ │ ├── variables.test │ │ │ │ │ │ └── yield.test │ │ │ │ │ │ ├── inlineHTMLandPHPtest.file-test │ │ │ │ │ │ ├── onlyInlineHTML.file-test │ │ │ │ │ │ ├── onlyPHP.file-test │ │ │ │ │ │ └── stmt │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ ├── break_continue.test │ │ │ │ │ │ ├── class.test │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ ├── do_while.test │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ ├── function_signatures.test │ │ │ │ │ │ ├── global_static_variables.test │ │ │ │ │ │ ├── goto.test │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ ├── haltCompiler.file-test │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ ├── namespaces.test │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ ├── throw.test │ │ │ │ │ │ ├── traitUse.test │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ └── while.test │ │ │ │ └── test_old │ │ │ │ │ ├── run-php-src.sh │ │ │ │ │ └── run.php │ │ │ │ └── PHP-Parser-3.0.3 │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── UPGRADE-1.0.md │ │ │ │ ├── UPGRADE-2.0.md │ │ │ │ ├── UPGRADE-3.0.md │ │ │ │ ├── bin │ │ │ │ └── php-parse │ │ │ │ ├── composer.json │ │ │ │ ├── doc │ │ │ │ ├── 0_Introduction.markdown │ │ │ │ ├── 2_Usage_of_basic_components.markdown │ │ │ │ ├── 3_Other_node_tree_representations.markdown │ │ │ │ ├── 4_Code_generation.markdown │ │ │ │ └── component │ │ │ │ │ ├── Error_handling.markdown │ │ │ │ │ └── Lexer.markdown │ │ │ │ ├── grammar │ │ │ │ ├── README.md │ │ │ │ ├── parser.template │ │ │ │ ├── php5.y │ │ │ │ ├── php7.y │ │ │ │ ├── rebuildParsers.php │ │ │ │ ├── tokens.template │ │ │ │ └── tokens.y │ │ │ │ ├── lib │ │ │ │ ├── PhpParser │ │ │ │ │ ├── Autoloader.php │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── Builder │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ ├── Declaration.php │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ └── Use_.php │ │ │ │ │ ├── BuilderAbstract.php │ │ │ │ │ ├── BuilderFactory.php │ │ │ │ │ ├── Comment.php │ │ │ │ │ ├── Comment │ │ │ │ │ │ └── Doc.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── ErrorHandler.php │ │ │ │ │ ├── ErrorHandler │ │ │ │ │ │ ├── Collecting.php │ │ │ │ │ │ └── Throwing.php │ │ │ │ │ ├── Lexer.php │ │ │ │ │ ├── Lexer │ │ │ │ │ │ └── Emulative.php │ │ │ │ │ ├── Node.php │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── Arg.php │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ ├── Expr.php │ │ │ │ │ │ ├── Expr │ │ │ │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ │ │ │ ├── ArrayItem.php │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ ├── Assign.php │ │ │ │ │ │ │ ├── AssignOp.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.php │ │ │ │ │ │ │ ├── BinaryOp │ │ │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ │ │ ├── Equal.php │ │ │ │ │ │ │ │ ├── Greater.php │ │ │ │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ │ │ │ ├── Identical.php │ │ │ │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ │ │ │ ├── Smaller.php │ │ │ │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ │ │ │ └── Spaceship.php │ │ │ │ │ │ │ ├── BitwiseNot.php │ │ │ │ │ │ │ ├── BooleanNot.php │ │ │ │ │ │ │ ├── Cast.php │ │ │ │ │ │ │ ├── Cast │ │ │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ │ │ ├── Bool_.php │ │ │ │ │ │ │ │ ├── Double.php │ │ │ │ │ │ │ │ ├── Int_.php │ │ │ │ │ │ │ │ ├── Object_.php │ │ │ │ │ │ │ │ ├── String_.php │ │ │ │ │ │ │ │ └── Unset_.php │ │ │ │ │ │ │ ├── ClassConstFetch.php │ │ │ │ │ │ │ ├── Clone_.php │ │ │ │ │ │ │ ├── Closure.php │ │ │ │ │ │ │ ├── ClosureUse.php │ │ │ │ │ │ │ ├── ConstFetch.php │ │ │ │ │ │ │ ├── Empty_.php │ │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ │ ├── ErrorSuppress.php │ │ │ │ │ │ │ ├── Eval_.php │ │ │ │ │ │ │ ├── Exit_.php │ │ │ │ │ │ │ ├── FuncCall.php │ │ │ │ │ │ │ ├── Include_.php │ │ │ │ │ │ │ ├── Instanceof_.php │ │ │ │ │ │ │ ├── Isset_.php │ │ │ │ │ │ │ ├── List_.php │ │ │ │ │ │ │ ├── MethodCall.php │ │ │ │ │ │ │ ├── New_.php │ │ │ │ │ │ │ ├── PostDec.php │ │ │ │ │ │ │ ├── PostInc.php │ │ │ │ │ │ │ ├── PreDec.php │ │ │ │ │ │ │ ├── PreInc.php │ │ │ │ │ │ │ ├── Print_.php │ │ │ │ │ │ │ ├── PropertyFetch.php │ │ │ │ │ │ │ ├── ShellExec.php │ │ │ │ │ │ │ ├── StaticCall.php │ │ │ │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ │ │ │ ├── Ternary.php │ │ │ │ │ │ │ ├── UnaryMinus.php │ │ │ │ │ │ │ ├── UnaryPlus.php │ │ │ │ │ │ │ ├── Variable.php │ │ │ │ │ │ │ ├── YieldFrom.php │ │ │ │ │ │ │ └── Yield_.php │ │ │ │ │ │ ├── FunctionLike.php │ │ │ │ │ │ ├── Name.php │ │ │ │ │ │ ├── Name │ │ │ │ │ │ │ ├── FullyQualified.php │ │ │ │ │ │ │ └── Relative.php │ │ │ │ │ │ ├── NullableType.php │ │ │ │ │ │ ├── Param.php │ │ │ │ │ │ ├── Scalar.php │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ ├── DNumber.php │ │ │ │ │ │ │ ├── Encapsed.php │ │ │ │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ │ │ │ ├── LNumber.php │ │ │ │ │ │ │ ├── MagicConst.php │ │ │ │ │ │ │ ├── MagicConst │ │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ │ ├── Dir.php │ │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ │ └── Trait_.php │ │ │ │ │ │ │ └── String_.php │ │ │ │ │ │ ├── Stmt.php │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ ├── Break_.php │ │ │ │ │ │ │ ├── Case_.php │ │ │ │ │ │ │ ├── Catch_.php │ │ │ │ │ │ │ ├── ClassConst.php │ │ │ │ │ │ │ ├── ClassLike.php │ │ │ │ │ │ │ ├── ClassMethod.php │ │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ │ ├── Const_.php │ │ │ │ │ │ │ ├── Continue_.php │ │ │ │ │ │ │ ├── DeclareDeclare.php │ │ │ │ │ │ │ ├── Declare_.php │ │ │ │ │ │ │ ├── Do_.php │ │ │ │ │ │ │ ├── Echo_.php │ │ │ │ │ │ │ ├── ElseIf_.php │ │ │ │ │ │ │ ├── Else_.php │ │ │ │ │ │ │ ├── Finally_.php │ │ │ │ │ │ │ ├── For_.php │ │ │ │ │ │ │ ├── Foreach_.php │ │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ │ ├── Global_.php │ │ │ │ │ │ │ ├── Goto_.php │ │ │ │ │ │ │ ├── GroupUse.php │ │ │ │ │ │ │ ├── HaltCompiler.php │ │ │ │ │ │ │ ├── If_.php │ │ │ │ │ │ │ ├── InlineHTML.php │ │ │ │ │ │ │ ├── Interface_.php │ │ │ │ │ │ │ ├── Label.php │ │ │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ │ │ ├── Nop.php │ │ │ │ │ │ │ ├── Property.php │ │ │ │ │ │ │ ├── PropertyProperty.php │ │ │ │ │ │ │ ├── Return_.php │ │ │ │ │ │ │ ├── StaticVar.php │ │ │ │ │ │ │ ├── Static_.php │ │ │ │ │ │ │ ├── Switch_.php │ │ │ │ │ │ │ ├── Throw_.php │ │ │ │ │ │ │ ├── TraitUse.php │ │ │ │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ │ │ │ ├── TraitUseAdaptation │ │ │ │ │ │ │ ├── Alias.php │ │ │ │ │ │ │ └── Precedence.php │ │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ │ ├── TryCatch.php │ │ │ │ │ │ │ ├── Unset_.php │ │ │ │ │ │ │ ├── UseUse.php │ │ │ │ │ │ │ ├── Use_.php │ │ │ │ │ │ │ └── While_.php │ │ │ │ │ ├── NodeAbstract.php │ │ │ │ │ ├── NodeDumper.php │ │ │ │ │ ├── NodeTraverser.php │ │ │ │ │ ├── NodeTraverserInterface.php │ │ │ │ │ ├── NodeVisitor.php │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ └── NameResolver.php │ │ │ │ │ ├── NodeVisitorAbstract.php │ │ │ │ │ ├── Parser.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── Multiple.php │ │ │ │ │ │ ├── Php5.php │ │ │ │ │ │ ├── Php7.php │ │ │ │ │ │ └── Tokens.php │ │ │ │ │ ├── ParserAbstract.php │ │ │ │ │ ├── ParserFactory.php │ │ │ │ │ ├── PrettyPrinter │ │ │ │ │ │ └── Standard.php │ │ │ │ │ ├── PrettyPrinterAbstract.php │ │ │ │ │ ├── Serializer.php │ │ │ │ │ ├── Serializer │ │ │ │ │ │ └── XML.php │ │ │ │ │ ├── Unserializer.php │ │ │ │ │ └── Unserializer │ │ │ │ │ │ └── XML.php │ │ │ │ └── bootstrap.php │ │ │ │ ├── phpunit.xml.dist │ │ │ │ ├── test │ │ │ │ ├── PhpParser │ │ │ │ │ ├── AutoloaderTest.php │ │ │ │ │ ├── Builder │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ ├── FunctionTest.php │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ ├── MethodTest.php │ │ │ │ │ │ ├── NamespaceTest.php │ │ │ │ │ │ ├── ParamTest.php │ │ │ │ │ │ ├── PropertyTest.php │ │ │ │ │ │ ├── TraitTest.php │ │ │ │ │ │ └── UseTest.php │ │ │ │ │ ├── BuilderFactoryTest.php │ │ │ │ │ ├── CodeParsingTest.php │ │ │ │ │ ├── CodeTestAbstract.php │ │ │ │ │ ├── CommentTest.php │ │ │ │ │ ├── ErrorHandler │ │ │ │ │ │ ├── CollectingTest.php │ │ │ │ │ │ └── ThrowingTest.php │ │ │ │ │ ├── ErrorTest.php │ │ │ │ │ ├── Lexer │ │ │ │ │ │ └── EmulativeTest.php │ │ │ │ │ ├── LexerTest.php │ │ │ │ │ ├── Node │ │ │ │ │ │ ├── NameTest.php │ │ │ │ │ │ ├── Scalar │ │ │ │ │ │ │ ├── MagicConstTest.php │ │ │ │ │ │ │ └── StringTest.php │ │ │ │ │ │ └── Stmt │ │ │ │ │ │ │ ├── ClassConstTest.php │ │ │ │ │ │ │ ├── ClassMethodTest.php │ │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ └── PropertyTest.php │ │ │ │ │ ├── NodeAbstractTest.php │ │ │ │ │ ├── NodeDumperTest.php │ │ │ │ │ ├── NodeTraverserTest.php │ │ │ │ │ ├── NodeVisitor │ │ │ │ │ │ └── NameResolverTest.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── MultipleTest.php │ │ │ │ │ │ ├── Php5Test.php │ │ │ │ │ │ └── Php7Test.php │ │ │ │ │ ├── ParserFactoryTest.php │ │ │ │ │ ├── ParserTest.php │ │ │ │ │ ├── PrettyPrinterTest.php │ │ │ │ │ ├── Serializer │ │ │ │ │ │ └── XMLTest.php │ │ │ │ │ └── Unserializer │ │ │ │ │ │ └── XMLTest.php │ │ │ │ ├── bootstrap.php │ │ │ │ └── code │ │ │ │ │ ├── parser │ │ │ │ │ ├── blockComments.test │ │ │ │ │ ├── comments.test │ │ │ │ │ ├── errorHandling │ │ │ │ │ │ ├── eofError.test │ │ │ │ │ │ ├── lexerErrors.test │ │ │ │ │ │ └── recovery.test │ │ │ │ │ ├── expr │ │ │ │ │ │ ├── arrayDef.test │ │ │ │ │ │ ├── arrayDestructuring.test │ │ │ │ │ │ ├── assign.test │ │ │ │ │ │ ├── assignNewByRef.test │ │ │ │ │ │ ├── cast.test │ │ │ │ │ │ ├── clone.test │ │ │ │ │ │ ├── closure.test │ │ │ │ │ │ ├── comparison.test │ │ │ │ │ │ ├── constant_expr.test │ │ │ │ │ │ ├── errorSuppress.test │ │ │ │ │ │ ├── exit.test │ │ │ │ │ │ ├── fetchAndCall │ │ │ │ │ │ │ ├── args.test │ │ │ │ │ │ │ ├── constFetch.test │ │ │ │ │ │ │ ├── constantDeref.test │ │ │ │ │ │ │ ├── funcCall.test │ │ │ │ │ │ │ ├── newDeref.test │ │ │ │ │ │ │ ├── objectAccess.test │ │ │ │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ │ │ │ ├── staticCall.test │ │ │ │ │ │ │ └── staticPropertyFetch.test │ │ │ │ │ │ ├── includeAndEval.test │ │ │ │ │ │ ├── issetAndEmpty.test │ │ │ │ │ │ ├── listWithKeys.test │ │ │ │ │ │ ├── logic.test │ │ │ │ │ │ ├── math.test │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ ├── newWithoutClass.test │ │ │ │ │ │ ├── print.test │ │ │ │ │ │ ├── shellExec.test │ │ │ │ │ │ ├── ternaryAndCoalesce.test │ │ │ │ │ │ ├── uvs │ │ │ │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ │ │ │ ├── indirectCall.test │ │ │ │ │ │ │ ├── isset.test │ │ │ │ │ │ │ ├── misc.test │ │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ │ └── staticProperty.test │ │ │ │ │ │ └── variable.test │ │ │ │ │ ├── scalar │ │ │ │ │ │ ├── constantString.test │ │ │ │ │ │ ├── docString.test │ │ │ │ │ │ ├── docStringNewlines.test │ │ │ │ │ │ ├── encapsedNegVarOffset.test │ │ │ │ │ │ ├── encapsedString.test │ │ │ │ │ │ ├── float.test │ │ │ │ │ │ ├── int.test │ │ │ │ │ │ ├── invalidOctal.test │ │ │ │ │ │ ├── magicConst.test │ │ │ │ │ │ └── unicodeEscape.test │ │ │ │ │ ├── semiReserved.test │ │ │ │ │ └── stmt │ │ │ │ │ │ ├── blocklessStatement.test │ │ │ │ │ │ ├── class │ │ │ │ │ │ ├── abstract.test │ │ │ │ │ │ ├── anonymous.test │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ ├── constModifierErrors.test │ │ │ │ │ │ ├── constModifiers.test │ │ │ │ │ │ ├── final.test │ │ │ │ │ │ ├── implicitPublic.test │ │ │ │ │ │ ├── interface.test │ │ │ │ │ │ ├── modifier.test │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ ├── php4Style.test │ │ │ │ │ │ ├── simple.test │ │ │ │ │ │ ├── staticMethod.test │ │ │ │ │ │ └── trait.test │ │ │ │ │ │ ├── const.test │ │ │ │ │ │ ├── controlFlow.test │ │ │ │ │ │ ├── declare.test │ │ │ │ │ │ ├── echo.test │ │ │ │ │ │ ├── function │ │ │ │ │ │ ├── builtinTypeDeclarations.test │ │ │ │ │ │ ├── byRef.test │ │ │ │ │ │ ├── conditional.test │ │ │ │ │ │ ├── defaultValues.test │ │ │ │ │ │ ├── nullableTypes.test │ │ │ │ │ │ ├── returnTypes.test │ │ │ │ │ │ ├── specialVars.test │ │ │ │ │ │ ├── typeDeclarations.test │ │ │ │ │ │ ├── variadic.test │ │ │ │ │ │ └── variadicDefaultValue.test │ │ │ │ │ │ ├── generator │ │ │ │ │ │ ├── basic.test │ │ │ │ │ │ ├── yieldPrecedence.test │ │ │ │ │ │ └── yieldUnaryPrecedence.test │ │ │ │ │ │ ├── haltCompiler.test │ │ │ │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ │ │ │ ├── haltCompilerOffset.test │ │ │ │ │ │ ├── haltCompilerOutermostScope.test │ │ │ │ │ │ ├── hashbang.test │ │ │ │ │ │ ├── if.test │ │ │ │ │ │ ├── inlineHTML.test │ │ │ │ │ │ ├── loop │ │ │ │ │ │ ├── do.test │ │ │ │ │ │ ├── for.test │ │ │ │ │ │ ├── foreach.test │ │ │ │ │ │ └── while.test │ │ │ │ │ │ ├── multiCatch.test │ │ │ │ │ │ ├── namespace │ │ │ │ │ │ ├── alias.test │ │ │ │ │ │ ├── braced.test │ │ │ │ │ │ ├── groupUse.test │ │ │ │ │ │ ├── groupUseErrors.test │ │ │ │ │ │ ├── groupUsePositions.test │ │ │ │ │ │ ├── invalidName.test │ │ │ │ │ │ ├── mix.test │ │ │ │ │ │ ├── name.test │ │ │ │ │ │ ├── nested.test │ │ │ │ │ │ ├── notBraced.test │ │ │ │ │ │ ├── nsAfterHashbang.test │ │ │ │ │ │ ├── outsideStmt.test │ │ │ │ │ │ └── outsideStmtInvalid.test │ │ │ │ │ │ ├── switch.test │ │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ │ ├── tryWithoutCatch.test │ │ │ │ │ │ └── unset.test │ │ │ │ │ └── prettyPrinter │ │ │ │ │ ├── comments.test │ │ │ │ │ ├── expr │ │ │ │ │ ├── anonymousClass.test │ │ │ │ │ ├── arrayDestructuring.test │ │ │ │ │ ├── call.test │ │ │ │ │ ├── closure.test │ │ │ │ │ ├── constant_deref.test │ │ │ │ │ ├── docStrings.test │ │ │ │ │ ├── include.test │ │ │ │ │ ├── intrinsics.test │ │ │ │ │ ├── list.test │ │ │ │ │ ├── literals.test │ │ │ │ │ ├── numbers.test │ │ │ │ │ ├── operators.test │ │ │ │ │ ├── parentheses.test │ │ │ │ │ ├── shortArraySyntax.test │ │ │ │ │ ├── stringEscaping.test │ │ │ │ │ ├── uvs.test │ │ │ │ │ ├── variables.test │ │ │ │ │ └── yield.test │ │ │ │ │ ├── inlineHTMLandPHPtest.file-test │ │ │ │ │ ├── onlyInlineHTML.file-test │ │ │ │ │ ├── onlyPHP.file-test │ │ │ │ │ └── stmt │ │ │ │ │ ├── alias.test │ │ │ │ │ ├── break_continue.test │ │ │ │ │ ├── class.test │ │ │ │ │ ├── class_const.test │ │ │ │ │ ├── const.test │ │ │ │ │ ├── declare.test │ │ │ │ │ ├── do_while.test │ │ │ │ │ ├── for.test │ │ │ │ │ ├── foreach.test │ │ │ │ │ ├── function_signatures.test │ │ │ │ │ ├── global_static_variables.test │ │ │ │ │ ├── goto.test │ │ │ │ │ ├── groupUse.test │ │ │ │ │ ├── haltCompiler.file-test │ │ │ │ │ ├── if.test │ │ │ │ │ ├── multiCatch.test │ │ │ │ │ ├── namespaces.test │ │ │ │ │ ├── nullable_types.test │ │ │ │ │ ├── switch.test │ │ │ │ │ ├── throw.test │ │ │ │ │ ├── traitUse.test │ │ │ │ │ ├── tryCatch.test │ │ │ │ │ └── while.test │ │ │ │ └── test_old │ │ │ │ ├── run-php-src.sh │ │ │ │ └── run.php │ │ └── replacing │ │ │ ├── core │ │ │ ├── CodeIgniter.php │ │ │ ├── Common.php │ │ │ ├── Input.php │ │ │ ├── Loader.php │ │ │ ├── Output.php │ │ │ └── old │ │ │ │ ├── 3.0.0-Common.php │ │ │ │ ├── 3.0.0-Loader.php │ │ │ │ ├── 3.0.1-Loader.php │ │ │ │ ├── 3.0.3-CodeIgniter.php │ │ │ │ ├── 3.0.3-Input.php │ │ │ │ ├── 3.0.3-Loader.php │ │ │ │ ├── 3.0.4-CodeIgniter.php │ │ │ │ ├── 3.0.4-Input.php │ │ │ │ ├── 3.0.4-Loader.php │ │ │ │ ├── 3.0.5-CodeIgniter.php │ │ │ │ ├── 3.0.5-Loader.php │ │ │ │ ├── 3.0.6-CodeIgniter.php │ │ │ │ ├── 3.1.0-CodeIgniter.php │ │ │ │ ├── 3.1.0-Common.php │ │ │ │ ├── 3.1.0-Input.php │ │ │ │ ├── 3.1.0-Loader.php │ │ │ │ ├── 3.1.10-CodeIgniter.php │ │ │ │ ├── 3.1.10-Common.php │ │ │ │ ├── 3.1.10-Input.php │ │ │ │ ├── 3.1.10-Loader.php │ │ │ │ ├── 3.1.10-Output.php │ │ │ │ ├── 3.1.2-CodeIgniter.php │ │ │ │ ├── 3.1.2-Common.php │ │ │ │ ├── 3.1.2-Input.php │ │ │ │ ├── 3.1.2-Loader.php │ │ │ │ ├── 3.1.3-CodeIgniter.php │ │ │ │ ├── 3.1.3-Common.php │ │ │ │ ├── 3.1.3-Input.php │ │ │ │ ├── 3.1.3-Loader.php │ │ │ │ ├── 3.1.4-CodeIgniter.php │ │ │ │ ├── 3.1.4-Common.php │ │ │ │ ├── 3.1.4-Input.php │ │ │ │ ├── 3.1.4-Loader.php │ │ │ │ ├── 3.1.5-CodeIgniter.php │ │ │ │ ├── 3.1.5-Common.php │ │ │ │ ├── 3.1.5-Input.php │ │ │ │ ├── 3.1.5-Loader.php │ │ │ │ ├── 3.1.6-CodeIgniter.php │ │ │ │ ├── 3.1.6-Common.php │ │ │ │ ├── 3.1.6-Input.php │ │ │ │ ├── 3.1.6-Loader.php │ │ │ │ ├── 3.1.7-CodeIgniter.php │ │ │ │ ├── 3.1.7-Common.php │ │ │ │ ├── 3.1.7-Input.php │ │ │ │ ├── 3.1.7-Loader.php │ │ │ │ ├── 3.1.7-Output.php │ │ │ │ ├── 3.1.8-CodeIgniter.php │ │ │ │ ├── 3.1.8-Common.php │ │ │ │ ├── 3.1.8-Input.php │ │ │ │ ├── 3.1.8-Loader.php │ │ │ │ ├── 3.1.8-Output.php │ │ │ │ ├── 3.1.9-CodeIgniter.php │ │ │ │ ├── 3.1.9-Common.php │ │ │ │ ├── 3.1.9-Input.php │ │ │ │ ├── 3.1.9-Loader.php │ │ │ │ └── 3.1.9-Output.php │ │ │ ├── helpers │ │ │ ├── download_helper.php │ │ │ ├── old │ │ │ │ ├── 3.1.10-download_helper.php │ │ │ │ ├── 3.1.10-url_helper.php │ │ │ │ ├── 3.1.6-download_helper.php │ │ │ │ ├── 3.1.6-url_helper.php │ │ │ │ ├── 3.1.7-download_helper.php │ │ │ │ ├── 3.1.7-url_helper.php │ │ │ │ ├── 3.1.8-download_helper.php │ │ │ │ ├── 3.1.8-url_helper.php │ │ │ │ ├── 3.1.9-download_helper.php │ │ │ │ └── 3.1.9-url_helper.php │ │ │ └── url_helper.php │ │ │ ├── libraries │ │ │ ├── Upload.php │ │ │ └── old │ │ │ │ ├── 3.1.10-Upload.php │ │ │ │ ├── 3.1.2-Upload.php │ │ │ │ ├── 3.1.3-Upload.php │ │ │ │ ├── 3.1.4-Upload.php │ │ │ │ ├── 3.1.5-Upload.php │ │ │ │ ├── 3.1.6-Upload.php │ │ │ │ ├── 3.1.7-Upload.php │ │ │ │ ├── 3.1.8-Upload.php │ │ │ │ └── 3.1.9-Upload.php │ │ │ ├── make-links.sh │ │ │ └── mv-current.sh │ ├── controllers │ │ ├── Product_test.php │ │ └── Welcome_test.php │ ├── helpers │ │ └── .gitkeep │ ├── hooks │ │ └── .gitkeep │ ├── libraries │ │ └── .gitkeep │ ├── mocks │ │ ├── autoloader.php │ │ └── libraries │ │ │ └── email.php │ ├── models │ │ ├── .gitkeep │ │ └── Product_model_test.php │ └── phpunit.xml ├── third_party │ └── index.html └── views │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── index.html │ └── welcome_message.php ├── composer.json ├── composer.lock ├── index.php ├── start_worker.sh └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Log.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php ├── compat │ ├── hash.php │ ├── index.html │ ├── mbstring.php │ ├── password.php │ └── standard.php └── index.html ├── database ├── DB.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_query_builder.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── ibase │ │ ├── ibase_driver.php │ │ ├── ibase_forge.php │ │ ├── ibase_result.php │ │ ├── ibase_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ ├── pdo_utility.php │ │ └── subdrivers │ │ │ ├── index.html │ │ │ ├── pdo_4d_driver.php │ │ │ ├── pdo_4d_forge.php │ │ │ ├── pdo_cubrid_driver.php │ │ │ ├── pdo_cubrid_forge.php │ │ │ ├── pdo_dblib_driver.php │ │ │ ├── pdo_dblib_forge.php │ │ │ ├── pdo_firebird_driver.php │ │ │ ├── pdo_firebird_forge.php │ │ │ ├── pdo_ibm_driver.php │ │ │ ├── pdo_ibm_forge.php │ │ │ ├── pdo_informix_driver.php │ │ │ ├── pdo_informix_forge.php │ │ │ ├── pdo_mysql_driver.php │ │ │ ├── pdo_mysql_forge.php │ │ │ ├── pdo_oci_driver.php │ │ │ ├── pdo_oci_forge.php │ │ │ ├── pdo_odbc_driver.php │ │ │ ├── pdo_odbc_forge.php │ │ │ ├── pdo_pgsql_driver.php │ │ │ ├── pdo_pgsql_forge.php │ │ │ ├── pdo_sqlite_driver.php │ │ │ ├── pdo_sqlite_forge.php │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ └── pdo_sqlsrv_forge.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ ├── sqlite3 │ │ ├── index.html │ │ ├── sqlite3_driver.php │ │ ├── sqlite3_forge.php │ │ ├── sqlite3_result.php │ │ └── sqlite3_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── pagination_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php ├── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ ├── Cache_memcached.php │ ├── Cache_redis.php │ ├── Cache_wincache.php │ └── index.html └── index.html ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Encryption.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Javascript ├── Jquery.php └── index.html ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session ├── Session.php ├── SessionHandlerInterface.php ├── Session_driver.php ├── drivers │ ├── Session_database_driver.php │ ├── Session_files_driver.php │ ├── Session_memcached_driver.php │ ├── Session_redis_driver.php │ └── index.html └── index.html ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/.gitignore -------------------------------------------------------------------------------- /Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/Diagram.png -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/README.md -------------------------------------------------------------------------------- /TDD Microservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/TDD Microservice.xml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /financial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/.gitignore -------------------------------------------------------------------------------- /financial/application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/.htaccess -------------------------------------------------------------------------------- /financial/application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/cache/index.html -------------------------------------------------------------------------------- /financial/application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/autoload.php -------------------------------------------------------------------------------- /financial/application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/config.php -------------------------------------------------------------------------------- /financial/application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/constants.php -------------------------------------------------------------------------------- /financial/application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/database.php -------------------------------------------------------------------------------- /financial/application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/doctypes.php -------------------------------------------------------------------------------- /financial/application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/foreign_chars.php -------------------------------------------------------------------------------- /financial/application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/hooks.php -------------------------------------------------------------------------------- /financial/application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/index.html -------------------------------------------------------------------------------- /financial/application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/memcached.php -------------------------------------------------------------------------------- /financial/application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/migration.php -------------------------------------------------------------------------------- /financial/application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/mimes.php -------------------------------------------------------------------------------- /financial/application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/profiler.php -------------------------------------------------------------------------------- /financial/application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/routes.php -------------------------------------------------------------------------------- /financial/application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/smileys.php -------------------------------------------------------------------------------- /financial/application/config/testing/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/testing/database.php -------------------------------------------------------------------------------- /financial/application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/config/user_agents.php -------------------------------------------------------------------------------- /financial/application/controllers/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/controllers/Invoice.php -------------------------------------------------------------------------------- /financial/application/controllers/Migrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/controllers/Migrate.php -------------------------------------------------------------------------------- /financial/application/controllers/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/controllers/Welcome.php -------------------------------------------------------------------------------- /financial/application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/controllers/index.html -------------------------------------------------------------------------------- /financial/application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/core/index.html -------------------------------------------------------------------------------- /financial/application/database/data.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /financial/application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/helpers/index.html -------------------------------------------------------------------------------- /financial/application/helpers/invoice_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/helpers/invoice_helper.php -------------------------------------------------------------------------------- /financial/application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/hooks/index.html -------------------------------------------------------------------------------- /financial/application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/index.html -------------------------------------------------------------------------------- /financial/application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/language/english/index.html -------------------------------------------------------------------------------- /financial/application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/language/index.html -------------------------------------------------------------------------------- /financial/application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/libraries/index.html -------------------------------------------------------------------------------- /financial/application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/logs/index.html -------------------------------------------------------------------------------- /financial/application/migrations/001_add_invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/migrations/001_add_invoice.php -------------------------------------------------------------------------------- /financial/application/models/Invoice_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/models/Invoice_model.php -------------------------------------------------------------------------------- /financial/application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/models/index.html -------------------------------------------------------------------------------- /financial/application/tests/.gitignore: -------------------------------------------------------------------------------- 1 | _ci_phpunit_test/tmp/ 2 | -------------------------------------------------------------------------------- /financial/application/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/Bootstrap.php -------------------------------------------------------------------------------- /financial/application/tests/DbTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/DbTestCase.php -------------------------------------------------------------------------------- /financial/application/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/TestCase.php -------------------------------------------------------------------------------- /financial/application/tests/UnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/UnitTestCase.php -------------------------------------------------------------------------------- /financial/application/tests/_ci_phpunit_test/CIPHPUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/_ci_phpunit_test/CIPHPUnitTest.php -------------------------------------------------------------------------------- /financial/application/tests/_ci_phpunit_test/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/_ci_phpunit_test/ChangeLog.md -------------------------------------------------------------------------------- /financial/application/tests/_ci_phpunit_test/autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/_ci_phpunit_test/autoloader.php -------------------------------------------------------------------------------- /financial/application/tests/_ci_phpunit_test/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/_ci_phpunit_test/functions.php -------------------------------------------------------------------------------- /financial/application/tests/_ci_phpunit_test/patcher/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/_ci_phpunit_test/patcher/Cache.php -------------------------------------------------------------------------------- /financial/application/tests/controllers/Invoice_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/controllers/Invoice_test.php -------------------------------------------------------------------------------- /financial/application/tests/controllers/Welcome_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/controllers/Welcome_test.php -------------------------------------------------------------------------------- /financial/application/tests/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /financial/application/tests/hooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /financial/application/tests/libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /financial/application/tests/mocks/autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/mocks/autoloader.php -------------------------------------------------------------------------------- /financial/application/tests/mocks/libraries/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/mocks/libraries/email.php -------------------------------------------------------------------------------- /financial/application/tests/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /financial/application/tests/models/Invoice_model_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/models/Invoice_model_test.php -------------------------------------------------------------------------------- /financial/application/tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/tests/phpunit.xml -------------------------------------------------------------------------------- /financial/application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/third_party/index.html -------------------------------------------------------------------------------- /financial/application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/cli/error_404.php -------------------------------------------------------------------------------- /financial/application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/cli/error_db.php -------------------------------------------------------------------------------- /financial/application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /financial/application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/cli/error_general.php -------------------------------------------------------------------------------- /financial/application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/cli/error_php.php -------------------------------------------------------------------------------- /financial/application/views/errors/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/cli/index.html -------------------------------------------------------------------------------- /financial/application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/html/error_404.php -------------------------------------------------------------------------------- /financial/application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/html/error_db.php -------------------------------------------------------------------------------- /financial/application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/html/error_exception.php -------------------------------------------------------------------------------- /financial/application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/html/error_general.php -------------------------------------------------------------------------------- /financial/application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/html/error_php.php -------------------------------------------------------------------------------- /financial/application/views/errors/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/html/index.html -------------------------------------------------------------------------------- /financial/application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/errors/index.html -------------------------------------------------------------------------------- /financial/application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/index.html -------------------------------------------------------------------------------- /financial/application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/application/views/welcome_message.php -------------------------------------------------------------------------------- /financial/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/composer.json -------------------------------------------------------------------------------- /financial/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/composer.lock -------------------------------------------------------------------------------- /financial/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/index.php -------------------------------------------------------------------------------- /financial/start_worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/start_worker.sh -------------------------------------------------------------------------------- /financial/system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/.htaccess -------------------------------------------------------------------------------- /financial/system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Benchmark.php -------------------------------------------------------------------------------- /financial/system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /financial/system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Common.php -------------------------------------------------------------------------------- /financial/system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Config.php -------------------------------------------------------------------------------- /financial/system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Controller.php -------------------------------------------------------------------------------- /financial/system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Exceptions.php -------------------------------------------------------------------------------- /financial/system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Hooks.php -------------------------------------------------------------------------------- /financial/system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Input.php -------------------------------------------------------------------------------- /financial/system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Lang.php -------------------------------------------------------------------------------- /financial/system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Loader.php -------------------------------------------------------------------------------- /financial/system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Log.php -------------------------------------------------------------------------------- /financial/system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Model.php -------------------------------------------------------------------------------- /financial/system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Output.php -------------------------------------------------------------------------------- /financial/system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Router.php -------------------------------------------------------------------------------- /financial/system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Security.php -------------------------------------------------------------------------------- /financial/system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/URI.php -------------------------------------------------------------------------------- /financial/system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/Utf8.php -------------------------------------------------------------------------------- /financial/system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/compat/hash.php -------------------------------------------------------------------------------- /financial/system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/compat/index.html -------------------------------------------------------------------------------- /financial/system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /financial/system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/compat/password.php -------------------------------------------------------------------------------- /financial/system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/compat/standard.php -------------------------------------------------------------------------------- /financial/system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/core/index.html -------------------------------------------------------------------------------- /financial/system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/DB.php -------------------------------------------------------------------------------- /financial/system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/DB_cache.php -------------------------------------------------------------------------------- /financial/system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/DB_driver.php -------------------------------------------------------------------------------- /financial/system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/DB_forge.php -------------------------------------------------------------------------------- /financial/system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /financial/system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/DB_result.php -------------------------------------------------------------------------------- /financial/system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/DB_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/ibase/ibase_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/ibase/ibase_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/ibase/ibase_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/ibase/ibase_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/ibase/ibase_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/ibase/ibase_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/ibase/ibase_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/pdo/subdrivers/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlite3/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlite3/sqlite3_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlite3/sqlite3_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlite3/sqlite3_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlite3/sqlite3_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlite3/sqlite3_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlite3/sqlite3_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlite3/sqlite3_utility.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /financial/system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /financial/system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/database/index.html -------------------------------------------------------------------------------- /financial/system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/fonts/index.html -------------------------------------------------------------------------------- /financial/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/fonts/texb.ttf -------------------------------------------------------------------------------- /financial/system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/array_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/date_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/download_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/email_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/file_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/form_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/html_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/index.html -------------------------------------------------------------------------------- /financial/system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/language_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/number_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/path_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/security_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/string_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/text_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/url_helper.php -------------------------------------------------------------------------------- /financial/system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /financial/system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/index.html -------------------------------------------------------------------------------- /financial/system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/date_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/db_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/email_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/index.html -------------------------------------------------------------------------------- /financial/system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/number_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/pagination_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/pagination_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /financial/system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /financial/system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/language/index.html -------------------------------------------------------------------------------- /financial/system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /financial/system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /financial/system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /financial/system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /financial/system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /financial/system/libraries/Cache/drivers/Cache_redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Cache/drivers/Cache_redis.php -------------------------------------------------------------------------------- /financial/system/libraries/Cache/drivers/Cache_wincache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Cache/drivers/Cache_wincache.php -------------------------------------------------------------------------------- /financial/system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Cache/drivers/index.html -------------------------------------------------------------------------------- /financial/system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /financial/system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Calendar.php -------------------------------------------------------------------------------- /financial/system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Cart.php -------------------------------------------------------------------------------- /financial/system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Driver.php -------------------------------------------------------------------------------- /financial/system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Email.php -------------------------------------------------------------------------------- /financial/system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /financial/system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Encryption.php -------------------------------------------------------------------------------- /financial/system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /financial/system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Ftp.php -------------------------------------------------------------------------------- /financial/system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /financial/system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Javascript.php -------------------------------------------------------------------------------- /financial/system/libraries/Javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Javascript/Jquery.php -------------------------------------------------------------------------------- /financial/system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Javascript/index.html -------------------------------------------------------------------------------- /financial/system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Migration.php -------------------------------------------------------------------------------- /financial/system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Pagination.php -------------------------------------------------------------------------------- /financial/system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Parser.php -------------------------------------------------------------------------------- /financial/system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Profiler.php -------------------------------------------------------------------------------- /financial/system/libraries/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Session/Session.php -------------------------------------------------------------------------------- /financial/system/libraries/Session/SessionHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Session/SessionHandlerInterface.php -------------------------------------------------------------------------------- /financial/system/libraries/Session/Session_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Session/Session_driver.php -------------------------------------------------------------------------------- /financial/system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Session/drivers/index.html -------------------------------------------------------------------------------- /financial/system/libraries/Session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Session/index.html -------------------------------------------------------------------------------- /financial/system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Table.php -------------------------------------------------------------------------------- /financial/system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Trackback.php -------------------------------------------------------------------------------- /financial/system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Typography.php -------------------------------------------------------------------------------- /financial/system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /financial/system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Upload.php -------------------------------------------------------------------------------- /financial/system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/User_agent.php -------------------------------------------------------------------------------- /financial/system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /financial/system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /financial/system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/Zip.php -------------------------------------------------------------------------------- /financial/system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeindra/codeigniter-microservice/HEAD/financial/system/libraries/index.html -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |