├── .coveralls.yml ├── .gitignore ├── vendor ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── diff │ │ ├── .gitignore │ │ └── tests │ │ │ └── fixtures │ │ │ └── patch.txt │ ├── resource-operations │ │ └── .gitignore │ ├── code-unit-reverse-lookup │ │ ├── .gitignore │ │ └── ChangeLog.md │ ├── environment │ │ ├── .gitignore │ │ └── .travis.yml │ ├── comparator │ │ ├── .gitignore │ │ └── tests │ │ │ ├── bootstrap.php │ │ │ └── _files │ │ │ └── TestClass.php │ ├── global-state │ │ ├── .gitignore │ │ └── .travis.yml │ ├── object-enumerator │ │ ├── .gitignore │ │ └── src │ │ │ └── Exception.php │ ├── exporter │ │ └── .gitignore │ └── recursion-context │ │ ├── .gitignore │ │ └── .travis.yml ├── phpunit │ ├── php-timer │ │ ├── .gitattributes │ │ └── .gitignore │ ├── phpunit │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── bar.xml │ │ │ │ ├── foo.xml │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ ├── JsonData │ │ │ │ │ ├── simpleObject.json │ │ │ │ │ └── arrayObject.json │ │ │ │ ├── NoTestCaseClass.php │ │ │ │ ├── configuration.colors.empty.xml │ │ │ │ ├── configuration.colors.true.xml │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── configuration.colors.false.xml │ │ │ │ ├── configuration.colors.invalid.xml │ │ │ │ ├── DummyException.php │ │ │ │ ├── CustomPrinter.php │ │ │ │ ├── NotVoidTestCase.php │ │ │ │ ├── EmptyTestCaseTest.php │ │ │ │ ├── configuration_stop_on_warning.xml │ │ │ │ ├── NamespaceCoveredFunction.php │ │ │ │ ├── NonStatic.php │ │ │ │ ├── ConcreteTest.php │ │ │ │ ├── InheritedTestCase.php │ │ │ │ ├── Success.php │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── NoTestCases.php │ │ │ │ ├── NothingTest.php │ │ │ │ ├── AssertionExample.php │ │ │ │ ├── Inheritance │ │ │ │ │ ├── InheritanceA.php │ │ │ │ │ └── InheritanceB.php │ │ │ │ ├── OverrideTestCase.php │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ ├── MockRunner.php │ │ │ │ ├── StopsOnWarningTest.php │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ ├── Failure.php │ │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ │ ├── ClassWithScalarTypeDeclarations.php │ │ │ │ ├── Struct.php │ │ │ │ ├── TestTestError.php │ │ │ │ ├── configuration.suites.xml │ │ │ │ ├── TestSkipped.php │ │ │ │ ├── TestIncomplete.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── phpt-for-coverage.phpt │ │ │ │ ├── IniTest.php │ │ │ │ ├── WasRun.php │ │ │ │ ├── OneTestCase.php │ │ │ │ ├── ThrowExceptionTestCase.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── NotPublicTestCase.php │ │ │ │ ├── AssertionExampleTest.php │ │ │ │ ├── TestGeneratorMaker.php │ │ │ │ ├── phpt-xfail.phpt │ │ │ │ ├── phpunit-example-extension │ │ │ │ │ ├── tools │ │ │ │ │ │ └── phpunit.d │ │ │ │ │ │ │ └── phpunit-example-extension-1.0.0.phar │ │ │ │ │ └── tests │ │ │ │ │ │ └── OneTest.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageNamespacedFunctionTest.php │ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ │ ├── SampleClass.php │ │ │ │ ├── BaseTestListenerSample.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── TestAutoreferenced.php │ │ │ │ ├── Calculator.php │ │ │ │ ├── FatalTest.php │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── IgnoreCodeCoverageClass.php │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ ├── DataProviderIssue2859 │ │ │ │ │ └── phpunit.xml │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ ├── DataProviderIssue2833 │ │ │ │ │ └── SecondTest.php │ │ │ │ ├── TestDoxGroupTest.php │ │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ │ ├── StopOnWarningTestSuite.php │ │ │ │ ├── DependencyTestSuite.php │ │ │ │ ├── IsolationTest.php │ │ │ │ ├── DataProviderIssue2922 │ │ │ │ │ └── SecondTest.php │ │ │ │ ├── MyCommand.php │ │ │ │ └── RequirementsClassBeforeClassHookTest.php │ │ │ ├── TextUI │ │ │ │ ├── _files │ │ │ │ │ ├── expect_external.txt │ │ │ │ │ ├── phpt-env.expected.txt │ │ │ │ │ └── phpt_external.php │ │ │ │ ├── phpt-external.phpt │ │ │ │ ├── phpt-args.phpt │ │ │ │ ├── phpt-stdin.phpt │ │ │ │ ├── phpt-env.phpt │ │ │ │ └── phpt-stderr.phpt │ │ │ ├── Regression │ │ │ │ ├── GitHub │ │ │ │ │ ├── 74 │ │ │ │ │ │ ├── NewException.php │ │ │ │ │ │ └── Issue74Test.php │ │ │ │ │ ├── 322 │ │ │ │ │ │ ├── phpunit322.xml │ │ │ │ │ │ └── Issue322Test.php │ │ │ │ │ ├── 503 │ │ │ │ │ │ └── Issue503Test.php │ │ │ │ │ ├── 581 │ │ │ │ │ │ └── Issue581Test.php │ │ │ │ │ ├── 797 │ │ │ │ │ │ ├── bootstrap797.php │ │ │ │ │ │ └── Issue797Test.php │ │ │ │ │ ├── 873 │ │ │ │ │ │ └── Issue873Test.php │ │ │ │ │ ├── 1216 │ │ │ │ │ │ ├── bootstrap1216.php │ │ │ │ │ │ ├── phpunit1216.xml │ │ │ │ │ │ └── Issue1216Test.php │ │ │ │ │ ├── 1265 │ │ │ │ │ │ ├── phpunit1265.xml │ │ │ │ │ │ └── Issue1265Test.php │ │ │ │ │ ├── 1330 │ │ │ │ │ │ ├── phpunit1330.xml │ │ │ │ │ │ └── Issue1330Test.php │ │ │ │ │ ├── 1351 │ │ │ │ │ │ └── ChildProcessClass1351.php │ │ │ │ │ ├── 1437 │ │ │ │ │ │ └── Issue1437Test.php │ │ │ │ │ ├── 1468 │ │ │ │ │ │ └── Issue1468Test.php │ │ │ │ │ ├── 1471 │ │ │ │ │ │ └── Issue1471Test.php │ │ │ │ │ ├── 1570 │ │ │ │ │ │ └── Issue1570Test.php │ │ │ │ │ ├── 2145 │ │ │ │ │ │ └── Issue2145Test.php │ │ │ │ │ ├── 2158 │ │ │ │ │ │ └── constant.inc │ │ │ │ │ ├── 2435 │ │ │ │ │ │ └── Issue2435Test.php │ │ │ │ │ ├── 2731 │ │ │ │ │ │ └── Issue2731Test.php │ │ │ │ │ ├── 2758 │ │ │ │ │ │ ├── Issue2758Test.php │ │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ │ └── Issue2758TestListener.php │ │ │ │ │ ├── 2811 │ │ │ │ │ │ └── Issue2811Test.php │ │ │ │ │ └── 2972 │ │ │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ │ └── Trac │ │ │ │ │ ├── 523 │ │ │ │ │ └── Issue523Test.php │ │ │ │ │ ├── 684 │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ └── 783 │ │ │ │ │ ├── OneTest.php │ │ │ │ │ ├── TwoTest.php │ │ │ │ │ ├── ParentSuite.php │ │ │ │ │ └── ChildSuite.php │ │ │ ├── Fail │ │ │ │ └── fail.phpt │ │ │ └── bootstrap.php │ │ ├── .gitattributes │ │ ├── .stickler.yml │ │ └── src │ │ │ ├── Util │ │ │ └── PHP │ │ │ │ └── eval-stdin.php │ │ │ ├── Runner │ │ │ └── Exception.php │ │ │ └── Exception.php │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── source_without_ignore.php │ │ │ │ ├── ignored-lines-text.txt │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── BankAccount-text.txt │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── source_without_namespace.php │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ ├── class-with-anonymous-function-text.txt │ │ │ │ ├── source_with_namespace.php │ │ │ │ └── CoverageMethodParenthesesWhitespaceTest.php │ │ │ └── bootstrap.php │ │ ├── .gitignore │ │ ├── src │ │ │ └── Report │ │ │ │ └── Html │ │ │ │ └── Renderer │ │ │ │ └── Template │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── coverage_bar.html.dist │ │ └── .github │ │ │ └── CONTRIBUTING.md │ ├── php-file-iterator │ │ ├── .gitattributes │ │ └── .gitignore │ ├── php-text-template │ │ ├── .gitattributes │ │ └── .gitignore │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── tests │ │ │ ├── _fixture │ │ │ │ ├── issue19.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classUsesNamespacedFunction.php │ │ │ │ ├── issue30.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── source2.php │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── closure.php │ │ │ │ ├── source5.php │ │ │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ │ │ └── source3.php │ │ │ └── bootstrap.php │ │ └── .gitignore │ └── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── tests │ │ ├── _fixture │ │ │ ├── AnInterface.php │ │ │ ├── AnotherInterface.php │ │ │ ├── TraversableMockTestInterface.php │ │ │ ├── Bar.php │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ ├── StringableClass.php │ │ │ ├── Foo.php │ │ │ ├── MockTestInterface.php │ │ │ ├── FunctionCallback.php │ │ │ ├── SomeClass.php │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ ├── MethodCallbackByReference.php │ │ │ ├── AbstractTrait.php │ │ │ └── PartialMockTestClass.php │ │ └── bootstrap.php │ │ ├── src │ │ └── Framework │ │ │ └── MockObject │ │ │ └── Generator │ │ │ ├── deprecation.tpl.dist │ │ │ ├── trait_class.tpl.dist │ │ │ ├── wsdl_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ ├── wsdl_class.tpl.dist │ │ │ ├── mocked_class_method.tpl.dist │ │ │ └── mocked_static_method.tpl.dist │ │ ├── .gitignore │ │ └── CONTRIBUTING.md ├── symfony │ └── yaml │ │ ├── .gitignore │ │ └── Tests │ │ └── Fixtures │ │ ├── embededPhp.yml │ │ ├── legacyNonStringKeys.yml │ │ ├── nonStringKeys.yml │ │ ├── arrow.gif │ │ ├── nullMappingKey.yml │ │ ├── legacyNullMappingKey.yml │ │ ├── multiple_lines_as_literal_block_for_tagged_values.yml │ │ ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml │ │ ├── booleanMappingKeys.yml │ │ └── sfObjects.yml ├── myclabs │ └── deep-copy │ │ ├── .gitignore │ │ ├── fixtures │ │ ├── f008 │ │ │ ├── B.php │ │ │ └── A.php │ │ ├── f005 │ │ │ └── Foo.php │ │ ├── f004 │ │ │ └── UnclonableItem.php │ │ ├── f007 │ │ │ ├── FooDateInterval.php │ │ │ └── FooDateTimeZone.php │ │ └── f001 │ │ │ ├── A.php │ │ │ └── B.php │ │ ├── doc │ │ ├── clone.png │ │ ├── graph.png │ │ ├── deep-copy.png │ │ └── deep-clone.png │ │ ├── .gitattributes │ │ └── src │ │ └── DeepCopy │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── TypeFilter │ │ ├── Spl │ │ │ └── SplDoublyLinkedList.php │ │ ├── TypeFilter.php │ │ └── ShallowCopyFilter.php │ │ ├── Matcher │ │ └── Matcher.php │ │ ├── deep_copy.php │ │ └── Filter │ │ └── KeepFilter.php ├── squizlabs │ └── php_codesniffer │ │ ├── src │ │ └── Standards │ │ │ ├── PSR12 │ │ │ └── Tests │ │ │ │ ├── Files │ │ │ │ ├── OpenTagUnitTest.5.inc │ │ │ │ ├── OpenTagUnitTest.2.inc │ │ │ │ ├── OpenTagUnitTest.4.inc │ │ │ │ ├── FileHeaderUnitTest.7.inc │ │ │ │ ├── OpenTagUnitTest.1.inc │ │ │ │ ├── OpenTagUnitTest.2.inc.fixed │ │ │ │ ├── OpenTagUnitTest.3.inc │ │ │ │ ├── FileHeaderUnitTest.7.inc.fixed │ │ │ │ ├── FileHeaderUnitTest.8.inc │ │ │ │ ├── FileHeaderUnitTest.10.inc │ │ │ │ ├── FileHeaderUnitTest.10.inc.fixed │ │ │ │ ├── FileHeaderUnitTest.9.inc │ │ │ │ ├── FileHeaderUnitTest.6.inc │ │ │ │ ├── FileHeaderUnitTest.12.inc │ │ │ │ ├── FileHeaderUnitTest.5.inc │ │ │ │ ├── FileHeaderUnitTest.11.inc │ │ │ │ ├── FileHeaderUnitTest.12.inc.fixed │ │ │ │ └── FileHeaderUnitTest.11.inc.fixed │ │ │ │ └── Properties │ │ │ │ └── ConstantVisibilityUnitTest.inc │ │ │ ├── Generic │ │ │ ├── Tests │ │ │ │ ├── Debug │ │ │ │ │ ├── ESLintUnitTest.js │ │ │ │ │ ├── JSHintUnitTest.js │ │ │ │ │ ├── ClosureLinterUnitTest.js │ │ │ │ │ └── CSSLintUnitTest.css │ │ │ │ ├── Files │ │ │ │ │ ├── ExecutableFileUnitTest.1.inc │ │ │ │ │ ├── ExecutableFileUnitTest.2.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.3.js │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.js │ │ │ │ │ ├── EndFileNewlineUnitTest.2.js │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.js.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.js │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.js.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.5.inc │ │ │ │ │ ├── InlineHTMLUnitTest.6.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.1.js │ │ │ │ │ ├── EndFileNewlineUnitTest.2.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.3.css │ │ │ │ │ ├── EndFileNewlineUnitTest.3.js.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.5.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.js │ │ │ │ │ ├── EndFileNoNewlineUnitTest.3.css │ │ │ │ │ ├── EndFileNoNewlineUnitTest.6.inc │ │ │ │ │ ├── InlineHTMLUnitTest.1.inc │ │ │ │ │ ├── InlineHTMLUnitTest.7.inc │ │ │ │ │ ├── LineEndingsUnitTest.js │ │ │ │ │ ├── ByteOrderMarkUnitTest.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.2.css │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.css.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.inc.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.css │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.css.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.4.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.6.inc.fixed │ │ │ │ │ ├── InlineHTMLUnitTest.2.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.1.css │ │ │ │ │ ├── EndFileNewlineUnitTest.3.css.fixed │ │ │ │ │ ├── EndFileNoNewlineUnitTest.1.css │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.2.inc.fixed │ │ │ │ │ ├── LineEndingsUnitTest.js.fixed │ │ │ │ │ ├── InlineHTMLUnitTest.5.inc │ │ │ │ │ ├── LowercasedFilenameUnitTest.inc │ │ │ │ │ ├── InlineHTMLUnitTest.4.inc │ │ │ │ │ ├── LineEndingsUnitTest.css │ │ │ │ │ ├── LineEndingsUnitTest.css.fixed │ │ │ │ │ ├── InlineHTMLUnitTest.3.inc │ │ │ │ │ ├── OneClassPerFileUnitTest.inc │ │ │ │ │ ├── OneInterfacePerFileUnitTest.inc │ │ │ │ │ ├── OneTraitPerFileUnitTest.inc │ │ │ │ │ ├── EndFileNoNewlineUnitTest.7.inc │ │ │ │ │ ├── LineEndingsUnitTest.inc │ │ │ │ │ ├── OneObjectStructurePerFileUnitTest.inc │ │ │ │ │ └── LineEndingsUnitTest.inc.fixed │ │ │ │ ├── PHP │ │ │ │ │ ├── SyntaxUnitTest.inc │ │ │ │ │ ├── BacktickOperatorUnitTest.inc │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.3.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.2.inc │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.2.inc │ │ │ │ │ ├── CharacterBeforePHPOpeningTagUnitTest.1.inc │ │ │ │ │ ├── DeprecatedFunctionsUnitTest.inc │ │ │ │ │ ├── RequireStrictTypesUnitTest.1.inc │ │ │ │ │ ├── SAPIUsageUnitTest.inc │ │ │ │ │ ├── NoSilencedErrorsUnitTest.inc │ │ │ │ │ ├── ClosingPHPTagUnitTest.inc │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.2.inc │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.2.inc.fixed │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.1.inc │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.2.inc │ │ │ │ │ ├── DisallowShortOpenTagUnitTest.1.inc.fixed │ │ │ │ │ ├── DisallowAlternativePHPTagsUnitTest.2.inc.fixed │ │ │ │ │ ├── DiscourageGotoUnitTest.inc │ │ │ │ │ └── DisallowAlternativePHPTagsUnitTest.1.inc.fixed │ │ │ │ ├── WhiteSpace │ │ │ │ │ ├── ScopeIndentUnitTest.4.inc │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.css │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.css.fixed │ │ │ │ │ ├── DisallowTabIndentUnitTest.css │ │ │ │ │ ├── DisallowTabIndentUnitTest.css.fixed │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.js │ │ │ │ │ ├── DisallowSpaceIndentUnitTest.js.fixed │ │ │ │ │ ├── DisallowTabIndentUnitTest.js │ │ │ │ │ ├── DisallowTabIndentUnitTest.js.fixed │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.js.fixed │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.inc.fixed │ │ │ │ │ ├── IncrementDecrementSpacingUnitTest.js │ │ │ │ │ └── IncrementDecrementSpacingUnitTest.inc │ │ │ │ ├── Classes │ │ │ │ │ ├── DuplicateClassNameUnitTest.4.inc │ │ │ │ │ ├── DuplicateClassNameUnitTest.2.inc │ │ │ │ │ ├── DuplicateClassNameUnitTest.5.inc │ │ │ │ │ ├── DuplicateClassNameUnitTest.3.inc │ │ │ │ │ ├── DuplicateClassNameUnitTest.6.inc │ │ │ │ │ └── DuplicateClassNameUnitTest.1.inc │ │ │ │ ├── VersionControl │ │ │ │ │ └── SubversionPropertiesUnitTest.inc │ │ │ │ ├── Formatting │ │ │ │ │ ├── SpaceAfterNotUnitTest.js │ │ │ │ │ └── SpaceAfterNotUnitTest.js.fixed │ │ │ │ ├── ControlStructures │ │ │ │ │ ├── InlineControlStructureUnitTest.3.inc │ │ │ │ │ ├── InlineControlStructureUnitTest.5.inc │ │ │ │ │ ├── InlineControlStructureUnitTest.4.inc │ │ │ │ │ ├── InlineControlStructureUnitTest.6.inc │ │ │ │ │ └── InlineControlStructureUnitTest.2.inc │ │ │ │ ├── CodeAnalysis │ │ │ │ │ ├── UnconditionalIfStatementUnitTest.inc │ │ │ │ │ └── ForLoopShouldBeWhileLoopUnitTest.inc │ │ │ │ └── Arrays │ │ │ │ │ ├── DisallowShortArraySyntaxUnitTest.inc │ │ │ │ │ └── DisallowShortArraySyntaxUnitTest.inc.fixed │ │ │ ├── Docs │ │ │ │ ├── Files │ │ │ │ │ ├── ExecutableFileStandard.xml │ │ │ │ │ ├── LowercasedFilenameStandard.xml │ │ │ │ │ ├── EndFileNewlineStandard.xml │ │ │ │ │ ├── EndFileNoNewlineStandard.xml │ │ │ │ │ ├── LineEndingsStandard.xml │ │ │ │ │ ├── LineLengthStandard.xml │ │ │ │ │ └── ByteOrderMarkStandard.xml │ │ │ │ ├── PHP │ │ │ │ │ ├── DiscourageGotoStandard.xml │ │ │ │ │ ├── BacktickOperatorStandard.xml │ │ │ │ │ ├── DisallowRequestSuperglobalStandard.xml │ │ │ │ │ └── DisallowShortOpenTagStandard.xml │ │ │ │ ├── WhiteSpace │ │ │ │ │ ├── DisallowTabIndentStandard.xml │ │ │ │ │ └── DisallowSpaceIndentStandard.xml │ │ │ │ ├── Metrics │ │ │ │ │ ├── NestingLevelStandard.xml │ │ │ │ │ └── CyclomaticComplexityStandard.xml │ │ │ │ └── VersionControl │ │ │ │ │ └── SubversionPropertiesStandard.xml │ │ │ └── ruleset.xml │ │ │ ├── Zend │ │ │ └── Tests │ │ │ │ ├── Files │ │ │ │ ├── ClosingTagUnitTest.7.inc │ │ │ │ ├── ClosingTagUnitTest.7.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.6.inc │ │ │ │ ├── ClosingTagUnitTest.3.inc │ │ │ │ ├── ClosingTagUnitTest.6.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.3.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.4.inc │ │ │ │ ├── ClosingTagUnitTest.4.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.5.inc │ │ │ │ ├── ClosingTagUnitTest.5.inc.fixed │ │ │ │ ├── ClosingTagUnitTest.2.inc │ │ │ │ ├── ClosingTagUnitTest.1.inc │ │ │ │ └── ClosingTagUnitTest.1.inc.fixed │ │ │ │ └── Debug │ │ │ │ └── CodeAnalyzerUnitTest.inc │ │ │ ├── PSR2 │ │ │ ├── Tests │ │ │ │ ├── Files │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.9.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.2.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.8.inc │ │ │ │ │ ├── ClosingTagUnitTest.4.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc │ │ │ │ │ ├── ClosingTagUnitTest.4.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.1.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.10.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.10.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.3.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.6.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.9.inc.fixed │ │ │ │ │ ├── EndFileNewlineUnitTest.4.inc │ │ │ │ │ ├── ClosingTagUnitTest.5.inc │ │ │ │ │ ├── ClosingTagUnitTest.5.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.2.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.5.inc │ │ │ │ │ ├── EndFileNewlineUnitTest.7.inc │ │ │ │ │ ├── ClosingTagUnitTest.3.inc │ │ │ │ │ ├── ClosingTagUnitTest.1.inc │ │ │ │ │ ├── ClosingTagUnitTest.1.inc.fixed │ │ │ │ │ ├── ClosingTagUnitTest.6.inc │ │ │ │ │ └── ClosingTagUnitTest.6.inc.fixed │ │ │ │ ├── Namespaces │ │ │ │ │ ├── UseDeclarationUnitTest.11.inc │ │ │ │ │ ├── UseDeclarationUnitTest.6.inc │ │ │ │ │ ├── UseDeclarationUnitTest.7.inc │ │ │ │ │ ├── UseDeclarationUnitTest.11.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.17.inc │ │ │ │ │ ├── UseDeclarationUnitTest.4.inc │ │ │ │ │ ├── UseDeclarationUnitTest.8.inc │ │ │ │ │ ├── UseDeclarationUnitTest.10.inc │ │ │ │ │ ├── UseDeclarationUnitTest.9.inc │ │ │ │ │ ├── UseDeclarationUnitTest.10.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.12.inc │ │ │ │ │ ├── UseDeclarationUnitTest.14.inc │ │ │ │ │ ├── UseDeclarationUnitTest.12.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.13.inc │ │ │ │ │ ├── UseDeclarationUnitTest.14.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.15.inc │ │ │ │ │ ├── UseDeclarationUnitTest.13.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.16.inc │ │ │ │ │ ├── UseDeclarationUnitTest.16.inc.fixed │ │ │ │ │ ├── UseDeclarationUnitTest.3.inc │ │ │ │ │ └── UseDeclarationUnitTest.3.inc.fixed │ │ │ │ └── ControlStructures │ │ │ │ │ ├── ElseIfDeclarationUnitTest.inc │ │ │ │ │ └── ElseIfDeclarationUnitTest.inc.fixed │ │ │ └── Docs │ │ │ │ └── Files │ │ │ │ └── EndFileNewlineStandard.xml │ │ │ ├── Squiz │ │ │ └── Tests │ │ │ │ ├── Debug │ │ │ │ ├── JSLintUnitTest.js │ │ │ │ └── JavaScriptLintUnitTest.js │ │ │ │ ├── WhiteSpace │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.js │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.js.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.js │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.js.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.css │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.css │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.css.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.css.fixed │ │ │ │ ├── FunctionSpacingUnitTest.2.inc │ │ │ │ ├── FunctionSpacingUnitTest.4.inc │ │ │ │ ├── FunctionSpacingUnitTest.2.inc.fixed │ │ │ │ ├── FunctionSpacingUnitTest.3.inc.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.inc.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.5.inc │ │ │ │ ├── SuperfluousWhitespaceUnitTest.5.inc.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.4.inc │ │ │ │ ├── FunctionSpacingUnitTest.3.inc │ │ │ │ ├── FunctionSpacingUnitTest.5.inc │ │ │ │ ├── SuperfluousWhitespaceUnitTest.4.inc.fixed │ │ │ │ ├── FunctionSpacingUnitTest.7.inc │ │ │ │ ├── FunctionSpacingUnitTest.5.inc.fixed │ │ │ │ ├── FunctionSpacingUnitTest.6.inc.fixed │ │ │ │ ├── FunctionSpacingUnitTest.6.inc │ │ │ │ ├── CastSpacingUnitTest.inc.fixed │ │ │ │ ├── SuperfluousWhitespaceUnitTest.3.inc │ │ │ │ ├── SuperfluousWhitespaceUnitTest.2.inc.fixed │ │ │ │ ├── CastSpacingUnitTest.inc │ │ │ │ └── SuperfluousWhitespaceUnitTest.2.inc │ │ │ │ ├── Files │ │ │ │ ├── FileExtensionUnitTest.2.inc │ │ │ │ ├── FileExtensionUnitTest.4.inc │ │ │ │ ├── FileExtensionUnitTest.1.inc │ │ │ │ └── FileExtensionUnitTest.3.inc │ │ │ │ ├── Commenting │ │ │ │ ├── FileCommentUnitTest.4.inc │ │ │ │ ├── FileCommentUnitTest.5.inc │ │ │ │ ├── PostStatementCommentUnitTest.2.js │ │ │ │ ├── FileCommentUnitTest.3.inc │ │ │ │ ├── FileCommentUnitTest.2.js │ │ │ │ ├── FileCommentUnitTest.2.inc │ │ │ │ └── FileCommentUnitTest.6.inc │ │ │ │ ├── PHP │ │ │ │ ├── DisallowInlineIfUnitTest.js │ │ │ │ ├── EvalUnitTest.inc │ │ │ │ ├── DiscouragedFunctionsUnitTest.inc │ │ │ │ ├── GlobalKeywordUnitTest.inc │ │ │ │ └── DisallowSizeFunctionsInLoopsUnitTest.js │ │ │ │ ├── CSS │ │ │ │ ├── IndentationUnitTest.2.css │ │ │ │ ├── EmptyStyleDefinitionUnitTest.css │ │ │ │ └── EmptyClassDefinitionUnitTest.css │ │ │ │ ├── Functions │ │ │ │ └── FunctionDuplicateArgumentUnitTest.inc │ │ │ │ ├── ControlStructures │ │ │ │ ├── ElseIfDeclarationUnitTest.inc │ │ │ │ └── ElseIfDeclarationUnitTest.inc.fixed │ │ │ │ └── Classes │ │ │ │ ├── LowercaseClassKeywordsUnitTest.inc │ │ │ │ └── LowercaseClassKeywordsUnitTest.inc.fixed │ │ │ ├── PSR1 │ │ │ └── Tests │ │ │ │ ├── Classes │ │ │ │ ├── ClassDeclarationUnitTest.1.inc │ │ │ │ └── ClassDeclarationUnitTest.2.inc │ │ │ │ └── Files │ │ │ │ ├── SideEffectsUnitTest.5.inc │ │ │ │ ├── SideEffectsUnitTest.7.inc │ │ │ │ ├── SideEffectsUnitTest.3.inc │ │ │ │ ├── SideEffectsUnitTest.4.inc │ │ │ │ ├── SideEffectsUnitTest.8.inc │ │ │ │ ├── SideEffectsUnitTest.10.inc │ │ │ │ ├── SideEffectsUnitTest.12.inc │ │ │ │ ├── SideEffectsUnitTest.9.inc │ │ │ │ ├── SideEffectsUnitTest.6.inc │ │ │ │ └── SideEffectsUnitTest.11.inc │ │ │ ├── MySource │ │ │ └── Tests │ │ │ │ ├── Debug │ │ │ │ ├── DebugCodeUnitTest.inc │ │ │ │ └── FirebugConsoleUnitTest.js │ │ │ │ ├── Objects │ │ │ │ └── DisallowNewWidgetUnitTest.inc │ │ │ │ └── PHP │ │ │ │ └── ReturnFunctionValueUnitTest.inc │ │ │ └── PEAR │ │ │ ├── Docs │ │ │ └── Files │ │ │ │ └── LineLengthStandard.xml │ │ │ └── Tests │ │ │ └── Classes │ │ │ └── ClassDeclarationUnitTest.2.inc │ │ ├── .gitignore │ │ ├── .gitattributes │ │ └── CodeSniffer.conf.dist ├── doctrine │ └── instantiator │ │ └── .gitignore ├── webmozart │ └── assert │ │ ├── ci │ │ └── composer.json │ │ └── .editorconfig ├── bin │ ├── phpunit.bat │ ├── phpcbf.bat │ ├── phpcs.bat │ ├── phpunit │ ├── phpcs │ └── phpcbf ├── guzzlehttp │ ├── guzzle │ │ └── src │ │ │ ├── Exception │ │ │ ├── TooManyRedirectsException.php │ │ │ ├── TransferException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── ClientException.php │ │ │ └── ServerException.php │ │ │ └── functions_include.php │ ├── psr7 │ │ └── src │ │ │ └── functions_include.php │ └── promises │ │ ├── src │ │ ├── functions_include.php │ │ ├── CancellationException.php │ │ └── PromisorInterface.php │ │ └── Makefile ├── phpdocumentor │ └── reflection-common │ │ └── README.md ├── autoload.php └── composer │ └── autoload_namespaces.php └── src └── GoSell.php /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | 3 | composer.lock -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.phar 2 | /composer.lock 3 | /vendor/* 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache -------------------------------------------------------------------------------- /vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /build/arginfo.php 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | 3 | *.php diff=php 4 | 5 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/issue19.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | 5 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/ESLintUnitTest.js: -------------------------------------------------------------------------------- 1 | var foo = bar; 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.7.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.2.js: -------------------------------------------------------------------------------- 1 | 2 | alert('hi); 3 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 3 | hi 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/nonStringKeys.yml: -------------------------------------------------------------------------------- 1 | - booleanMappingKeys 2 | - numericMappingKeys 3 | - nullMappingKey 4 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f008/B.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.6.inc.fixed: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/BacktickOperatorUnitTest.inc: -------------------------------------------------------------------------------- 1 | add('arg'))?> 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.6.inc.fixed: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.js.fixed: -------------------------------------------------------------------------------- 1 | alert('hi'); 2 | alert('hi'); 3 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.3.inc.fixed: -------------------------------------------------------------------------------- 1 | add('arg')); 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classInNamespace.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.11.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tap-Payments/gosell-sdk-php/HEAD/vendor/myclabs/deep-copy/doc/clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tap-Payments/gosell-sdk-php/HEAD/vendor/myclabs/deep-copy/doc/graph.png -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/EmptyTestCaseTest.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Classes/ClassDeclarationUnitTest.1.inc: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.8.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.7.inc: -------------------------------------------------------------------------------- 1 | add('arg')) /* comment */ ?> 2 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tap-Payments/gosell-sdk-php/HEAD/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration_stop_on_warning.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.css: -------------------------------------------------------------------------------- 1 | #login-container { 2 | margin-left: -225px; 3 | } 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | add('arg')); /* comment */ 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | add('arg')); } ?> 2 | -------------------------------------------------------------------------------- /vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | setlocal DISABLEDELAYEDEXPANSION 3 | SET BIN_TARGET=%~dp0/../phpunit/phpunit/phpunit 4 | php "%BIN_TARGET%" %* 5 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tap-Payments/gosell-sdk-php/HEAD/vendor/myclabs/deep-copy/doc/deep-clone.png -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/AnInterface.php: -------------------------------------------------------------------------------- 1 | add('arg')); } 2 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tap-Payments/gosell-sdk-php/HEAD/vendor/symfony/yaml/Tests/Fixtures/arrow.gif -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/deprecation.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1216/bootstrap1216.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.css.fixed: -------------------------------------------------------------------------------- 1 | #login-container { 2 | margin-left: -225px; 3 | } 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 4 | 5 | 5 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.2.inc: -------------------------------------------------------------------------------- 1 |
2 | 3 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.css: -------------------------------------------------------------------------------- 1 | .HelpWidgetType-new-bug-title { 2 | float: left; 3 | } 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.2.inc: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ConcreteTest.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/InheritedTestCase.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.css: -------------------------------------------------------------------------------- 1 | #login-container { 2 | margin-left: -225px; 3 | width: 450px; 4 | } 5 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.css.fixed: -------------------------------------------------------------------------------- 1 | #login-container { 2 | margin-left: -225px; 3 | width: 450px; 4 | } 5 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.css: -------------------------------------------------------------------------------- 1 | #login-container { 2 | margin-left: -225px; 3 | width: 450px; 4 | } 5 | 6 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.7.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 4 |

