├── .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 |