├── .editorconfig ├── .github └── workflows │ └── phpunit.yml ├── .gitignore ├── .scrutinizer.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── application ├── database │ └── seeds │ │ └── CategorySeeder.php ├── libraries │ ├── Seeder.php │ └── Session │ │ └── MY_Session.php └── 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 │ ├── CIPHPUnitTestLogger.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 │ │ ├── 4.5 │ │ │ ├── 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 │ │ ├── 4.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 │ │ ├── PhpParserVersion.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.1.5 │ │ │ ├── .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 │ │ │ │ │ ├── commentAfterNamespace.test │ │ │ │ │ ├── groupUse.test │ │ │ │ │ ├── groupUseErrors.test │ │ │ │ │ ├── groupUsePositions.test │ │ │ │ │ ├── groupUseTrailingComma.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 │ │ │ │ ├── commentsInCommaList.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.13-CodeIgniter.php │ │ │ ├── 3.1.13-Common.php │ │ │ ├── 3.1.13-Input.php │ │ │ ├── 3.1.13-Loader.php │ │ │ ├── 3.1.13-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.13-download_helper.php │ │ │ ├── 3.1.13-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.13-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 │ └── Welcome_test.php │ ├── helpers │ └── .gitkeep │ ├── hooks │ └── .gitkeep │ ├── libraries │ └── .gitkeep │ ├── mocks │ ├── autoloader.php │ └── libraries │ │ └── email.php │ ├── models │ └── .gitkeep │ └── phpunit.xml ├── bin ├── check-ci-diff.sh ├── check-diff.sh ├── filelist.sh └── switch-to-1.x.sh ├── composer.json ├── composer.lock ├── docs ├── ChangeLog.md ├── FunctionAndClassReference.md ├── HowToWriteTests.md ├── RequestsToCodeIgniter.md ├── Tips.md ├── imgs │ └── netbeans-8.1.png └── third_party_licenses │ ├── CodeIgniter4_LICENSE.md │ ├── PHP-Parser_LICENSE.md │ ├── Patchwork_LICENSE.md │ ├── SoftMocks_LICENSE.md │ └── monkey_LICENSE.md ├── install.php ├── lib └── Installer.php └── update.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/README.md -------------------------------------------------------------------------------- /application/database/seeds/CategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/database/seeds/CategorySeeder.php -------------------------------------------------------------------------------- /application/libraries/Seeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/libraries/Seeder.php -------------------------------------------------------------------------------- /application/libraries/Session/MY_Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/libraries/Session/MY_Session.php -------------------------------------------------------------------------------- /application/tests/.gitignore: -------------------------------------------------------------------------------- 1 | _ci_phpunit_test/tmp/ 2 | -------------------------------------------------------------------------------- /application/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/Bootstrap.php -------------------------------------------------------------------------------- /application/tests/DbTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/DbTestCase.php -------------------------------------------------------------------------------- /application/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/TestCase.php -------------------------------------------------------------------------------- /application/tests/UnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/UnitTestCase.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTest.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestAutoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestAutoloader.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestCase.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestDbConnectionStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestDbConnectionStore.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestDbTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestDbTestCase.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestDouble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestDouble.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestFileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestFileCache.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestLogger.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestNullCodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestNullCodeIgniter.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestReflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestReflection.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestRequest.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestRouter.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestSuperGlobal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestSuperGlobal.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/CIPHPUnitTestUnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/CIPHPUnitTestUnitTestCase.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/ChangeLog.md -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/TestSuiteProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/TestSuiteProvider.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/alias/MonkeyPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/alias/MonkeyPatch.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/alias/ReflectionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/alias/ReflectionHelper.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/autoloader.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/exceptions/CIPHPUnitTestExitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/exceptions/CIPHPUnitTestExitException.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/exceptions/CIPHPUnitTestRedirectException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/exceptions/CIPHPUnitTestRedirectException.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/exceptions/CIPHPUnitTestShow404Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/exceptions/CIPHPUnitTestShow404Exception.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/exceptions/CIPHPUnitTestShowErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/exceptions/CIPHPUnitTestShowErrorException.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/functions.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Exception/ExitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Exception/ExitException.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/MonkeyPatchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/MonkeyPatchManager.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/AbstractPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/AbstractPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/Backtrace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/Backtrace.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/ConstantPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/ConstantPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/ConstantPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/ConstantPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/ConstantPatcher/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/ConstantPatcher/Proxy.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/ExitPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/ExitPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/FunctionPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/FunctionPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/FunctionPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/FunctionPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/FunctionPatcher/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/FunctionPatcher/Proxy.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/MethodPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/MethodPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/MethodPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/MethodPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/2.x/Patcher/MethodPatcher/PatchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/2.x/Patcher/MethodPatcher/PatchManager.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Exception/ExitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Exception/ExitException.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/MonkeyPatchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/MonkeyPatchManager.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/AbstractPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/AbstractPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/Backtrace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/Backtrace.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/ConstantPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/ConstantPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/ConstantPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/ConstantPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/ConstantPatcher/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/ConstantPatcher/Proxy.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/ExitPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/ExitPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/FunctionPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/FunctionPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/FunctionPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/FunctionPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/FunctionPatcher/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/FunctionPatcher/Proxy.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/MethodPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/MethodPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/MethodPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/MethodPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/3.x/Patcher/MethodPatcher/PatchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/3.x/Patcher/MethodPatcher/PatchManager.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Exception/ExitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Exception/ExitException.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/MonkeyPatchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/MonkeyPatchManager.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/AbstractPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/AbstractPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/Backtrace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/Backtrace.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/ConstantPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/ConstantPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/ConstantPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/ConstantPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/ConstantPatcher/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/ConstantPatcher/Proxy.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/ExitPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/ExitPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/FunctionPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/FunctionPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/FunctionPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/FunctionPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/FunctionPatcher/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/FunctionPatcher/Proxy.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/MethodPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/MethodPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/MethodPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/MethodPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.5/Patcher/MethodPatcher/PatchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.5/Patcher/MethodPatcher/PatchManager.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Exception/ExitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Exception/ExitException.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/MonkeyPatchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/MonkeyPatchManager.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/AbstractPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/AbstractPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/Backtrace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/Backtrace.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/ConstantPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/ConstantPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/ConstantPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/ConstantPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/ConstantPatcher/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/ConstantPatcher/Proxy.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/ExitPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/ExitPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/FunctionPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/FunctionPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/FunctionPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/FunctionPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/FunctionPatcher/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/FunctionPatcher/Proxy.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/MethodPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/MethodPatcher.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/MethodPatcher/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/MethodPatcher/NodeVisitor.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/4.x/Patcher/MethodPatcher/PatchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/4.x/Patcher/MethodPatcher/PatchManager.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/Cache.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/IncludeStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/IncludeStream.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/InvocationVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/InvocationVerifier.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/MonkeyPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/MonkeyPatch.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/PathChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/PathChecker.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/PhpParserVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/PhpParserVersion.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/bootstrap.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/functions/exit__.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/functions/exit__.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/.gitignore -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/.travis.yml -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/CHANGELOG.md -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/LICENSE -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/README.md -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/UPGRADE-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/UPGRADE-1.0.md -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/UPGRADE-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/UPGRADE-2.0.md -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/bin/php-parse -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/composer.json -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/doc/0_Introduction.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/doc/0_Introduction.markdown -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/doc/4_Code_generation.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/doc/4_Code_generation.markdown -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/doc/component/Error.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/doc/component/Error.markdown -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/doc/component/Lexer.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/doc/component/Lexer.markdown -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/README.md -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/analyze.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/analyze.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/parser.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/parser.template -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/php5.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/php5.y -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/php7.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/php7.y -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/rebuildParsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/rebuildParsers.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/tokens.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/tokens.template -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/tokens.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/grammar/tokens.y -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Autoloader.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Class_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Class_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Declaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Declaration.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/FunctionLike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/FunctionLike.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Function_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Function_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Interface_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Interface_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Method.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Namespace_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Namespace_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Param.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Property.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Trait_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Trait_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Use_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Builder/Use_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/BuilderAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/BuilderAbstract.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/BuilderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/BuilderFactory.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Comment.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Comment/Doc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Comment/Doc.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Error.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Lexer.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Lexer/Emulative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Lexer/Emulative.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Arg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Arg.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Const_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Const_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/ArrayItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/ArrayItem.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Array_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Array_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Assign.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/AssignOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/AssignOp.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/AssignRef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/AssignRef.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/BinaryOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/BinaryOp.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/BitwiseNot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/BitwiseNot.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/BooleanNot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/BooleanNot.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Cast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Cast.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Cast/Bool_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Cast/Bool_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Cast/Int_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Cast/Int_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Clone_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Clone_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Closure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Closure.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/ClosureUse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/ClosureUse.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/ConstFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/ConstFetch.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Empty_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Empty_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Eval_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Eval_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Exit_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Exit_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/FuncCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/FuncCall.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Include_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Include_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Isset_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Isset_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/List_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/List_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/MethodCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/MethodCall.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/New_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/New_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/PostDec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/PostDec.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/PostInc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/PostInc.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/PreDec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/PreDec.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/PreInc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/PreInc.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Print_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Print_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/ShellExec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/ShellExec.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/StaticCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/StaticCall.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Ternary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Ternary.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/UnaryMinus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/UnaryMinus.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/UnaryPlus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/UnaryPlus.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Variable.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/YieldFrom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/YieldFrom.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Yield_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Expr/Yield_.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/FunctionLike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/FunctionLike.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Name.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Name/Relative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Name/Relative.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/ci-phpunit-test/HEAD/application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Param.php -------------------------------------------------------------------------------- /application/tests/_ci_phpunit_test/patcher/third_party/PHP-Parser-2.1.1/lib/PhpParser/Node/Scalar.php: -------------------------------------------------------------------------------- 1 |