5 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.8.inc: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 4 | 5 | A: 6 | B: 7 | C: -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/nullMappingKey.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Miscellaneous 3 | spec: 2.21 4 | yaml: | 5 | null: ~ 6 | php: | 7 | [ 8 | 'null' => null, 9 | ] 10 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | *.png binary 5 | 6 | tests/ export-ignore 7 | phpunit.xml.dist export-ignore 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/StringableClass.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/IndentationUnitTest.2.css: -------------------------------------------------------------------------------- 1 | /* Live coding. Has to be the last (only) test in the file. */ 2 | .intentional-parse-error { 3 | float: left 4 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.1.inc.fixed: -------------------------------------------------------------------------------- 1 | 6 | 7 | null, 9 | ] 10 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Exception/TransferException.php: -------------------------------------------------------------------------------- 1 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2758/Issue2758Test.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowNoExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ClassWithScalarTypeDeclarations.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/SAPIUsageUnitTest.inc: -------------------------------------------------------------------------------- 1 | php_sapi_name() === true) {} 5 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/multiple_lines_as_literal_block_for_tagged_values.yml: -------------------------------------------------------------------------------- 1 | data: 2 | foo: !bar "foo\r\nline with trailing spaces:\n \nbar\ninteger like line:\n123456789\nempty line:\n\nbaz" 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/MockTestInterface.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.js: -------------------------------------------------------------------------------- 1 | 2 | if (!someVar || !x) {} 3 | if (! someVar || ! x) {} 4 | if (!foo() && (!x || true)) {} 5 | var z = !(x || y); 6 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.5.inc: -------------------------------------------------------------------------------- 1 |    5 |   -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.5.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/README.md: -------------------------------------------------------------------------------- 1 | # ReflectionCommon 2 | [![Build Status](https://travis-ci.org/phpDocumentor/ReflectionCommon.svg?branch=master)](https://travis-ci.org/phpDocumentor/ReflectionCommon) 3 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestTestError.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/multiple_lines_as_literal_block_leading_space_in_first_line.yml: -------------------------------------------------------------------------------- 1 | data: 2 | multi_line: |4 3 | the first line has leading spaces 4 | The second line does not. 5 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.10.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/phpt-external.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-1436: PHPT runner doesn't handle external files. 3 | --FILE_EXTERNAL-- 4 | _files/phpt_external.php 5 | --EXPECT_EXTERNAL-- 6 | _files/expect_external.txt 7 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/ClosingPHPTagUnitTest.inc: -------------------------------------------------------------------------------- 1 | 4 | Bold text 5 | 8 | Italic text 9 | 2 | 3 | 4 | 5 | 6 |
7 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/functions_include.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1265/Issue1265Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/783/OneTest.php: -------------------------------------------------------------------------------- 1 | markTestSkipped('Skipped test'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.2.inc: -------------------------------------------------------------------------------- 1 |
2 | 3 | Some content Some more content 4 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.4.inc: -------------------------------------------------------------------------------- 1 | 2 | '; 5 | } 6 | 7 | printHead(); 8 | ?> 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Properties/ConstantVisibilityUnitTest.inc: -------------------------------------------------------------------------------- 1 | assertTrue(PHPUNIT_1330); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIncomplete.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Incomplete test'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.5.inc.fixed: -------------------------------------------------------------------------------- 1 | true, 10 | 'false' => false, 11 | ] 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IncompleteTest.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Test incomplete'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpt-for-coverage.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT for testing coverage 3 | --FILE-- 4 | publicMethod(); 8 | --EXPECT-- 9 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.12.inc.fixed: -------------------------------------------------------------------------------- 1 | cloned = true; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/phpt-args.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports ARGS section 3 | --ARGS-- 4 | help 5 | --FILE-- 6 | 0 && $argv[1] == 'help') { 8 | echo 'Help'; 9 | } 10 | ?> 11 | --EXPECT-- 12 | Help 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IniTest.php: -------------------------------------------------------------------------------- 1 | assertEquals('application/x-test', ini_get('default_mimetype')); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/WasRun.php: -------------------------------------------------------------------------------- 1 | wasRun = true; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/CSSLintUnitTest.css: -------------------------------------------------------------------------------- 1 | /*csslint important: true, order-alphabetical: true, zero-units: true */ 2 | 3 | .selector-with-errors { 4 | font-size: 10px !important; 5 | border: 0px; 6 | } 7 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.2.inc.fixed: -------------------------------------------------------------------------------- 1 |
2 | 3 | Some content Some more content 4 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.8.inc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.10.inc: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/phpt-stdin.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports STDIN section 3 | --STDIN-- 4 | Hello World 5 | --FILE-- 6 | 10 | --EXPECT-- 11 | Hello World 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ThrowExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/LowercasedFilenameStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DiscourageGotoStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | assertTrue(false); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/797/bootstrap797.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 5 |

