├── .gitignore └── src ├── public ├── favicon.ico ├── robots.txt └── res │ ├── css │ └── swrt-fonts │ │ ├── icomoon.eot │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── installer │ ├── img │ │ └── pattern.png │ └── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.ttf │ │ ├── FontAwesome.otf │ │ ├── ionicons.woff │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── pkgs │ ├── x-editable │ │ ├── clear.png │ │ └── loading.gif │ ├── jstree │ │ └── themes │ │ │ ├── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ └── throbber.gif │ │ │ └── default-dark │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ └── throbber.gif │ ├── jquery-ui │ │ └── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ └── bootstrap-table │ │ └── extensions │ │ └── group-by-v2 │ │ └── bootstrap-table-group-by.css │ └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── opwifi ├── app ├── Listeners │ └── .gitkeep ├── Policies │ └── .gitkeep ├── Events │ └── Event.php └── Http │ └── Requests │ └── Request.php ├── public ├── favicon.ico └── robots.txt ├── database ├── seeds │ └── .gitkeep ├── .gitignore └── migrations │ └── .gitkeep ├── vendor ├── psr │ └── log │ │ ├── .gitignore │ │ └── Psr │ │ └── Log │ │ └── InvalidArgumentException.php ├── symfony │ ├── finder │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat │ │ │ │ └── a.dat │ │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat.copy │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── a.dat.copy │ │ │ │ ├── with space │ │ │ │ └── foo.txt │ │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ │ └── bar.dat │ │ │ │ ├── dolor.txt │ │ │ │ ├── ipsum.txt │ │ │ │ └── lorem.txt │ │ └── .gitignore │ ├── routing │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── bar.xml │ │ │ │ ├── empty.yml │ │ │ │ ├── foo.xml │ │ │ │ ├── foo1.xml │ │ │ │ ├── annotated.php │ │ │ │ ├── nonvalid.yml │ │ │ │ ├── nonvalid2.yml │ │ │ │ ├── special_route_name.yml │ │ │ │ ├── withdoctype.xml │ │ │ │ ├── incomplete.yml │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ ├── bad_format.yml │ │ │ │ ├── with_define_path_variable.php │ │ │ │ ├── dumper │ │ │ │ └── url_matcher2.apache │ │ │ │ ├── AnnotatedClasses │ │ │ │ └── FooTrait.php │ │ │ │ └── validresource.yml │ │ └── .gitignore │ ├── translation │ │ ├── Tests │ │ │ └── fixtures │ │ │ │ ├── empty.csv │ │ │ │ ├── empty.ini │ │ │ │ ├── empty.json │ │ │ │ ├── empty.mo │ │ │ │ ├── empty.po │ │ │ │ ├── empty.xlf │ │ │ │ ├── empty.yml │ │ │ │ ├── non-valid.yml │ │ │ │ ├── resources.ini │ │ │ │ ├── resources.yml │ │ │ │ ├── malformed.json │ │ │ │ ├── resourcebundle │ │ │ │ ├── corrupted │ │ │ │ │ └── resources.dat │ │ │ │ ├── dat │ │ │ │ │ ├── packagelist.txt │ │ │ │ │ ├── en.txt │ │ │ │ │ ├── fr.txt │ │ │ │ │ ├── en.res │ │ │ │ │ ├── fr.res │ │ │ │ │ └── resources.dat │ │ │ │ └── res │ │ │ │ │ └── en.res │ │ │ │ ├── resources.json │ │ │ │ ├── empty-translation.po │ │ │ │ ├── valid.csv │ │ │ │ ├── resources.php │ │ │ │ ├── plurals.po │ │ │ │ ├── resources.csv │ │ │ │ ├── plurals.mo │ │ │ │ ├── encoding.xlf │ │ │ │ ├── resources.mo │ │ │ │ ├── empty-translation.mo │ │ │ │ ├── resources.po │ │ │ │ ├── fuzzy-translations.po │ │ │ │ ├── escaped-id.po │ │ │ │ ├── resources.ts │ │ │ │ └── escaped-id-plurals.po │ │ └── .gitignore │ ├── console │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── input_definition_1.md │ │ │ │ ├── input_definition_1.txt │ │ │ │ ├── application_run4.txt │ │ │ │ ├── application_gethelp.txt │ │ │ │ ├── input_argument_1.txt │ │ │ │ ├── input_option_1.txt │ │ │ │ ├── input_argument_2.txt │ │ │ │ ├── input_definition_1.json │ │ │ │ ├── input_definition_2.txt │ │ │ │ ├── input_option_3.txt │ │ │ │ ├── input_definition_3.txt │ │ │ │ ├── input_option_6.txt │ │ │ │ ├── input_argument_4.txt │ │ │ │ ├── Style │ │ │ │ └── SymfonyStyle │ │ │ │ │ └── output │ │ │ │ │ ├── output_3.txt │ │ │ │ │ ├── output_7.txt │ │ │ │ │ ├── output_0.txt │ │ │ │ │ ├── output_1.txt │ │ │ │ │ ├── output_6.txt │ │ │ │ │ └── output_11.txt │ │ │ │ ├── input_argument_3.txt │ │ │ │ ├── input_option_4.txt │ │ │ │ ├── input_option_5.txt │ │ │ │ ├── input_definition_1.xml │ │ │ │ ├── input_option_2.txt │ │ │ │ ├── command_1.txt │ │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ │ ├── input_argument_1.md │ │ │ │ ├── input_definition_4.txt │ │ │ │ ├── input_argument_1.json │ │ │ │ ├── input_argument_2.md │ │ │ │ ├── input_argument_3.md │ │ │ │ ├── application_renderexception1.txt │ │ │ │ ├── input_argument_2.json │ │ │ │ ├── input_argument_4.md │ │ │ │ ├── input_argument_1.xml │ │ │ │ ├── input_definition_2.md │ │ │ │ ├── input_argument_4.json │ │ │ │ ├── Foo5Command.php │ │ │ │ ├── input_argument_3.json │ │ │ │ ├── input_option_1.xml │ │ │ │ ├── input_argument_2.xml │ │ │ │ ├── application_renderexception4.txt │ │ │ │ ├── command_1.md │ │ │ │ ├── input_option_1.md │ │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ │ ├── input_argument_4.xml │ │ │ │ ├── input_option_3.md │ │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ │ ├── input_option_4.md │ │ │ │ ├── input_option_1.json │ │ │ │ ├── input_option_2.md │ │ │ │ ├── input_option_3.xml │ │ │ │ ├── input_option_4.xml │ │ │ │ ├── BarBucCommand.php │ │ │ │ ├── Foo4Command.php │ │ │ │ ├── input_definition_3.md │ │ │ │ ├── input_option_5.md │ │ │ │ ├── input_option_6.md │ │ │ │ ├── input_option_3.json │ │ │ │ ├── input_option_4.json │ │ │ │ ├── input_option_5.xml │ │ │ │ ├── input_argument_3.xml │ │ │ │ ├── input_option_5.json │ │ │ │ ├── input_option_2.json │ │ │ │ ├── input_option_6.json │ │ │ │ ├── input_option_6.xml │ │ │ │ ├── application_renderexception2.txt │ │ │ │ ├── Foo6Command.php │ │ │ │ ├── input_option_2.xml │ │ │ │ └── input_definition_2.xml │ │ ├── .gitignore │ │ └── Resources │ │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── dom-crawler │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── no-extension │ │ │ │ └── windows-1250.html │ │ └── .gitignore │ ├── http-foundation │ │ ├── Tests │ │ │ └── File │ │ │ │ └── Fixtures │ │ │ │ ├── directory │ │ │ │ └── .empty │ │ │ │ ├── .unknownextension │ │ │ │ ├── other-file.example │ │ │ │ ├── test │ │ │ │ └── test.gif │ │ └── .gitignore │ ├── http-kernel │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── Bundle1Bundle │ │ │ │ ├── bar.txt │ │ │ │ ├── foo.txt │ │ │ │ └── Resources │ │ │ │ │ └── foo.txt │ │ │ │ ├── Bundle2Bundle │ │ │ │ └── foo.txt │ │ │ │ ├── BaseBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ │ ├── ChildBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ │ ├── Resources │ │ │ │ ├── BaseBundle │ │ │ │ │ └── hide.txt │ │ │ │ ├── ChildBundle │ │ │ │ │ └── foo.txt │ │ │ │ ├── FooBundle │ │ │ │ │ └── foo.txt │ │ │ │ └── Bundle1Bundle │ │ │ │ │ └── foo.txt │ │ │ │ └── Controller │ │ │ │ └── VariadicController.php │ │ └── .gitignore │ ├── debug │ │ ├── .gitignore │ │ └── Tests │ │ │ ├── Fixtures │ │ │ ├── PEARClass.php │ │ │ ├── notPsr0Bis.php │ │ │ ├── reallyNotPsr0.php │ │ │ ├── casemismatch.php │ │ │ ├── psr4 │ │ │ │ └── Psr4CaseMismatch.php │ │ │ ├── ClassAlias.php │ │ │ ├── DeprecatedClass.php │ │ │ └── DeprecatedInterface.php │ │ │ └── Fixtures2 │ │ │ └── RequiredTwice.php │ ├── yaml │ │ ├── .gitignore │ │ └── Tests │ │ │ └── Fixtures │ │ │ ├── embededPhp.yml │ │ │ └── arrow.gif │ ├── process │ │ └── .gitignore │ ├── var-dumper │ │ ├── .gitignore │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ └── NotLoadableClass.php │ │ └── CHANGELOG.md │ ├── css-selector │ │ ├── .gitignore │ │ └── CHANGELOG.md │ └── event-dispatcher │ │ └── .gitignore ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── environment │ │ ├── .gitignore │ │ └── .travis.yml │ ├── comparator │ │ ├── .gitignore │ │ └── tests │ │ │ └── bootstrap.php │ ├── global-state │ │ └── .gitignore │ ├── exporter │ │ └── .gitignore │ ├── recursion-context │ │ └── .gitignore │ └── diff │ │ ├── .gitignore │ │ ├── tests │ │ └── fixtures │ │ │ └── patch.txt │ │ └── .travis.yml ├── mockery │ └── mockery │ │ ├── .coveralls.yml │ │ ├── .styleci.yml │ │ ├── docs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── cookbook │ │ │ ├── map.rst.inc │ │ │ └── index.rst │ │ ├── getting_started │ │ │ ├── map.rst.inc │ │ │ └── index.rst │ │ └── reference │ │ │ └── mockery │ │ │ └── index.rst │ │ ├── tests │ │ └── Mockery │ │ │ └── _files │ │ │ └── file.txt │ │ ├── travis │ │ ├── extra.ini │ │ ├── install.sh │ │ ├── after_script.sh │ │ └── script.sh │ │ ├── .gitignore │ │ ├── library │ │ └── Mockery │ │ │ ├── Loader │ │ │ └── Loader.php │ │ │ └── Generator │ │ │ ├── Generator.php │ │ │ └── StringManipulation │ │ │ └── Pass │ │ │ └── Pass.php │ │ └── examples │ │ └── starship │ │ └── Bootstrap.php ├── psy │ └── psysh │ │ ├── test │ │ └── fixtures │ │ │ ├── legacy │ │ │ └── .psysh │ │ │ │ ├── history │ │ │ │ ├── php_manual.sqlite │ │ │ │ └── rc.php │ │ │ ├── mixed │ │ │ └── .psysh │ │ │ │ ├── psysh_history │ │ │ │ ├── rc.php │ │ │ │ └── config.php │ │ │ ├── default │ │ │ ├── .config │ │ │ │ └── psysh │ │ │ │ │ ├── psysh_history │ │ │ │ │ └── config.php │ │ │ └── .local │ │ │ │ └── share │ │ │ │ └── psysh │ │ │ │ └── php_manual.sqlite │ │ │ └── empty.php │ │ ├── .gitignore │ │ ├── bin │ │ ├── build │ │ └── build-vendor │ │ └── .editorconfig ├── dnoegel │ └── php-xdg-base-dir │ │ └── .gitignore ├── phpunit │ ├── phpunit │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── bar.xml │ │ │ │ ├── foo.xml │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ ├── JsonData │ │ │ │ │ ├── simpleObject.json │ │ │ │ │ └── arrayObject.json │ │ │ │ ├── configuration.colors.empty.xml │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── NoTestCaseClass.php │ │ │ │ ├── configuration.colors.false.xml │ │ │ │ ├── configuration.colors.true.xml │ │ │ │ ├── configuration.colors.invalid.xml │ │ │ │ ├── DummyException.php │ │ │ │ ├── CustomPrinter.php │ │ │ │ ├── EmptyTestCaseTest.php │ │ │ │ ├── NotVoidTestCase.php │ │ │ │ ├── NamespaceCoveredFunction.php │ │ │ │ ├── NonStatic.php │ │ │ │ ├── ConcreteTest.php │ │ │ │ ├── InheritedTestCase.php │ │ │ │ ├── Success.php │ │ │ │ ├── NoTestCases.php │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── Inheritance │ │ │ │ │ ├── InheritanceA.php │ │ │ │ │ └── InheritanceB.php │ │ │ │ ├── NothingTest.php │ │ │ │ ├── OverrideTestCase.php │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ ├── MockRunner.php │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ ├── Failure.php │ │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ │ ├── ClassWithScalarTypeDeclarations.php │ │ │ │ ├── Struct.php │ │ │ │ ├── TestTestError.php │ │ │ │ ├── TestSkipped.php │ │ │ │ ├── TestIncomplete.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── IniTest.php │ │ │ │ ├── WasRun.php │ │ │ │ ├── OneTestCase.php │ │ │ │ ├── ThrowExceptionTestCase.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── NotPublicTestCase.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageNamespacedFunctionTest.php │ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ │ ├── SampleClass.php │ │ │ │ ├── BaseTestListenerSample.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── Calculator.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── FatalTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ └── CoverageProtectedTest.php │ │ │ ├── Regression │ │ │ │ ├── GitHub │ │ │ │ │ ├── 74 │ │ │ │ │ │ ├── NewException.php │ │ │ │ │ │ └── Issue74Test.php │ │ │ │ │ ├── 322 │ │ │ │ │ │ └── phpunit322.xml │ │ │ │ │ ├── 503 │ │ │ │ │ │ └── Issue503Test.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 │ │ │ │ │ └── 2158 │ │ │ │ │ │ └── constant.inc │ │ │ │ └── Trac │ │ │ │ │ ├── 684 │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ └── 783 │ │ │ │ │ ├── OneTest.php │ │ │ │ │ └── TwoTest.php │ │ │ ├── Fail │ │ │ │ └── fail.phpt │ │ │ └── bootstrap.php │ │ ├── .gitattributes │ │ └── src │ │ │ └── Util │ │ │ └── PHP │ │ │ └── eval-stdin.php │ ├── php-timer │ │ ├── .gitattributes │ │ └── .gitignore │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── tests │ │ │ └── _files │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── source_without_ignore.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ └── source_without_namespace.php │ │ ├── scripts │ │ │ └── auto_append.php │ │ ├── .gitignore │ │ └── src │ │ │ └── CodeCoverage │ │ │ └── Report │ │ │ └── HTML │ │ │ └── Renderer │ │ │ └── Template │ │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── 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 │ │ │ └── bootstrap.php │ │ └── .gitignore │ └── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── tests │ │ ├── _fixture │ │ │ ├── AnInterface.php │ │ │ ├── AnotherInterface.php │ │ │ ├── TraversableMockTestInterface.php │ │ │ ├── Bar.php │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── Foo.php │ │ │ ├── MockTestInterface.php │ │ │ ├── FunctionCallback.php │ │ │ ├── SomeClass.php │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ └── MethodCallbackByReference.php │ │ └── bootstrap.php │ │ ├── src │ │ └── Framework │ │ │ └── MockObject │ │ │ └── Generator │ │ │ ├── trait_class.tpl.dist │ │ │ ├── wsdl_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── mocked_static_method.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ └── wsdl_class.tpl.dist │ │ └── .gitignore ├── swiftmailer │ └── swiftmailer │ │ ├── VERSION │ │ ├── tests │ │ ├── _samples │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ ├── textfile.zip │ │ │ │ └── swiftmailer.png │ │ │ ├── smime │ │ │ │ └── CA.srl │ │ │ └── dkim │ │ │ │ └── dkim.test.pub │ │ └── StreamCollector.php │ │ ├── .gitignore │ │ ├── doc │ │ ├── uml │ │ │ ├── Mime.graffle │ │ │ ├── Encoders.graffle │ │ │ └── Transports.graffle │ │ └── index.rst │ │ ├── .gitattributes │ │ └── lib │ │ └── dependency_maps │ │ └── message_deps.php ├── monolog │ └── monolog │ │ └── tests │ │ └── Monolog │ │ └── Handler │ │ └── Fixtures │ │ └── .gitkeep ├── fzaninotto │ └── faker │ │ ├── .gitignore │ │ ├── src │ │ └── Faker │ │ │ └── Provider │ │ │ ├── de_AT │ │ │ └── Text.php │ │ │ ├── fr_CH │ │ │ └── Text.php │ │ │ ├── it_CH │ │ │ └── Text.php │ │ │ ├── ja_JP │ │ │ └── PhoneNumber.php │ │ │ ├── zh_TW │ │ │ └── Payment.php │ │ │ ├── mn_MN │ │ │ └── PhoneNumber.php │ │ │ └── fr_BE │ │ │ └── Internet.php │ │ ├── Makefile │ │ └── phpunit.xml.dist ├── hamcrest │ └── hamcrest-php │ │ ├── .coveralls.yml │ │ ├── generator │ │ └── parts │ │ │ ├── functions_footer.txt │ │ │ ├── functions_imports.txt │ │ │ ├── matchers_footer.txt │ │ │ ├── matchers_imports.txt │ │ │ ├── matchers_header.txt │ │ │ └── file_header.txt │ │ ├── .gitignore │ │ ├── tests │ │ └── Hamcrest │ │ │ └── Core │ │ │ └── SampleSubClass.php │ │ ├── hamcrest │ │ └── Hamcrest │ │ │ └── AssertionError.php │ │ └── .gush.yml ├── phpdocumentor │ └── reflection-docblock │ │ └── .gitignore ├── phpspec │ ├── phpspec │ │ ├── src │ │ │ └── PhpSpec │ │ │ │ ├── Formatter │ │ │ │ └── Html │ │ │ │ │ └── Template │ │ │ │ │ ├── ReportLine.html │ │ │ │ │ ├── ReportFooter.html │ │ │ │ │ ├── ReportSummary.html │ │ │ │ │ ├── ReportSpecificationEnds.html │ │ │ │ │ ├── ReportPass.html │ │ │ │ │ ├── ReportSpecificationStarts.html │ │ │ │ │ └── ReportSkipped.html │ │ │ │ ├── CodeGenerator │ │ │ │ └── Generator │ │ │ │ │ └── templates │ │ │ │ │ ├── class.template │ │ │ │ │ ├── returnconstant.template │ │ │ │ │ ├── interface.template │ │ │ │ │ ├── interface_method_signature.template │ │ │ │ │ ├── private-constructor.template │ │ │ │ │ ├── method.template │ │ │ │ │ ├── named_constructor_exception.template │ │ │ │ │ └── named_constructor_create_object.template │ │ │ │ └── Process │ │ │ │ └── Prerequisites │ │ │ │ └── PrerequisiteFailedException.php │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── spec │ │ │ └── PhpSpec │ │ │ │ └── Util │ │ │ │ └── ExampleObjectUsingTrait.php │ │ ├── phpunit.xml │ │ ├── features │ │ │ └── bootstrap │ │ │ │ └── autoloader │ │ │ │ └── autoload.php │ │ └── integration │ │ │ └── PhpSpec │ │ │ └── Loader │ │ │ └── examples │ │ │ └── ExampleSpec.php │ └── prophecy │ │ ├── .gitignore │ │ └── fixtures │ │ ├── EmptyClass.php │ │ ├── FinalClass.php │ │ ├── EmptyInterface.php │ │ ├── Named.php │ │ ├── WithStaticMethod.php │ │ ├── WithFinalMethod.php │ │ ├── WithProtectedAbstractMethod.php │ │ ├── WithVariadicArgument.php │ │ ├── ModifierInterface.php │ │ ├── WithReferences.php │ │ ├── WithTypehintedVariadicArgument.php │ │ ├── WithCallableArgument.php │ │ └── WithFinalVirtuallyPrivateMethod.php ├── danielstjules │ └── stringy │ │ ├── .gitignore │ │ └── .travis.yml ├── jakub-onderka │ ├── php-console-color │ │ ├── .gitignore │ │ ├── tests │ │ │ └── bootstrap.php │ │ ├── .travis.yml │ │ └── src │ │ │ └── JakubOnderka │ │ │ └── PhpConsoleColor │ │ │ └── InvalidStyleException.php │ └── php-console-highlighter │ │ ├── .gitignore │ │ └── tests │ │ └── bootstrap.php ├── doctrine │ ├── inflector │ │ ├── .gitignore │ │ ├── tests │ │ │ └── Doctrine │ │ │ │ └── Tests │ │ │ │ └── DoctrineTestCase.php │ │ ├── .travis.yml │ │ └── README.md │ └── instantiator │ │ └── .gitignore ├── nikic │ └── php-parser │ │ ├── .gitignore │ │ ├── test │ │ └── code │ │ │ ├── prettyPrinter │ │ │ ├── stmt │ │ │ │ ├── throw.test │ │ │ │ ├── goto.test │ │ │ │ ├── while.test │ │ │ │ ├── do_while.test │ │ │ │ ├── break_continue.test │ │ │ │ ├── if.test │ │ │ │ ├── const.test │ │ │ │ ├── global_static_variables.test │ │ │ │ └── declare.test │ │ │ ├── expr │ │ │ │ ├── include.test │ │ │ │ ├── call.test │ │ │ │ ├── shortArraySyntax.test │ │ │ │ └── constant_deref.test │ │ │ ├── onlyInlineHTML.file-test │ │ │ └── onlyPHP.file-test │ │ │ └── parser │ │ │ ├── expr │ │ │ ├── newWithoutClass.test │ │ │ ├── print.test │ │ │ ├── clone.test │ │ │ └── errorSuppress.test │ │ │ ├── stmt │ │ │ ├── tryWithoutCatch.test │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ ├── function │ │ │ │ └── variadicDefaultValue.test │ │ │ ├── namespace │ │ │ │ └── nested.test │ │ │ ├── haltCompilerOutermostScope.test │ │ │ ├── loop │ │ │ │ └── do.test │ │ │ └── class │ │ │ │ └── final.test │ │ │ └── scalar │ │ │ └── invalidOctal.test │ │ ├── lib │ │ ├── PhpParser │ │ │ ├── Node │ │ │ │ ├── Scalar.php │ │ │ │ ├── Expr.php │ │ │ │ ├── Stmt.php │ │ │ │ ├── Expr │ │ │ │ │ ├── Cast │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ ├── Unset_.php │ │ │ │ │ │ ├── Bool_.php │ │ │ │ │ │ ├── Int_.php │ │ │ │ │ │ ├── Double.php │ │ │ │ │ │ ├── Object_.php │ │ │ │ │ │ └── String_.php │ │ │ │ │ ├── AssignOp │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ └── ShiftRight.php │ │ │ │ │ └── BinaryOp │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ ├── Equal.php │ │ │ │ │ │ ├── Greater.php │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ ├── Smaller.php │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ │ ├── Identical.php │ │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ │ └── Spaceship.php │ │ │ │ ├── Scalar │ │ │ │ │ └── MagicConst │ │ │ │ │ │ ├── Dir.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ ├── Line.php │ │ │ │ │ │ ├── Class_.php │ │ │ │ │ │ ├── Method.php │ │ │ │ │ │ ├── Trait_.php │ │ │ │ │ │ ├── Function_.php │ │ │ │ │ │ └── Namespace_.php │ │ │ │ └── Stmt │ │ │ │ │ ├── Nop.php │ │ │ │ │ └── TraitUseAdaptation.php │ │ │ ├── Comment │ │ │ │ └── Doc.php │ │ │ └── Builder.php │ │ └── bootstrap.php │ │ └── test_old │ │ └── run-php-src.sh ├── bin │ ├── psysh.bat │ ├── phpunit.bat │ ├── phpspec.bat │ └── php-parse.bat ├── league │ └── flysystem │ │ ├── src │ │ ├── Exception.php │ │ ├── Adapter │ │ │ ├── SynologyFtp.php │ │ │ └── Polyfill │ │ │ │ └── StreamedTrait.php │ │ ├── RootViolationException.php │ │ └── Plugin │ │ │ └── PluginNotFoundException.php │ │ └── build │ │ └── osx_install_composer.sh ├── laravel │ └── framework │ │ └── src │ │ └── Illuminate │ │ ├── Contracts │ │ ├── Bus │ │ │ └── SelfHandling.php │ │ ├── Queue │ │ │ ├── ShouldQueue.php │ │ │ ├── ShouldBeQueued.php │ │ │ └── QueueableEntity.php │ │ ├── Filesystem │ │ │ ├── Cloud.php │ │ │ └── FileNotFoundException.php │ │ ├── Broadcasting │ │ │ ├── ShouldBroadcastNow.php │ │ │ └── ShouldBroadcast.php │ │ ├── Encryption │ │ │ ├── DecryptException.php │ │ │ └── EncryptException.php │ │ ├── Validation │ │ │ ├── UnauthorizedException.php │ │ │ └── ValidatesWhenResolved.php │ │ ├── Support │ │ │ ├── Arrayable.php │ │ │ ├── Htmlable.php │ │ │ └── Renderable.php │ │ └── Container │ │ │ └── BindingResolutionException.php │ │ ├── Session │ │ └── TokenMismatchException.php │ │ ├── Auth │ │ └── Access │ │ │ └── UnauthorizedException.php │ │ ├── Foundation │ │ ├── Console │ │ │ └── stubs │ │ │ │ └── model.stub │ │ ├── Bus │ │ │ └── DispatchesCommands.php │ │ ├── Testing │ │ │ └── HttpException.php │ │ └── Auth │ │ │ └── AuthenticatesAndRegistersUsers.php │ │ ├── Http │ │ └── Exception │ │ │ └── PostTooLargeException.php │ │ ├── Database │ │ ├── Eloquent │ │ │ └── MassAssignmentException.php │ │ └── Console │ │ │ └── Seeds │ │ │ └── stubs │ │ │ └── seeder.stub │ │ └── Routing │ │ └── Console │ │ └── stubs │ │ └── controller.plain.stub ├── autoload.php ├── jeremeamia │ └── SuperClosure │ │ └── src │ │ └── Exception │ │ ├── SuperClosureException.php │ │ ├── ClosureAnalysisException.php │ │ ├── ClosureSerializationException.php │ │ └── ClosureUnserializationException.php ├── paragonie │ └── random_compat │ │ └── dist │ │ └── random_compat.phar.pubkey └── mtdowling │ └── cron-expression │ └── .editorconfig ├── .gitignore ├── storage ├── app │ └── .gitignore ├── logs │ └── .gitignore ├── framework │ ├── cache │ │ └── .gitignore │ ├── views │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── .gitignore └── .gitignore ├── bootstrap └── cache │ └── .gitignore ├── resources ├── views │ └── opwifi │ │ ├── webportal │ │ └── web │ │ │ ├── index.blade.php │ │ │ └── failed.blade.php │ │ └── common │ │ └── partials │ │ └── footer.blade.php └── assets │ └── sass │ └── app.scss ├── .gitattributes ├── phpspec.yml ├── config └── opwifi.php └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /src/opwifi/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /src/opwifi/.gitignore: -------------------------------------------------------------------------------- 1 | installed 2 | sqlScheduler 3 | -------------------------------------------------------------------------------- /src/opwifi/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/opwifi/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/bar.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/foo1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/opwifi/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/opwifi/resources/views/opwifi/webportal/web/index.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /src/opwifi/vendor/mockery/mockery/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: . 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/mockery/mockery/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/mockery/mockery/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/psy/psysh/test/fixtures/legacy/.psysh/history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/annotated.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/storage/.gitignore: -------------------------------------------------------------------------------- 1 | Homestead.yaml 2 | Homestead.json 3 | -------------------------------------------------------------------------------- /src/opwifi/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/dnoegel/php-xdg-base-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/psy/psysh/test/fixtures/mixed/.psysh/psysh_history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/swiftmailer/swiftmailer/VERSION: -------------------------------------------------------------------------------- 1 | Swift-5.4.4 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/psy/psysh/test/fixtures/legacy/.psysh/php_manual.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/psy/psysh/test/fixtures/legacy/.psysh/rc.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/dom-crawler/Tests/Fixtures/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-foundation/Tests/File/Fixtures/directory/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-kernel/Tests/Fixtures/Bundle1Bundle/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-kernel/Tests/Fixtures/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-kernel/Tests/Fixtures/Bundle2Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/non-valid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpdocumentor/reflection-docblock/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/php-timer/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | 4 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-foundation/Tests/File/Fixtures/.unknownextension: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-foundation/Tests/File/Fixtures/other-file.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-kernel/Tests/Fixtures/BaseBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-kernel/Tests/Fixtures/BaseBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-kernel/Tests/Fixtures/ChildBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-kernel/Tests/Fixtures/ChildBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-kernel/Tests/Fixtures/Resources/BaseBundle/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-kernel/Tests/Fixtures/Resources/ChildBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-kernel/Tests/Fixtures/Resources/FooBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/nonvalid2.yml: -------------------------------------------------------------------------------- 1 | route: string 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resources.ini: -------------------------------------------------------------------------------- 1 | foo="bar" 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpspec/phpspec/src/PhpSpec/Formatter/Html/Template/ReportLine.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/opwifi/vendor/psy/psysh/test/fixtures/default/.config/psysh/config.php: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/css-selector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/dom-crawler/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-foundation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/malformed.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo" "bar" 3 | } -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/corrupted/resources.dat: -------------------------------------------------------------------------------- 1 | XXX -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /src/opwifi/vendor/jakub-onderka/php-console-color/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /src/opwifi/vendor/mockery/mockery/travis/extra.ini: -------------------------------------------------------------------------------- 1 | extension = "mongo.so" 2 | extension = "redis.so" -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | 3 | *.php diff=php 4 | 5 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt: -------------------------------------------------------------------------------- 1 | argument_name 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /src/opwifi/resources/views/opwifi/common/partials/footer.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
-------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/php-token-stream/tests/_fixture/issue19.php: -------------------------------------------------------------------------------- 1 | -o, --option_name 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/special_route_name.yml: -------------------------------------------------------------------------------- 1 | "#$péß^a|": 2 | path: "true" 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/empty-translation.po: -------------------------------------------------------------------------------- 1 | msgid "foo" 2 | msgstr "" 3 | 4 | -------------------------------------------------------------------------------- /src/opwifi/vendor/doctrine/inflector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | composer.phar 4 | phpunit.xml 5 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpspec/phpspec/src/PhpSpec/Formatter/Html/Template/ReportFooter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/JsonData/arrayObject.json: -------------------------------------------------------------------------------- 1 | ["Mascott", "Tux", "OS", "Linux"] 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/configuration.colors.empty.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/packagelist.txt: -------------------------------------------------------------------------------- 1 | en.res 2 | fr.res 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/jakub-onderka/php-console-highlighter/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /build/ 3 | /vendor/ 4 | /composer.lock -------------------------------------------------------------------------------- /src/opwifi/vendor/phpspec/phpspec/src/PhpSpec/Formatter/Html/Template/ReportSummary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpspec/prophecy/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | *.phar 3 | /composer.lock 4 | /vendor 5 | /phpunit.xml 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/php-token-stream/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /composer.phar 4 | /vendor 5 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/valid.csv: -------------------------------------------------------------------------------- 1 | foo;bar 2 | bar;"foo 3 | foo" 4 | "foo;foo";bar 5 | -------------------------------------------------------------------------------- /src/opwifi/resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | // @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; 2 | 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/nikic/php-parser/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | grammar/kmyacc.exe 4 | grammar/y.output 5 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpspec/phpspec/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.bat eol=crlf 3 | 4 | docs export-ignore 5 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.txt: -------------------------------------------------------------------------------- 1 | en{ 2 | symfony{"Symfony is great"} 3 | } -------------------------------------------------------------------------------- /src/opwifi/app/Events/Event.php: -------------------------------------------------------------------------------- 1 | ' . file_get_contents('php://stdin')); 4 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/configuration.colors.invalid.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/withdoctype.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.txt: -------------------------------------------------------------------------------- 1 | fr{ 2 | symfony{"Symfony est génial"} 3 | } -------------------------------------------------------------------------------- /src/opwifi/vendor/phpspec/phpspec/src/PhpSpec/Formatter/Html/Template/ReportSpecificationEnds.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/psy/psysh/.gitignore: -------------------------------------------------------------------------------- 1 | build-vendor/ 2 | vendor/ 3 | composer.lock 4 | manual/ 5 | __pycache__ 6 | .php_cs.cache 7 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_definition_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "arguments": [], 3 | "options": [] 4 | } 5 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resources.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /src/opwifi/config/opwifi.php: -------------------------------------------------------------------------------- 1 | 'v0.3.0', 4 | 'version_raw'=>3000, 5 | 'publish_date'=>'2017-04-16' 6 | ]; -------------------------------------------------------------------------------- /src/opwifi/vendor/jakub-onderka/php-console-color/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | {title} -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/Regression/GitHub/2158/constant.inc: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_3.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/incomplete.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | defaults: { _controller: MyBlogBundle:Blog:show } 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/nonvalidkeys.yml: -------------------------------------------------------------------------------- 1 | someroute: 2 | resource: path/to/some.yml 3 | name_prefix: test_ 4 | -------------------------------------------------------------------------------- /src/public/res/css/swrt-fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/public/res/css/swrt-fonts/icomoon.eot -------------------------------------------------------------------------------- /src/public/res/css/swrt-fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/public/res/css/swrt-fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/public/res/installer/img/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/public/res/installer/img/pattern.png -------------------------------------------------------------------------------- /src/public/res/pkgs/x-editable/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/public/res/pkgs/x-editable/clear.png -------------------------------------------------------------------------------- /src/opwifi/vendor/danielstjules/stringy/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | php: 3 | - 5.6 4 | - 5.5 5 | - 5.4 6 | - 5.3 7 | - hhvm 8 | -------------------------------------------------------------------------------- /src/opwifi/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/throw.test: -------------------------------------------------------------------------------- 1 | throw 2 | ----- 3 | Options: 2 | -o, --option_name 3 | -------------------------------------------------------------------------------- /src/public/res/css/swrt-fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/public/res/css/swrt-fonts/icomoon.woff -------------------------------------------------------------------------------- /src/public/res/installer/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/public/res/installer/fonts/ionicons.eot -------------------------------------------------------------------------------- /src/public/res/installer/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/public/res/installer/fonts/ionicons.ttf -------------------------------------------------------------------------------- /src/public/res/pkgs/x-editable/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/public/res/pkgs/x-editable/loading.gif -------------------------------------------------------------------------------- /src/opwifi/vendor/jakub-onderka/php-console-highlighter/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | -o|O, --option_name=OPTION_NAME option with multiple shortcuts 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/nonesense_type_without_resource.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | path: /blog/{slug} 3 | type: custom 4 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/plurals.po: -------------------------------------------------------------------------------- 1 | msgid "foo" 2 | msgid_plural "foos" 3 | msgstr[0] "bar" 4 | msgstr[1] "bars" 5 | 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/bin/psysh.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | setlocal DISABLEDELAYEDEXPANSION 3 | SET BIN_TARGET=%~dp0/../psy/psysh/bin/psysh 4 | php "%BIN_TARGET%" %* 5 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpspec/phpspec/src/PhpSpec/CodeGenerator/Generator/templates/class.template: -------------------------------------------------------------------------------- 1 | argument_name multiline 2 | argument description 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/nonesense_resource_plus_path.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | resource: validpattern.yml 3 | path: /test 4 | -------------------------------------------------------------------------------- /src/public/res/pkgs/jstree/themes/default/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/public/res/pkgs/jstree/themes/default/32px.png -------------------------------------------------------------------------------- /src/public/res/pkgs/jstree/themes/default/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/public/res/pkgs/jstree/themes/default/40px.png -------------------------------------------------------------------------------- /src/opwifi/storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | compiled.php 4 | services.json 5 | events.scanned.php 6 | routes.scanned.php 7 | down 8 | -------------------------------------------------------------------------------- /src/opwifi/vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | setlocal DISABLEDELAYEDEXPANSION 3 | SET BIN_TARGET=%~dp0/../phpunit/phpunit/phpunit 4 | php "%BIN_TARGET%" %* 5 | -------------------------------------------------------------------------------- /src/opwifi/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/debug/Tests/Fixtures/casemismatch.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/ConcreteTest.php: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description (multiple values allowed) 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_5.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME multiline 2 | option description 3 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/with_define_path_variable.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_2.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/dom-crawler/Tests/Fixtures/windows-1250.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/opwifi/vendor/symfony/dom-crawler/Tests/Fixtures/windows-1250.html -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-foundation/Tests/File/Fixtures/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/opwifi/vendor/symfony/http-foundation/Tests/File/Fixtures/test.gif -------------------------------------------------------------------------------- /src/opwifi/vendor/nikic/php-parser/lib/PhpParser/Node/Expr.php: -------------------------------------------------------------------------------- 1 | stop(); 3 | 4 | $writer = new PHP_CodeCoverage_Report_HTML; 5 | $writer->process($coverage, '/tmp/coverage'); 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/php-token-stream/tests/_fixture/source2.php: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command1 3 | alias1 4 | alias2 5 | 6 | Help: 7 | command 1 help 8 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php: -------------------------------------------------------------------------------- 1 | 7 | * Default: `NULL` 8 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.res -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.res -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/res/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/res/en.res -------------------------------------------------------------------------------- /src/opwifi/vendor/nikic/php-parser/lib/bootstrap.php: -------------------------------------------------------------------------------- 1 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/Failure.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/ThrowNoExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | 4 | Options: 5 | -o, --option_name 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/var-dumper/Tests/Fixtures/NotLoadableClass.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/resources.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superwrt/opwifi-easy/HEAD/src/opwifi/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/resources.dat -------------------------------------------------------------------------------- /src/opwifi/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "devDependencies": { 4 | "gulp": "^3.8.8" 5 | }, 6 | "dependencies": { 7 | "laravel-elixir": "^4.0.0", 8 | "bootstrap-sass": "^3.0.0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/opwifi/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php: -------------------------------------------------------------------------------- 1 | tbody > tr.groupBy { 2 | cursor: pointer; 3 | } 4 | 5 | .bootstrap-table .table > tbody > tr.groupBy.expanded { 6 | 7 | } -------------------------------------------------------------------------------- /src/opwifi/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/AssertionError.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_definition_2.md: -------------------------------------------------------------------------------- 1 | ### Arguments: 2 | 3 | **argument_name:** 4 | 5 | * Name: argument_name 6 | * Is required: yes 7 | * Is array: no 8 | * Description: 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/nikic/php-parser/test/code/parser/expr/print.test: -------------------------------------------------------------------------------- 1 | Print 2 | ----- 3 | 2 | 3 | 4 | integration 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/php-code-coverage/.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 9 | /composer.lock 10 | /composer.phar 11 | /.idea 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/mocked_clone.tpl.dist: -------------------------------------------------------------------------------- 1 | public function __clone() 2 | { 3 | $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/Regression/GitHub/1265/Issue1265Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/Regression/Trac/783/OneTest.php: -------------------------------------------------------------------------------- 1 | markTestSkipped('Skipped test'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_argument_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": true, 4 | "is_array": false, 5 | "description": "multiline argument description", 6 | "default": null 7 | } 8 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/fuzzy-translations.po: -------------------------------------------------------------------------------- 1 | #, php-format 2 | msgid "foo1" 3 | msgstr "bar1" 4 | 5 | #, fuzzy, php-format 6 | msgid "foo2" 7 | msgstr "fuzzy bar2" 8 | 9 | msgid "foo3" 10 | msgstr "bar3" 11 | -------------------------------------------------------------------------------- /src/opwifi/vendor/laravel/framework/src/Illuminate/Auth/Access/UnauthorizedException.php: -------------------------------------------------------------------------------- 1 | assertTrue(PHPUNIT_1330); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/TestIncomplete.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Incomplete test'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/psy/psysh/bin/build-vendor: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cd "${BASH_SOURCE%/*}/.." 4 | 5 | rm -rf build-vendor 6 | 7 | COMPOSER_VENDOR_DIR=build-vendor composer install --ignore-platform-reqs --no-dev --no-progress --classmap-authoritative 8 | -------------------------------------------------------------------------------- /src/opwifi/vendor/swiftmailer/swiftmailer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.crt -crlf 2 | *.key -crlf 3 | *.srl -crlf 4 | *.pub -crlf 5 | *.priv -crlf 6 | *.txt -crlf 7 | 8 | # ignore /notes in the git-generated distributed .zip archive 9 | /notes export-ignore 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/opwifi/vendor/mockery/mockery/docs/cookbook/index.rst: -------------------------------------------------------------------------------- 1 | Cookbook 2 | ======== 3 | 4 | .. toctree:: 5 | :hidden: 6 | 7 | default_expectations 8 | detecting_mock_objects 9 | mocking_hard_dependencies 10 | 11 | .. include:: map.rst.inc 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/mockery/mockery/library/Mockery/Loader/Loader.php: -------------------------------------------------------------------------------- 1 | 'b', 'c' => 'd']; 8 | ----- 9 | []; 10 | array(1, 2, 3); 11 | ['a' => 'b', 'c' => 'd']; -------------------------------------------------------------------------------- /src/opwifi/vendor/phpspec/prophecy/fixtures/WithReferences.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Test incomplete'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/swiftmailer/swiftmailer/tests/StreamCollector.php: -------------------------------------------------------------------------------- 1 | content .= $arg; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/escaped-id.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Content-Transfer-Encoding: 8bit\n" 5 | "Language: en\n" 6 | 7 | msgid "escaped \"foo\"" 8 | msgstr "escaped \"bar\"" 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/laravel/framework/src/Illuminate/Contracts/Filesystem/FileNotFoundException.php: -------------------------------------------------------------------------------- 1 | assertEquals('application/x-test', ini_get('default_mimetype')); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/WasRun.php: -------------------------------------------------------------------------------- 1 | wasRun = true; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | [InvalidArgumentException] 4 | Command "foo" is not define 5 | d. 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/command_1.md: -------------------------------------------------------------------------------- 1 | descriptor:command1 2 | ------------------- 3 | 4 | * Description: command 1 description 5 | * Usage: 6 | 7 | * `descriptor:command1` 8 | * `alias1` 9 | * `alias2` 10 | 11 | command 1 help 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_1.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: no 6 | * Is value required: no 7 | * Is multiple: no 8 | * Description: 9 | * Default: `false` 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/laravel/framework/src/Illuminate/Contracts/Encryption/DecryptException.php: -------------------------------------------------------------------------------- 1 | " class="example_group"> 3 | 4 |
5 |
6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpspec/prophecy/fixtures/WithCallableArgument.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | multiline 4 | argument description 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/opwifi/vendor/doctrine/inflector/tests/Doctrine/Tests/DoctrineTestCase.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_3.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Description: option description 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/dumper/url_matcher2.apache: -------------------------------------------------------------------------------- 1 | # skip "real" requests 2 | RewriteCond %{REQUEST_FILENAME} -f 3 | RewriteRule .* - [QSA,L] 4 | 5 | # foo 6 | RewriteCond %{REQUEST_URI} ^/foo$ 7 | RewriteRule .* ap\ p_d\ ev.php [QSA,L,E=_ROUTING_route:foo] 8 | -------------------------------------------------------------------------------- /src/opwifi/vendor/nikic/php-parser/lib/PhpParser/Builder.php: -------------------------------------------------------------------------------- 1 | assertTrue(false); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/NotPublicTestCase.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/Regression/GitHub/1216/phpunit1216.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/Regression/GitHub/797/bootstrap797.php: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/http-kernel/Tests/Fixtures/Controller/VariadicController.php: -------------------------------------------------------------------------------- 1 | 2 | {title} 3 |
4 |
{message}
5 |
6 | 7 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/Regression/GitHub/873/Issue873Test.php: -------------------------------------------------------------------------------- 1 | setName('bar:buc'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/Foo4Command.php: -------------------------------------------------------------------------------- 1 | setName('foo3:bar:toh'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_definition_3.md: -------------------------------------------------------------------------------- 1 | ### Options: 2 | 3 | **option_name:** 4 | 5 | * Name: `--option_name` 6 | * Shortcut: `-o` 7 | * Accept value: no 8 | * Is value required: no 9 | * Is multiple: no 10 | * Description: 11 | * Default: `false` 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_5.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Description: multiline 9 | option description 10 | * Default: `NULL` 11 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_6.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o|-O` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Description: option with multiple shortcuts 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Failed 7 | 8 | 9 | 10 | {{ $error }} 11 | 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/league/flysystem/src/Plugin/PluginNotFoundException.php: -------------------------------------------------------------------------------- 1 | assertTrue($_ENV['configAvailableInBootstrap']); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/Regression/GitHub/322/phpunit322.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": false, 7 | "description": "option description", 8 | "default": null 9 | } 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": false, 6 | "is_multiple": true, 7 | "description": "option description", 8 | "default": [] 9 | } 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | resources 5 | 6 | foo 7 | bar 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/opwifi/vendor/laravel/framework/src/Illuminate/Contracts/Queue/ShouldBeQueued.php: -------------------------------------------------------------------------------- 1 | register(); 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php: -------------------------------------------------------------------------------- 1 | register('message.message') 5 | ->asNewInstanceOf('Swift_Message') 6 | 7 | ->register('message.mimepart') 8 | ->asNewInstanceOf('Swift_MimePart') 9 | ; 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | default_value 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_option_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": false, 7 | "description": "multiline option description", 8 | "default": null 9 | } 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/Pass.php: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/opwifi/vendor/jakub-onderka/php-console-color/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.4 6 | - 5.5 7 | 8 | before_script: 9 | - composer self-update 10 | - composer install --no-interaction --prefer-source --dev 11 | 12 | script: 13 | - ant phplint 14 | - ant phpcs 15 | - ant phpunit -------------------------------------------------------------------------------- /src/opwifi/vendor/laravel/framework/src/Illuminate/Contracts/Support/Arrayable.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | [InvalidArgumentException] 4 | The "--foo" option does not exist. 5 | 6 | 7 | list [--xml] [--raw] [--format FORMAT] [--] [] 8 | 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/nikic/php-parser/test/code/parser/scalar/invalidOctal.test: -------------------------------------------------------------------------------- 1 | Invalid octal literals 2 | ----- 3 | assertTrue(true); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/SampleClass.php: -------------------------------------------------------------------------------- 1 | a = $a; 11 | $this->b = $b; 12 | $this->c = $c; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/opwifi/vendor/sebastian/diff/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | install: 4 | - travis_retry composer install --no-interaction --prefer-source 5 | 6 | php: 7 | - 5.3.3 8 | - 5.3 9 | - 5.4 10 | - 5.5 11 | - 5.6 12 | - hhvm 13 | 14 | notifications: 15 | email: false 16 | irc: "irc.freenode.org#phpunit" 17 | -------------------------------------------------------------------------------- /src/opwifi/vendor/sebastian/environment/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | before_script: 4 | - composer self-update 5 | - composer install --no-interaction --prefer-source --dev 6 | 7 | php: 8 | - 5.3.3 9 | - 5.3 10 | - 5.4 11 | - 5.5 12 | - 5.6 13 | - hhvm 14 | 15 | notifications: 16 | email: false 17 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/Foo6Command.php: -------------------------------------------------------------------------------- 1 | setName('0foo:bar')->setDescription('0foo:bar command'); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/AnnotatedClasses/FooTrait.php: -------------------------------------------------------------------------------- 1 | endCount++; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/swiftmailer/swiftmailer/doc/index.rst: -------------------------------------------------------------------------------- 1 | Swiftmailer 2 | =========== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | introduction 8 | overview 9 | installing 10 | help-resources 11 | including-the-files 12 | messages 13 | headers 14 | sending 15 | plugins 16 | japanese 17 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/routing/Tests/Fixtures/validresource.yml: -------------------------------------------------------------------------------- 1 | _blog: 2 | resource: validpattern.yml 3 | prefix: /{foo} 4 | defaults: { 'foo': '123' } 5 | requirements: { 'foo': '\d+' } 6 | options: { 'foo': 'bar' } 7 | host: "" 8 | condition: 'context.getMethod() == "POST"' 9 | -------------------------------------------------------------------------------- /src/opwifi/vendor/laravel/framework/src/Illuminate/Contracts/Support/Renderable.php: -------------------------------------------------------------------------------- 1 | expectOutputString('*'); 7 | 8 | print '*'; 9 | 10 | $this->assertTrue(false); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/Regression/GitHub/503/Issue503Test.php: -------------------------------------------------------------------------------- 1 | assertSame( 7 | "foo\n", 8 | "foo\r\n" 9 | ); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- 1 | # Doctrine Inflector 2 | 3 | Doctrine Inflector is a small library that can perform string manipulations 4 | with regard to upper-/lowercase and singular/plural forms of words. 5 | 6 | [![Build Status](https://travis-ci.org/doctrine/inflector.svg?branch=master)](https://travis-ci.org/doctrine/inflector) 7 | -------------------------------------------------------------------------------- /src/opwifi/vendor/fzaninotto/faker/src/Faker/Provider/zh_TW/Payment.php: -------------------------------------------------------------------------------- 1 | creditCardDetails($valid); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/opwifi/vendor/laravel/framework/src/Illuminate/Foundation/Auth/AuthenticatesAndRegistersUsers.php: -------------------------------------------------------------------------------- 1 | assertEquals(GITHUB_ISSUE, 797); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/FatalTest.php: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/translation/Tests/fixtures/escaped-id-plurals.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Content-Transfer-Encoding: 8bit\n" 5 | "Language: en\n" 6 | 7 | msgid "escaped \"foo\"" 8 | msgid_plural "escaped \"foos\"" 9 | msgstr[0] "escaped \"bar\"" 10 | msgstr[1] "escaped \"bars\"" 11 | -------------------------------------------------------------------------------- /src/opwifi/vendor/fzaninotto/faker/src/Faker/Provider/mn_MN/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/opwifi/vendor/jakub-onderka/php-console-color/src/JakubOnderka/PhpConsoleColor/InvalidStyleException.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/jeremeamia/SuperClosure/src/Exception/ClosureUnserializationException.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/Regression/GitHub/74/Issue74Test.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/phpunit/tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/psy/psysh/test/fixtures/empty.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | ./test/Faker/ 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/fzaninotto/faker/src/Faker/Provider/fr_BE/Internet.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/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 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/php-code-coverage/tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/opwifi/vendor/phpunit/php-code-coverage/tests/_files/source_without_namespace.php: -------------------------------------------------------------------------------- 1 |