some html here

6 | 7 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Files/EndFileNewlineStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDuplicateArgumentUnitTest.inc: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/CancellationException.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1216/phpunit1216.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2972/issue-2972-test.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | Just a sample test for issue 2972, does not actually test anything 3 | --FILE-- 4 | 7 | ===DONE=== 8 | --EXPECT-- 9 | Hello world 10 | ===DONE=== 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/873/Issue873Test.php: -------------------------------------------------------------------------------- 1 | doSomething(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/CodeSniffer.conf.dist: -------------------------------------------------------------------------------- 1 | 'PSR2', 4 | 'report_format' => 'summary', 5 | 'show_warnings' => '0', 6 | 'show_progress' => '1', 7 | 'report_width' => '120', 8 | ) 9 | ?> 10 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnconditionalIfStatementUnitTest.inc: -------------------------------------------------------------------------------- 1 | assertTrue(true); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestGeneratorMaker.php: -------------------------------------------------------------------------------- 1 | $value) { 7 | yield $key => $value; 8 | } 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpt-xfail.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner supports XFAIL section 3 | --FILE-- 4 | 8 | --XFAIL-- 9 | Syntax Error in PHPT is supposed to fail 10 | --EXPECT-- 11 | Should not see this 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.0.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tap-Payments/gosell-sdk-php/HEAD/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.0.phar -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/EndFileNoNewlineStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/LineEndingsStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.1.inc: -------------------------------------------------------------------------------- 1 |
2 | 3 | Some content here. 4 | 5 | 6 | Some content Some more content 7 | 10 | 11 |
12 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingNonBraceSyntax.php: -------------------------------------------------------------------------------- 1 | assertTrue($_ENV['configAvailableInBootstrap']); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/322/phpunit322.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/CastSpacingUnitTest.inc.fixed: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/ReturnFunctionValueUnitTest.inc: -------------------------------------------------------------------------------- 1 | myFunction(); 5 | return $obj->variable; 6 | return MyClass::VARIABLE; 7 | return $variable; 8 | return ($var + 1); 9 | ?> -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 3 |

4 | 5 |

8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/phpt-env.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner should support ENV section 3 | --ENV-- 4 | FOO=bar 5 | --FILE-- 6 | 11 | --EXPECTF_EXTERNAL-- 12 | _files/phpt-env.expected.txt 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/DisallowSpaceIndentStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneTraitPerFileUnitTest.inc: -------------------------------------------------------------------------------- 1 | trait; 16 | echo Something::$trait; 17 | echo $trait; 18 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/CastSpacingUnitTest.inc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f004/UnclonableItem.php: -------------------------------------------------------------------------------- 1 | expectExceptionMessage('hello'); 7 | 8 | throw new \Exception('hello'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.7.inc: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | group('a.id, 14 | uc.name, 15 | ag.title, 16 | ua.name' 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneObjectStructurePerFileUnitTest.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.16.inc: -------------------------------------------------------------------------------- 1 | 4 |

5 | 6 |

9 | 10 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | sudo: false 4 | 5 | before_install: 6 | - composer self-update 7 | 8 | install: 9 | - travis_retry composer install --no-interaction --prefer-source 10 | 11 | php: 12 | - 5.6 13 | - hhvm 14 | 15 | notifications: 16 | email: false 17 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/LineLengthStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Metrics/NestingLevelStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.2.inc: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | group('a.id, 14 | uc.name, 15 | ag.title, 16 | ua.name' 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.js.fixed: -------------------------------------------------------------------------------- 1 | var i; 2 | 3 | i = 10; 4 | --i; 5 | --i; 6 | -- /*comment*/ i; 7 | ++i; 8 | ++i; 9 | ++/*comment*/i; 10 | 11 | i--; 12 | i--; 13 | i /*comment*/ --; 14 | i++; 15 | i++; 16 | i /*comment*/ ++; 17 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Files/LineLengthStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/ChangeCurrentWorkingDirectoryTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/SampleClass.php: -------------------------------------------------------------------------------- 1 | a = $a; 11 | $this->b = $b; 12 | $this->c = $c; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowShortArraySyntaxUnitTest.inc: -------------------------------------------------------------------------------- 1 | 2 | <% echo $var; %> 3 |

Some text <% echo $var; %> and some more text

4 | <%= $var . ' and some more text to make sure the snippet works'; %> 5 |

Some text <%= $var %> and some more text

6 | 7 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.1.inc.fixed: -------------------------------------------------------------------------------- 1 |
2 | 3 | Some content here. 4 | 5 | 6 | Some content Some more content 7 | 10 | 11 |
12 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/GlobalKeywordUnitTest.inc: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/phpt-stderr.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-1169: PHPT runner doesn't look at STDERR. 3 | --FILE-- 4 | endCount++; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 9 | * 10 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f007/FooDateInterval.php: -------------------------------------------------------------------------------- 1 | cloned = true; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f007/FooDateTimeZone.php: -------------------------------------------------------------------------------- 1 | cloned = true; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1471/Issue1471Test.php: -------------------------------------------------------------------------------- 1 | expectOutputString('*'); 7 | 8 | print '*'; 9 | 10 | $this->assertTrue(false); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/503/Issue503Test.php: -------------------------------------------------------------------------------- 1 | assertSame( 7 | "foo\n", 8 | "foo\r\n" 9 | ); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | myTestData = $data; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/ChangeLog.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to `sebastianbergmann/code-unit-reverse-lookup` are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. 4 | 5 | ## 1.0.0 - 2016-02-13 6 | 7 | ### Added 8 | 9 | * Initial release 10 | 11 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.2.js: -------------------------------------------------------------------------------- 1 | /** 2 | * File comment. 3 | * 4 | * @package Package 5 | * @subpackage Subpackage 6 | * @author Squiz Pty Ltd 7 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 8 | */ 9 | 10 | print 'hi'; -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f008/A.php: -------------------------------------------------------------------------------- 1 | foo = $foo; 12 | } 13 | 14 | public function getFoo() 15 | { 16 | return $this->foo; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | assertNotEmpty('Hello world!'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/797/Issue797Test.php: -------------------------------------------------------------------------------- 1 | assertEquals(GITHUB_ISSUE, 797); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/FatalTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IgnoreCodeCoverageClass.php: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 9 | */ 10 | 11 | echo 'hi'; -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/74/Issue74Test.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.2.inc.fixed: -------------------------------------------------------------------------------- 1 |
2 | 3 |

Some text and some more text

4 | 5 |

Some text and some more text

6 |
7 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DiscourageGotoUnitTest.inc: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_without_namespace.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tests/OneTest.php: -------------------------------------------------------------------------------- 1 | assertExampleExtensionInitialized(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.11.inc: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/mocked_class_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | public function method() 3 | { 4 | $any = new PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount; 5 | $expects = $this->expects($any); 6 | return call_user_func_array(array($expects, 'method'), func_get_args()); 7 | } 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/mocked_static_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}){return_delim}{return_type} 3 | { 4 | throw new PHPUnit_Framework_MockObject_BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object'); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractTrait.php: -------------------------------------------------------------------------------- 1 | expectException(Exception::class); 7 | $this->expectExceptionMessage(''); 8 | 9 | throw new Exception('message'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/783/ParentSuite.php: -------------------------------------------------------------------------------- 1 | addTest(ChildSuite::suite()); 10 | 11 | return $suite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2859/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./tests/ 7 | ./tests/*/ 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Metrics/CyclomaticComplexityStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | A collection of generic sniffs. This standard is not designed to be used to check code. 4 | 5 | -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | dir=$(cd "${0%[/\\]*}" > /dev/null; cd "../phpunit/phpunit" && pwd) 4 | 5 | if [ -d /proc/cygdrive ] && [[ $(which php) == $(readlink -n /proc/cygdrive)/* ]]; then 6 | # We are in Cgywin using Windows php, so the path must be translated 7 | dir=$(cygpath -m "$dir"); 8 | fi 9 | 10 | "${dir}/phpunit" "$@" 11 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/PromisorInterface.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2758/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/322/Issue322Test.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2833/SecondTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestDoxGroupTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | eval('?>' . file_get_contents('php://stdin')); 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.3.inc: -------------------------------------------------------------------------------- 1 | /dev/null; cd "../squizlabs/php_codesniffer/bin" && pwd) 4 | 5 | if [ -d /proc/cygdrive ] && [[ $(which php) == $(readlink -n /proc/cygdrive)/* ]]; then 6 | # We are in Cgywin using Windows php, so the path must be translated 7 | dir=$(cygpath -m "$dir"); 8 | fi 9 | 10 | "${dir}/phpcs" "$@" 11 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/ByteOrderMarkStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc.fixed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.3.inc.fixed: -------------------------------------------------------------------------------- 1 | 4 | Comments at the end of a line 5 | yaml: | 6 | ex1: "foo # bar" 7 | ex2: "foo # bar" # comment 8 | ex3: 'foo # bar' # comment 9 | ex4: foo # comment 10 | php: | 11 | ['ex1' => 'foo # bar', 'ex2' => 'foo # bar', 'ex3' => 'foo # bar', 'ex4' => 'foo'] 12 | -------------------------------------------------------------------------------- /vendor/bin/phpcbf: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | dir=$(cd "${0%[/\\]*}" > /dev/null; cd "../squizlabs/php_codesniffer/bin" && pwd) 4 | 5 | if [ -d /proc/cygdrive ] && [[ $(which php) == $(readlink -n /proc/cygdrive)/* ]]; then 6 | # We are in Cgywin using Windows php, so the path must be translated 7 | dir=$(cygpath -m "$dir"); 8 | fi 9 | 10 | "${dir}/phpcbf" "$@" 11 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f001/A.php: -------------------------------------------------------------------------------- 1 | aProp; 12 | } 13 | 14 | public function setAProp($prop) 15 | { 16 | $this->aProp = $prop; 17 | 18 | return $this; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2145/Issue2145Test.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | - hhvm 10 | 11 | sudo: false 12 | 13 | before_script: 14 | - composer self-update 15 | - composer install --no-interaction --prefer-source --dev 16 | 17 | script: ./vendor/bin/phpunit 18 | 19 | notifications: 20 | email: false 21 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php: -------------------------------------------------------------------------------- 1 | copy($value); 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/523/Issue523Test.php: -------------------------------------------------------------------------------- 1 | assertAttributeEquals('foo', 'field', new Issue523()); 7 | } 8 | }; 9 | 10 | class Issue523 extends ArrayIterator 11 | { 12 | protected $field = 'foo'; 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DisallowRequestSuperglobalStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.12.inc: -------------------------------------------------------------------------------- 1 | 4 | bProp; 12 | } 13 | 14 | public function setBProp($prop) 15 | { 16 | $this->bProp = $prop; 17 | 18 | return $this; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DisallowShortOpenTagStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | to delimit PHP code, not the shorthand. This is the most portable way to include PHP code on differing operating systems and setups. 5 | ]]> 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.1.inc.fixed: -------------------------------------------------------------------------------- 1 |
2 | 3 | Some content here. 4 | 7 | 8 | 11 | 14 |
15 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.5.inc: -------------------------------------------------------------------------------- 1 | 4 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/class-with-anonymous-function-text.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Code Coverage Report: 4 | %s 5 | 6 | Summary: 7 | Classes: 0.00% (0/1) 8 | Methods: 50.00% (1/2) 9 | Lines: 87.50% (7/8) 10 | 11 | CoveredClassWithAnonymousFunctionInStaticMethod 12 | Methods: 50.00% ( 1/ 2) Lines: 80.00% ( 4/ 5) 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/StopOnWarningTestSuite.php: -------------------------------------------------------------------------------- 1 | addTestSuite('NoTestCases'); 9 | $suite->addTestSuite('CoverageClassTest'); 10 | 11 | return $suite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.11.inc: -------------------------------------------------------------------------------- 1 | 13 | 14 |

15 | 16 | 4 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/VersionControl/SubversionPropertiesStandard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.inc: -------------------------------------------------------------------------------- 1 | valid();) { 7 | $it->next(); 8 | } 9 | 10 | for (;(($it1->valid() && $foo) || (!$it2->value && ($bar || false)));/*Could be ignored*/) { 11 | $it1->next(); 12 | $it2->next(); 13 | } -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.11.inc.fixed: -------------------------------------------------------------------------------- 1 | 14 | 15 |

16 | 17 | 2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DependencyTestSuite.php: -------------------------------------------------------------------------------- 1 | addTestSuite('DependencySuccessTest'); 9 | $suite->addTestSuite('DependencyFailureTest'); 10 | 11 | return $suite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IsolationTest.php: -------------------------------------------------------------------------------- 1 | assertFalse($this->isInIsolation()); 7 | } 8 | 9 | public function testIsInIsolationReturnsTrue() 10 | { 11 | $this->assertTrue($this->isInIsolation()); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/581/Issue581Test.php: -------------------------------------------------------------------------------- 1 | assertEquals( 7 | (object) [1, 2, "Test\r\n", 4, 5, 6, 7, 8], 8 | (object) [1, 2, "Test\r\n", 4, 1, 6, 7, 8] 9 | ); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DataProviderIssue2922/SecondTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.6.inc: -------------------------------------------------------------------------------- 1 | 8 | * @copyright 2010-2014 Squiz Pty Ltd (ABN 77 084 670 600) 9 | */ 10 | 11 | class Foo { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowSizeFunctionsInLoopsUnitTest.js: -------------------------------------------------------------------------------- 1 | for (var i = 0; i < permissions.length; i++) { 2 | // Code here. 3 | } 4 | 5 | var permLen = permissions.length; 6 | for (var length = 0; i < permLen; i++) { 7 | // Code here. 8 | } 9 | 10 | var myArray = [1, 2, 3, 4]; 11 | for (var i = myArray.length; i >= 0; i--) { 12 | var x = i; 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/class_with_method_that_declares_anonymous_class2.php: -------------------------------------------------------------------------------- 1 | method_in_anonymous_class(); 11 | } 12 | 13 | public function methodTwo() { 14 | return false; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php: -------------------------------------------------------------------------------- 1 | constructorCalled = true; 9 | } 10 | 11 | public function doSomething() 12 | { 13 | } 14 | 15 | public function doAnotherThing() 16 | { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2758/Issue2758TestListener.php: -------------------------------------------------------------------------------- 1 | addToAssertionCount(1); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/EmptyClassDefinitionUnitTest.css: -------------------------------------------------------------------------------- 1 | .HelpWidgetType-new-bug-title {} 2 | .HelpWidgetType-new-bug-title { 3 | } 4 | .HelpWidgetType-new-bug-title { 5 | 6 | } 7 | .HelpWidgetType-new-bug-title { 8 | 9 | } 10 | .HelpWidgetType-new-bug-title { 11 | /* Nothing to see here */ 12 | } 13 | .HelpWidgetType-new-bug-title { 14 | float: left; 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Runner/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | class PHPUnit_Runner_Exception extends RuntimeException implements PHPUnit_Exception 12 | { 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/MyCommand.php: -------------------------------------------------------------------------------- 1 | longOptions['my-option='] = 'myHandler'; 8 | $this->longOptions['my-other-option'] = null; 9 | } 10 | 11 | public function myHandler($value) 12 | { 13 | echo __METHOD__ . " $value\n"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/tests/_files/TestClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | class TestClass { 14 | } 15 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | - hhvm 10 | 11 | sudo: false 12 | 13 | before_script: 14 | - composer self-update 15 | - composer install --no-interaction --prefer-source --dev 16 | 17 | script: ./vendor/bin/phpunit 18 | 19 | notifications: 20 | email: false 21 | irc: "irc.freenode.org#phpunit" 22 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/source3.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * Marker interface for PHPUnit exceptions. 13 | */ 14 | interface PHPUnit_Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/783/ChildSuite.php: -------------------------------------------------------------------------------- 1 | addTestSuite('OneTest'); 11 | $suite->addTestSuite('TwoTest'); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/RequirementsClassBeforeClassHookTest.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\ObjectEnumerator; 12 | 13 | interface Exception 14 | { 15 | } 16 | --------------------------------------------------------------------------------