├── .docker └── Dockerfile ├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── docker-entrypoint.sh ├── php.ini └── workflows │ ├── release.yml │ ├── sonars.yml │ └── static_coverage.yml ├── .gitignore ├── .php-cs-fixer.php ├── CASES.md ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.md ├── README.md ├── UPGRADE-3.0.md ├── UPGRADE-4.0.md ├── box.json ├── composer.json ├── console ├── docker-compose.yml ├── phpunit.xml.dist ├── rector.php ├── sonar-project.properties ├── src ├── Command │ ├── AbstractCommand.php │ └── GeneratePackageCommand.php ├── ConfigurationReader │ ├── AbstractReservedWord.php │ ├── AbstractYamlReader.php │ ├── GeneratorOptions.php │ ├── PhpReservedKeyword.php │ ├── ServiceReservedMethod.php │ ├── StructArrayReservedMethod.php │ ├── StructReservedMethod.php │ └── XsdTypes.php ├── Container │ ├── AbstractObjectContainer.php │ ├── Model │ │ ├── AbstractModel.php │ │ ├── EmptyModel.php │ │ ├── Method.php │ │ ├── Schema.php │ │ ├── Service.php │ │ ├── Struct.php │ │ ├── StructAttribute.php │ │ └── StructValue.php │ ├── Parser.php │ └── PhpElement │ │ ├── AbstractPhpElement.php │ │ ├── Constant.php │ │ ├── Method.php │ │ └── Property.php ├── File │ ├── AbstractFile.php │ ├── AbstractModelFile.php │ ├── AbstractOperation.php │ ├── ClassMap.php │ ├── Composer.php │ ├── Element │ │ └── PhpFunctionParameter.php │ ├── FileInterface.php │ ├── Operation.php │ ├── OperationAnnotationBlock.php │ ├── Service.php │ ├── Struct.php │ ├── StructArray.php │ ├── StructEnum.php │ ├── Tutorial.php │ ├── Utils.php │ └── Validation │ │ ├── AbstractBoundRule.php │ │ ├── AbstractLengthRule.php │ │ ├── AbstractMinMaxRule.php │ │ ├── AbstractRule.php │ │ ├── AbstractSetOfValuesRule.php │ │ ├── ArrayRule.php │ │ ├── BoolRule.php │ │ ├── BooleanRule.php │ │ ├── ChoiceMaxOccursRule.php │ │ ├── ChoiceMinOccursRule.php │ │ ├── ChoiceRule.php │ │ ├── EnumerationRule.php │ │ ├── FloatRule.php │ │ ├── FractionDigitsRule.php │ │ ├── IntRule.php │ │ ├── ItemTypeRule.php │ │ ├── LengthRule.php │ │ ├── ListRule.php │ │ ├── MaxExclusiveRule.php │ │ ├── MaxInclusiveRule.php │ │ ├── MaxLengthRule.php │ │ ├── MaxOccursRule.php │ │ ├── MinExclusiveRule.php │ │ ├── MinInclusiveRule.php │ │ ├── MinLengthRule.php │ │ ├── MinOccursRule.php │ │ ├── PatternRule.php │ │ ├── Rules.php │ │ ├── StringRule.php │ │ ├── TotalDigitsRule.php │ │ ├── UnionRule.php │ │ └── XmlRule.php ├── Generator │ ├── AbstractGeneratorAware.php │ ├── Generator.php │ ├── GeneratorContainers.php │ ├── GeneratorFiles.php │ ├── GeneratorParsers.php │ ├── GeneratorSoapClient.php │ ├── SoapClient.php │ └── Utils.php ├── Model │ ├── AbstractDocument.php │ ├── AbstractModel.php │ ├── EmptyModel.php │ ├── Method.php │ ├── Schema.php │ ├── Service.php │ ├── Struct.php │ ├── StructAttribute.php │ ├── StructValue.php │ └── Wsdl.php ├── Parser │ ├── AbstractParser.php │ ├── ParserInterface.php │ ├── SoapClient │ │ ├── AbstractParser.php │ │ ├── Functions.php │ │ └── Structs.php │ └── Wsdl │ │ ├── AbstractAttributesParser.php │ │ ├── AbstractParser.php │ │ ├── AbstractTagImportParser.php │ │ ├── AbstractTagInputOutputParser.php │ │ ├── AbstractTagParser.php │ │ ├── README.md │ │ ├── TagAttribute.php │ │ ├── TagChoice.php │ │ ├── TagComplexType.php │ │ ├── TagDocumentation.php │ │ ├── TagElement.php │ │ ├── TagEnumeration.php │ │ ├── TagExtension.php │ │ ├── TagHeader.php │ │ ├── TagImport.php │ │ ├── TagInclude.php │ │ ├── TagInput.php │ │ ├── TagList.php │ │ ├── TagOutput.php │ │ ├── TagRestriction.php │ │ └── TagUnion.php └── resources │ └── config │ ├── generator_options.yml │ ├── php_reserved_keywords.yml │ ├── service_reserved_keywords.yml │ ├── struct_array_reserved_keywords.yml │ ├── struct_reserved_keywords.yml │ └── xsd_types.yml ├── tests ├── AbstractTestCase.php ├── Command │ └── GeneratePackageCommandTest.php ├── ConfigurationReader │ ├── GeneratorOptionsTest.php │ ├── PhpReservedKeywordTest.php │ ├── ServiceReservedMethodTest.php │ ├── StructArrayReservedMethodTest.php │ ├── StructReservedMethodTest.php │ └── XsdTypesTest.php ├── Container │ ├── ContainerTest.php │ ├── FalseObjectContainerTest.php │ ├── FalseObjectTest.php │ ├── Model │ │ ├── MethodContainerTest.php │ │ ├── ModelContainerTest.php │ │ ├── SchemaContainerTest.php │ │ ├── ServiceContainerTest.php │ │ ├── StructAttributeContainerTest.php │ │ ├── StructContainerTest.php │ │ └── StructValueContainerTest.php │ ├── ObjectContainerTest.php │ ├── ObjectTest.php │ ├── ParserTest.php │ └── PhpElement │ │ ├── ConstantTest.php │ │ ├── MethodTest.php │ │ └── PropertyTest.php ├── File │ ├── AbstractFile.php │ ├── ClassMapTest.php │ ├── ComposerTest.php │ ├── ServiceTest.php │ ├── StructArrayTest.php │ ├── StructEnumTest.php │ ├── StructTest.php │ ├── TutorialTest.php │ └── Validation │ │ ├── AbstractRule.php │ │ ├── ArrayRuleTest.php │ │ ├── BooleanRuleTest.php │ │ ├── ChoiceRuleTest.php │ │ ├── EnumerationRuleTest.php │ │ ├── FloatRuleTest.php │ │ ├── FractionDigitsRuleTest.php │ │ ├── IntRuleTest.php │ │ ├── InvalidRuleClass.php │ │ ├── InvalidRuleTest.php │ │ ├── ItemTypeRuleTest.php │ │ ├── LengthRuleTest.php │ │ ├── ListRuleTest.php │ │ ├── MaxExclusiveRuleTest.php │ │ ├── MaxInclusiveRuleTest.php │ │ ├── MaxLengthRuleTest.php │ │ ├── MaxOccursRuleTest.php │ │ ├── MinExclusiveRuleTest.php │ │ ├── MinInclusiveRuleTest.php │ │ ├── MinLengthRuleTest.php │ │ ├── PatternRuleTest.php │ │ ├── StringRuleTest.php │ │ ├── TotalDigitsRuleTest.php │ │ ├── UnionRuleTest.php │ │ └── XmlRuleTest.php ├── Generator │ ├── GeneratorContainerTest.php │ ├── GeneratorSoapClientTest.php │ ├── GeneratorTest.php │ └── UtilsTest.php ├── Model │ ├── MethodTest.php │ ├── ModelTest.php │ ├── ServiceTest.php │ ├── StructAttributeTest.php │ ├── StructTest.php │ ├── StructValueTest.php │ └── WsdlTest.php ├── Parser │ ├── SoapClient │ │ ├── FunctionsTest.php │ │ ├── SoapClientParser.php │ │ └── StructsTest.php │ └── Wsdl │ │ ├── TagAttributeTest.php │ │ ├── TagChoiceTest.php │ │ ├── TagComplexTypeTest.php │ │ ├── TagDocumentationTest.php │ │ ├── TagElementTest.php │ │ ├── TagEnumerationTest.php │ │ ├── TagExtensionTest.php │ │ ├── TagHeaderTest.php │ │ ├── TagImportTest.php │ │ ├── TagIncludeTest.php │ │ ├── TagInputTest.php │ │ ├── TagListTest.php │ │ ├── TagOutputTest.php │ │ ├── TagRestrictionTest.php │ │ ├── TagUnionTest.php │ │ └── WsdlParser.php ├── generate_serialized_jsons.php └── resources │ ├── ActonService2.local.wsdl │ ├── ActonService2.wsdl │ ├── DeliveryService.wsdl │ ├── MyBoardPack.wsdl │ ├── OmnitureAdminServices.wsdl │ ├── OrderContract.wsdl │ ├── QueueService.wsdl │ ├── VehicleSelectionService │ ├── VehicleSelectionService.wsdl │ ├── VehicleSelectionService_schema1.xsd │ └── VehicleSelectionService_schema2.xsd │ ├── aukro.wsdl │ ├── bad_generator_options.yml │ ├── bad_php_reserved_keywords.yml │ ├── bad_xsd_types.yml │ ├── bingsearch.wsdl │ ├── bullhornstaffing.local.wsdl │ ├── directapi │ ├── adgroups.wsdl │ ├── campaigns.wsdl │ ├── general.xsd │ └── live.wsdl │ ├── docdatapayments │ ├── 1_3.1.xsd │ ├── 1_3.2.xsd │ └── 1_3.wsdl │ ├── ebaySvc.wsdl │ ├── empty.wsdl │ ├── ews │ ├── messages.xsd │ ├── services.wsdl │ └── types.xsd │ ├── existing_config │ └── wsdltophp.yml │ ├── generated │ ├── ValidActonApiService.php │ ├── ValidActonClassMap.php │ ├── ValidActonClassMapWihoutNamespace.php │ ├── ValidActonClassMapWihoutNamespaceAndCategory.php │ ├── ValidActonNoneTutorial.php │ ├── ValidActonTutorial.php │ ├── ValidAdGroupsSelectionCriteria.php │ ├── ValidAddRequest.php │ ├── ValidAddRequestRepeatedMaxOccurs.php │ ├── ValidAddress.php │ ├── ValidAddressDelivery_Type.php │ ├── ValidAddressType.php │ ├── ValidApiAdultOption.php │ ├── ValidApiArrayOfError.php │ ├── ValidApiArrayOfErrorProject.php │ ├── ValidApiArrayOfGuid.php │ ├── ValidApiArrayOfNewsRelatedSearch.php │ ├── ValidApiArrayOfString.php │ ├── ValidApiArrayOfWebSearchOption.php │ ├── ValidApiAuthenticate.php │ ├── ValidApiControlsType.php │ ├── ValidApiCreate.php │ ├── ValidApiDelete.php │ ├── ValidApiDo.php │ ├── ValidApiDs_weblog_formats.php │ ├── ValidApiFareItinerary.php │ ├── ValidApiFind.php │ ├── ValidApiHouseStageEnum.php │ ├── ValidApiItem.php │ ├── ValidApiLogin.php │ ├── ValidApiNewsArticle.php │ ├── ValidApiOffer.php │ ├── ValidApiPhoneNumberKeyType.php │ ├── ValidApiPhonebookSortOption.php │ ├── ValidApiPhonebookSortOptionApi.php │ ├── ValidApiQuery.php │ ├── ValidApiQueryWithIdenticalPropertiesDifferentByCase.php │ ├── ValidApiSaint.php │ ├── ValidApiSearch.php │ ├── ValidApiSearchBingApi.php │ ├── ValidApiSearchRequest.php │ ├── ValidApiSourceType.php │ ├── ValidApiTransactionActionType.php │ ├── ValidApiVideoRequest.php │ ├── ValidApiWebSearchOption.php │ ├── ValidBannerInfo.php │ ├── ValidBingApiService.php │ ├── ValidBingClassMap.php │ ├── ValidBingComposer.json │ ├── ValidBingComposerEmptySrcDirname.json │ ├── ValidBingComposerSettings.json │ ├── ValidBingComposerSlashSrcDirname.json │ ├── ValidBingEmptyComposerNameComposer.json │ ├── ValidBingTutorial.php │ ├── ValidBingTutorialNoPrefix.php │ ├── ValidBingTutorialNotStandalone.php │ ├── ValidCampaignGetItem.php │ ├── ValidDetails.php │ ├── ValidDoWithoutPrefix.php │ ├── ValidExpiryDate.php │ ├── ValidFieldString1000.php │ ├── ValidHotelReservationType.php │ ├── ValidHouseProfileData.php │ ├── ValidListWithoutPrefix.php │ ├── ValidMyProjectApiSearchProject.php │ ├── ValidOmnitureApiService.php │ ├── ValidOmnitureTutorial.php │ ├── ValidPayPalApiService.php │ ├── ValidPaymentCardType.php │ ├── ValidProposeNewTimeType.php │ ├── ValidReformaClassMap.php │ ├── ValidReformaTutorial.php │ ├── ValidSetExpressCheckoutRequestDetailsType.php │ ├── ValidShopper.php │ ├── ValidTaxType.php │ ├── ValidUniqueID_Type.php │ ├── ValidUnitTestsStructResult.php │ ├── ValidUnitTestsValueListType.php │ ├── ValidWorkingPeriod.php │ ├── ValidYandexDirectApiLiveGet.php │ ├── json_serialized.json │ ├── parsed_actonservice2_none.json │ ├── parsed_actonservice2_start.json │ ├── parsed_bingsearch_none.json │ ├── parsed_bingsearch_start.json │ ├── parsed_deliveryservice_none.json │ ├── parsed_deliveryservice_start.json │ ├── parsed_docdatapayments_none.json │ ├── parsed_docdatapayments_start.json │ ├── parsed_ews.json │ ├── parsed_ews_none.json │ ├── parsed_ews_start.json │ ├── parsed_myboard_none.json │ ├── parsed_myboard_start.json │ ├── parsed_odigeo_none.json │ ├── parsed_odigeo_start.json │ ├── parsed_omnitureadminservices_none.json │ ├── parsed_omnitureadminservices_start.json │ ├── parsed_ordercontract_none.json │ ├── parsed_ordercontract_start.json │ ├── parsed_paypal_none.json │ ├── parsed_paypal_start.json │ ├── parsed_portaplusapi_none.json │ ├── parsed_portaplusapi_start.json │ ├── parsed_queueservice_none.json │ ├── parsed_queueservice_start.json │ ├── parsed_reformagkh_none.json │ ├── parsed_reformagkh_start.json │ ├── parsed_unit_tests_none.json │ ├── parsed_unit_tests_start.json │ ├── parsed_vehicleselection_none.json │ ├── parsed_vehicleselection_start.json │ ├── parsed_wcf_none.json │ ├── parsed_wcf_start.json │ ├── parsed_whl_none.json │ ├── parsed_whl_start.json │ ├── parsed_yandex_campaigns_none.json │ ├── parsed_yandex_campaigns_start.json │ ├── parsed_yandex_groups_none.json │ ├── parsed_yandex_groups_start.json │ ├── parsed_yandex_live_none.json │ └── parsed_yandex_live_start.json │ ├── generator_options.yml │ ├── image │ ├── ImageViewService.local.wsdl │ ├── ImageViewService.wsdl │ ├── availableImagesRequest.xsd │ ├── availableImagesResponse.xsd │ ├── imageViewCommon.xsd │ ├── imagesRequest.xsd │ └── imagesResponse.xsd │ ├── lnp │ ├── CommonIdsModel.xsd │ ├── NumberManagement.wsdl │ └── NumberManagementModel.xsd │ ├── numeric_enumeration.xml │ ├── odigeo.wsdl │ ├── partner │ ├── PartnerService.0.xsd │ ├── PartnerService.1.xsd │ ├── PartnerService.10.xsd │ ├── PartnerService.11.xsd │ ├── PartnerService.12.xsd │ ├── PartnerService.13.xsd │ ├── PartnerService.14.xsd │ ├── PartnerService.15.xsd │ ├── PartnerService.16.xsd │ ├── PartnerService.17.xsd │ ├── PartnerService.18.xsd │ ├── PartnerService.2.xsd │ ├── PartnerService.3.xsd │ ├── PartnerService.4.xsd │ ├── PartnerService.5.xsd │ ├── PartnerService.6.xsd │ ├── PartnerService.7.xsd │ ├── PartnerService.8.xsd │ ├── PartnerService.9.xsd │ ├── PartnerService.local.scd.wsdl │ ├── PartnerService.local.third.wsdl │ ├── PartnerService.local.wsdl │ └── PartnerService.wsdl │ ├── paypal │ ├── CoreComponentTypes.xsd │ ├── EnhancedDataTypes.xsd │ ├── PayPalSvc.wsdl │ └── eBLBaseComponents.xsd │ ├── php_reserved_keywords.yml │ ├── portaplusapi.wsdl │ ├── reformagkh.wsdl │ ├── service_reserved_keywords.yml │ ├── struct_array_reserved_keywords.yml │ ├── struct_reserved_keywords.yml │ ├── unit_tests.wsdl │ ├── wcf │ ├── Service1.wsdl │ ├── Service1.xsd │ ├── Service10.wsdl │ ├── Service10.xsd │ └── Service11.xsd │ ├── whl.wsdl │ ├── xmlmime.xml │ └── xsd_types.yml └── wsdltophp.yml.dist /.docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.docker/Dockerfile -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.github/Dockerfile -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.github/docker-entrypoint.sh -------------------------------------------------------------------------------- /.github/php.ini: -------------------------------------------------------------------------------- 1 | memory_limit = -1 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/sonars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.github/workflows/sonars.yml -------------------------------------------------------------------------------- /.github/workflows/static_coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.github/workflows/static_coverage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /CASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/CASES.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/MANIFEST.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/UPGRADE-3.0.md -------------------------------------------------------------------------------- /UPGRADE-4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/UPGRADE-4.0.md -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/composer.json -------------------------------------------------------------------------------- /console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/console -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/rector.php -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/Command/AbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Command/AbstractCommand.php -------------------------------------------------------------------------------- /src/Command/GeneratePackageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Command/GeneratePackageCommand.php -------------------------------------------------------------------------------- /src/ConfigurationReader/AbstractReservedWord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/ConfigurationReader/AbstractReservedWord.php -------------------------------------------------------------------------------- /src/ConfigurationReader/AbstractYamlReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/ConfigurationReader/AbstractYamlReader.php -------------------------------------------------------------------------------- /src/ConfigurationReader/GeneratorOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/ConfigurationReader/GeneratorOptions.php -------------------------------------------------------------------------------- /src/ConfigurationReader/PhpReservedKeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/ConfigurationReader/PhpReservedKeyword.php -------------------------------------------------------------------------------- /src/ConfigurationReader/ServiceReservedMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/ConfigurationReader/ServiceReservedMethod.php -------------------------------------------------------------------------------- /src/ConfigurationReader/StructArrayReservedMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/ConfigurationReader/StructArrayReservedMethod.php -------------------------------------------------------------------------------- /src/ConfigurationReader/StructReservedMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/ConfigurationReader/StructReservedMethod.php -------------------------------------------------------------------------------- /src/ConfigurationReader/XsdTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/ConfigurationReader/XsdTypes.php -------------------------------------------------------------------------------- /src/Container/AbstractObjectContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/AbstractObjectContainer.php -------------------------------------------------------------------------------- /src/Container/Model/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/Model/AbstractModel.php -------------------------------------------------------------------------------- /src/Container/Model/EmptyModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/Model/EmptyModel.php -------------------------------------------------------------------------------- /src/Container/Model/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/Model/Method.php -------------------------------------------------------------------------------- /src/Container/Model/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/Model/Schema.php -------------------------------------------------------------------------------- /src/Container/Model/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/Model/Service.php -------------------------------------------------------------------------------- /src/Container/Model/Struct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/Model/Struct.php -------------------------------------------------------------------------------- /src/Container/Model/StructAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/Model/StructAttribute.php -------------------------------------------------------------------------------- /src/Container/Model/StructValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/Model/StructValue.php -------------------------------------------------------------------------------- /src/Container/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/Parser.php -------------------------------------------------------------------------------- /src/Container/PhpElement/AbstractPhpElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/PhpElement/AbstractPhpElement.php -------------------------------------------------------------------------------- /src/Container/PhpElement/Constant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/PhpElement/Constant.php -------------------------------------------------------------------------------- /src/Container/PhpElement/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/PhpElement/Method.php -------------------------------------------------------------------------------- /src/Container/PhpElement/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Container/PhpElement/Property.php -------------------------------------------------------------------------------- /src/File/AbstractFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/AbstractFile.php -------------------------------------------------------------------------------- /src/File/AbstractModelFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/AbstractModelFile.php -------------------------------------------------------------------------------- /src/File/AbstractOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/AbstractOperation.php -------------------------------------------------------------------------------- /src/File/ClassMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/ClassMap.php -------------------------------------------------------------------------------- /src/File/Composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Composer.php -------------------------------------------------------------------------------- /src/File/Element/PhpFunctionParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Element/PhpFunctionParameter.php -------------------------------------------------------------------------------- /src/File/FileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/FileInterface.php -------------------------------------------------------------------------------- /src/File/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Operation.php -------------------------------------------------------------------------------- /src/File/OperationAnnotationBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/OperationAnnotationBlock.php -------------------------------------------------------------------------------- /src/File/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Service.php -------------------------------------------------------------------------------- /src/File/Struct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Struct.php -------------------------------------------------------------------------------- /src/File/StructArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/StructArray.php -------------------------------------------------------------------------------- /src/File/StructEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/StructEnum.php -------------------------------------------------------------------------------- /src/File/Tutorial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Tutorial.php -------------------------------------------------------------------------------- /src/File/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Utils.php -------------------------------------------------------------------------------- /src/File/Validation/AbstractBoundRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/AbstractBoundRule.php -------------------------------------------------------------------------------- /src/File/Validation/AbstractLengthRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/AbstractLengthRule.php -------------------------------------------------------------------------------- /src/File/Validation/AbstractMinMaxRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/AbstractMinMaxRule.php -------------------------------------------------------------------------------- /src/File/Validation/AbstractRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/AbstractRule.php -------------------------------------------------------------------------------- /src/File/Validation/AbstractSetOfValuesRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/AbstractSetOfValuesRule.php -------------------------------------------------------------------------------- /src/File/Validation/ArrayRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/ArrayRule.php -------------------------------------------------------------------------------- /src/File/Validation/BoolRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/BoolRule.php -------------------------------------------------------------------------------- /src/File/Validation/BooleanRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/BooleanRule.php -------------------------------------------------------------------------------- /src/File/Validation/ChoiceMaxOccursRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/ChoiceMaxOccursRule.php -------------------------------------------------------------------------------- /src/File/Validation/ChoiceMinOccursRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/ChoiceMinOccursRule.php -------------------------------------------------------------------------------- /src/File/Validation/ChoiceRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/ChoiceRule.php -------------------------------------------------------------------------------- /src/File/Validation/EnumerationRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/EnumerationRule.php -------------------------------------------------------------------------------- /src/File/Validation/FloatRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/FloatRule.php -------------------------------------------------------------------------------- /src/File/Validation/FractionDigitsRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/FractionDigitsRule.php -------------------------------------------------------------------------------- /src/File/Validation/IntRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/IntRule.php -------------------------------------------------------------------------------- /src/File/Validation/ItemTypeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/ItemTypeRule.php -------------------------------------------------------------------------------- /src/File/Validation/LengthRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/LengthRule.php -------------------------------------------------------------------------------- /src/File/Validation/ListRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/ListRule.php -------------------------------------------------------------------------------- /src/File/Validation/MaxExclusiveRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/MaxExclusiveRule.php -------------------------------------------------------------------------------- /src/File/Validation/MaxInclusiveRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/MaxInclusiveRule.php -------------------------------------------------------------------------------- /src/File/Validation/MaxLengthRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/MaxLengthRule.php -------------------------------------------------------------------------------- /src/File/Validation/MaxOccursRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/MaxOccursRule.php -------------------------------------------------------------------------------- /src/File/Validation/MinExclusiveRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/MinExclusiveRule.php -------------------------------------------------------------------------------- /src/File/Validation/MinInclusiveRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/MinInclusiveRule.php -------------------------------------------------------------------------------- /src/File/Validation/MinLengthRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/MinLengthRule.php -------------------------------------------------------------------------------- /src/File/Validation/MinOccursRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/MinOccursRule.php -------------------------------------------------------------------------------- /src/File/Validation/PatternRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/PatternRule.php -------------------------------------------------------------------------------- /src/File/Validation/Rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/Rules.php -------------------------------------------------------------------------------- /src/File/Validation/StringRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/StringRule.php -------------------------------------------------------------------------------- /src/File/Validation/TotalDigitsRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/TotalDigitsRule.php -------------------------------------------------------------------------------- /src/File/Validation/UnionRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/UnionRule.php -------------------------------------------------------------------------------- /src/File/Validation/XmlRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/File/Validation/XmlRule.php -------------------------------------------------------------------------------- /src/Generator/AbstractGeneratorAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Generator/AbstractGeneratorAware.php -------------------------------------------------------------------------------- /src/Generator/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Generator/Generator.php -------------------------------------------------------------------------------- /src/Generator/GeneratorContainers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Generator/GeneratorContainers.php -------------------------------------------------------------------------------- /src/Generator/GeneratorFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Generator/GeneratorFiles.php -------------------------------------------------------------------------------- /src/Generator/GeneratorParsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Generator/GeneratorParsers.php -------------------------------------------------------------------------------- /src/Generator/GeneratorSoapClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Generator/GeneratorSoapClient.php -------------------------------------------------------------------------------- /src/Generator/SoapClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Generator/SoapClient.php -------------------------------------------------------------------------------- /src/Generator/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Generator/Utils.php -------------------------------------------------------------------------------- /src/Model/AbstractDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Model/AbstractDocument.php -------------------------------------------------------------------------------- /src/Model/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Model/AbstractModel.php -------------------------------------------------------------------------------- /src/Model/EmptyModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Model/EmptyModel.php -------------------------------------------------------------------------------- /src/Model/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Model/Method.php -------------------------------------------------------------------------------- /src/Model/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Model/Schema.php -------------------------------------------------------------------------------- /src/Model/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Model/Service.php -------------------------------------------------------------------------------- /src/Model/Struct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Model/Struct.php -------------------------------------------------------------------------------- /src/Model/StructAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Model/StructAttribute.php -------------------------------------------------------------------------------- /src/Model/StructValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Model/StructValue.php -------------------------------------------------------------------------------- /src/Model/Wsdl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Model/Wsdl.php -------------------------------------------------------------------------------- /src/Parser/AbstractParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/AbstractParser.php -------------------------------------------------------------------------------- /src/Parser/ParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/ParserInterface.php -------------------------------------------------------------------------------- /src/Parser/SoapClient/AbstractParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/SoapClient/AbstractParser.php -------------------------------------------------------------------------------- /src/Parser/SoapClient/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/SoapClient/Functions.php -------------------------------------------------------------------------------- /src/Parser/SoapClient/Structs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/SoapClient/Structs.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/AbstractAttributesParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/AbstractAttributesParser.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/AbstractParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/AbstractParser.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/AbstractTagImportParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/AbstractTagImportParser.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/AbstractTagInputOutputParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/AbstractTagInputOutputParser.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/AbstractTagParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/AbstractTagParser.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/README.md -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagAttribute.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagChoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagChoice.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagComplexType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagComplexType.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagDocumentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagDocumentation.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagElement.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagEnumeration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagEnumeration.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagExtension.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagHeader.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagImport.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagInclude.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagInclude.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagInput.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagList.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagOutput.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagRestriction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagRestriction.php -------------------------------------------------------------------------------- /src/Parser/Wsdl/TagUnion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/Parser/Wsdl/TagUnion.php -------------------------------------------------------------------------------- /src/resources/config/generator_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/resources/config/generator_options.yml -------------------------------------------------------------------------------- /src/resources/config/php_reserved_keywords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/resources/config/php_reserved_keywords.yml -------------------------------------------------------------------------------- /src/resources/config/service_reserved_keywords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/resources/config/service_reserved_keywords.yml -------------------------------------------------------------------------------- /src/resources/config/struct_array_reserved_keywords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/resources/config/struct_array_reserved_keywords.yml -------------------------------------------------------------------------------- /src/resources/config/struct_reserved_keywords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/resources/config/struct_reserved_keywords.yml -------------------------------------------------------------------------------- /src/resources/config/xsd_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/src/resources/config/xsd_types.yml -------------------------------------------------------------------------------- /tests/AbstractTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/AbstractTestCase.php -------------------------------------------------------------------------------- /tests/Command/GeneratePackageCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Command/GeneratePackageCommandTest.php -------------------------------------------------------------------------------- /tests/ConfigurationReader/GeneratorOptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/ConfigurationReader/GeneratorOptionsTest.php -------------------------------------------------------------------------------- /tests/ConfigurationReader/PhpReservedKeywordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/ConfigurationReader/PhpReservedKeywordTest.php -------------------------------------------------------------------------------- /tests/ConfigurationReader/ServiceReservedMethodTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/ConfigurationReader/ServiceReservedMethodTest.php -------------------------------------------------------------------------------- /tests/ConfigurationReader/StructArrayReservedMethodTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/ConfigurationReader/StructArrayReservedMethodTest.php -------------------------------------------------------------------------------- /tests/ConfigurationReader/StructReservedMethodTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/ConfigurationReader/StructReservedMethodTest.php -------------------------------------------------------------------------------- /tests/ConfigurationReader/XsdTypesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/ConfigurationReader/XsdTypesTest.php -------------------------------------------------------------------------------- /tests/Container/ContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/ContainerTest.php -------------------------------------------------------------------------------- /tests/Container/FalseObjectContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/FalseObjectContainerTest.php -------------------------------------------------------------------------------- /tests/Container/FalseObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/FalseObjectTest.php -------------------------------------------------------------------------------- /tests/Container/Model/MethodContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/Model/MethodContainerTest.php -------------------------------------------------------------------------------- /tests/Container/Model/ModelContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/Model/ModelContainerTest.php -------------------------------------------------------------------------------- /tests/Container/Model/SchemaContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/Model/SchemaContainerTest.php -------------------------------------------------------------------------------- /tests/Container/Model/ServiceContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/Model/ServiceContainerTest.php -------------------------------------------------------------------------------- /tests/Container/Model/StructAttributeContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/Model/StructAttributeContainerTest.php -------------------------------------------------------------------------------- /tests/Container/Model/StructContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/Model/StructContainerTest.php -------------------------------------------------------------------------------- /tests/Container/Model/StructValueContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/Model/StructValueContainerTest.php -------------------------------------------------------------------------------- /tests/Container/ObjectContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/ObjectContainerTest.php -------------------------------------------------------------------------------- /tests/Container/ObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/ObjectTest.php -------------------------------------------------------------------------------- /tests/Container/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/ParserTest.php -------------------------------------------------------------------------------- /tests/Container/PhpElement/ConstantTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/PhpElement/ConstantTest.php -------------------------------------------------------------------------------- /tests/Container/PhpElement/MethodTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/PhpElement/MethodTest.php -------------------------------------------------------------------------------- /tests/Container/PhpElement/PropertyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Container/PhpElement/PropertyTest.php -------------------------------------------------------------------------------- /tests/File/AbstractFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/AbstractFile.php -------------------------------------------------------------------------------- /tests/File/ClassMapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/ClassMapTest.php -------------------------------------------------------------------------------- /tests/File/ComposerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/ComposerTest.php -------------------------------------------------------------------------------- /tests/File/ServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/ServiceTest.php -------------------------------------------------------------------------------- /tests/File/StructArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/StructArrayTest.php -------------------------------------------------------------------------------- /tests/File/StructEnumTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/StructEnumTest.php -------------------------------------------------------------------------------- /tests/File/StructTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/StructTest.php -------------------------------------------------------------------------------- /tests/File/TutorialTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/TutorialTest.php -------------------------------------------------------------------------------- /tests/File/Validation/AbstractRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/AbstractRule.php -------------------------------------------------------------------------------- /tests/File/Validation/ArrayRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/ArrayRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/BooleanRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/BooleanRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/ChoiceRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/ChoiceRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/EnumerationRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/EnumerationRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/FloatRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/FloatRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/FractionDigitsRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/FractionDigitsRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/IntRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/IntRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/InvalidRuleClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/InvalidRuleClass.php -------------------------------------------------------------------------------- /tests/File/Validation/InvalidRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/InvalidRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/ItemTypeRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/ItemTypeRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/LengthRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/LengthRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/ListRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/ListRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/MaxExclusiveRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/MaxExclusiveRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/MaxInclusiveRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/MaxInclusiveRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/MaxLengthRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/MaxLengthRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/MaxOccursRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/MaxOccursRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/MinExclusiveRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/MinExclusiveRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/MinInclusiveRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/MinInclusiveRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/MinLengthRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/MinLengthRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/PatternRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/PatternRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/StringRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/StringRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/TotalDigitsRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/TotalDigitsRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/UnionRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/UnionRuleTest.php -------------------------------------------------------------------------------- /tests/File/Validation/XmlRuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/File/Validation/XmlRuleTest.php -------------------------------------------------------------------------------- /tests/Generator/GeneratorContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Generator/GeneratorContainerTest.php -------------------------------------------------------------------------------- /tests/Generator/GeneratorSoapClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Generator/GeneratorSoapClientTest.php -------------------------------------------------------------------------------- /tests/Generator/GeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Generator/GeneratorTest.php -------------------------------------------------------------------------------- /tests/Generator/UtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Generator/UtilsTest.php -------------------------------------------------------------------------------- /tests/Model/MethodTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Model/MethodTest.php -------------------------------------------------------------------------------- /tests/Model/ModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Model/ModelTest.php -------------------------------------------------------------------------------- /tests/Model/ServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Model/ServiceTest.php -------------------------------------------------------------------------------- /tests/Model/StructAttributeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Model/StructAttributeTest.php -------------------------------------------------------------------------------- /tests/Model/StructTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Model/StructTest.php -------------------------------------------------------------------------------- /tests/Model/StructValueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Model/StructValueTest.php -------------------------------------------------------------------------------- /tests/Model/WsdlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Model/WsdlTest.php -------------------------------------------------------------------------------- /tests/Parser/SoapClient/FunctionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/SoapClient/FunctionsTest.php -------------------------------------------------------------------------------- /tests/Parser/SoapClient/SoapClientParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/SoapClient/SoapClientParser.php -------------------------------------------------------------------------------- /tests/Parser/SoapClient/StructsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/SoapClient/StructsTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagAttributeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagAttributeTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagChoiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagChoiceTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagComplexTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagComplexTypeTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagDocumentationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagDocumentationTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagElementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagElementTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagEnumerationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagEnumerationTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagExtensionTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagHeaderTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagImportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagImportTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagIncludeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagIncludeTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagInputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagInputTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagListTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagOutputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagOutputTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagRestrictionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagRestrictionTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/TagUnionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/TagUnionTest.php -------------------------------------------------------------------------------- /tests/Parser/Wsdl/WsdlParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/Parser/Wsdl/WsdlParser.php -------------------------------------------------------------------------------- /tests/generate_serialized_jsons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/generate_serialized_jsons.php -------------------------------------------------------------------------------- /tests/resources/ActonService2.local.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/ActonService2.local.wsdl -------------------------------------------------------------------------------- /tests/resources/ActonService2.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/ActonService2.wsdl -------------------------------------------------------------------------------- /tests/resources/DeliveryService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/DeliveryService.wsdl -------------------------------------------------------------------------------- /tests/resources/MyBoardPack.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/MyBoardPack.wsdl -------------------------------------------------------------------------------- /tests/resources/OmnitureAdminServices.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/OmnitureAdminServices.wsdl -------------------------------------------------------------------------------- /tests/resources/OrderContract.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/OrderContract.wsdl -------------------------------------------------------------------------------- /tests/resources/QueueService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/QueueService.wsdl -------------------------------------------------------------------------------- /tests/resources/VehicleSelectionService/VehicleSelectionService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/VehicleSelectionService/VehicleSelectionService.wsdl -------------------------------------------------------------------------------- /tests/resources/VehicleSelectionService/VehicleSelectionService_schema1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/VehicleSelectionService/VehicleSelectionService_schema1.xsd -------------------------------------------------------------------------------- /tests/resources/VehicleSelectionService/VehicleSelectionService_schema2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/VehicleSelectionService/VehicleSelectionService_schema2.xsd -------------------------------------------------------------------------------- /tests/resources/aukro.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/aukro.wsdl -------------------------------------------------------------------------------- /tests/resources/bad_generator_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/bad_generator_options.yml -------------------------------------------------------------------------------- /tests/resources/bad_php_reserved_keywords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/bad_php_reserved_keywords.yml -------------------------------------------------------------------------------- /tests/resources/bad_xsd_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/bad_xsd_types.yml -------------------------------------------------------------------------------- /tests/resources/bingsearch.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/bingsearch.wsdl -------------------------------------------------------------------------------- /tests/resources/bullhornstaffing.local.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/bullhornstaffing.local.wsdl -------------------------------------------------------------------------------- /tests/resources/directapi/adgroups.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/directapi/adgroups.wsdl -------------------------------------------------------------------------------- /tests/resources/directapi/campaigns.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/directapi/campaigns.wsdl -------------------------------------------------------------------------------- /tests/resources/directapi/general.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/directapi/general.xsd -------------------------------------------------------------------------------- /tests/resources/directapi/live.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/directapi/live.wsdl -------------------------------------------------------------------------------- /tests/resources/docdatapayments/1_3.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/docdatapayments/1_3.1.xsd -------------------------------------------------------------------------------- /tests/resources/docdatapayments/1_3.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/docdatapayments/1_3.2.xsd -------------------------------------------------------------------------------- /tests/resources/docdatapayments/1_3.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/docdatapayments/1_3.wsdl -------------------------------------------------------------------------------- /tests/resources/ebaySvc.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/ebaySvc.wsdl -------------------------------------------------------------------------------- /tests/resources/empty.wsdl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/ews/messages.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/ews/messages.xsd -------------------------------------------------------------------------------- /tests/resources/ews/services.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/ews/services.wsdl -------------------------------------------------------------------------------- /tests/resources/ews/types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/ews/types.xsd -------------------------------------------------------------------------------- /tests/resources/existing_config/wsdltophp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/existing_config/wsdltophp.yml -------------------------------------------------------------------------------- /tests/resources/generated/ValidActonApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidActonApiService.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidActonClassMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidActonClassMap.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidActonClassMapWihoutNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidActonClassMapWihoutNamespace.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidActonClassMapWihoutNamespaceAndCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidActonClassMapWihoutNamespaceAndCategory.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidActonNoneTutorial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidActonNoneTutorial.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidActonTutorial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidActonTutorial.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidAdGroupsSelectionCriteria.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidAdGroupsSelectionCriteria.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidAddRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidAddRequest.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidAddRequestRepeatedMaxOccurs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidAddRequestRepeatedMaxOccurs.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidAddress.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidAddressDelivery_Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidAddressDelivery_Type.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidAddressType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidAddressType.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiAdultOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiAdultOption.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiArrayOfError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiArrayOfError.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiArrayOfErrorProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiArrayOfErrorProject.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiArrayOfGuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiArrayOfGuid.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiArrayOfNewsRelatedSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiArrayOfNewsRelatedSearch.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiArrayOfString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiArrayOfString.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiArrayOfWebSearchOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiArrayOfWebSearchOption.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiAuthenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiAuthenticate.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiControlsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiControlsType.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiCreate.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiDelete.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiDo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiDo.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiDs_weblog_formats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiDs_weblog_formats.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiFareItinerary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiFareItinerary.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiFind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiFind.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiHouseStageEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiHouseStageEnum.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiItem.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiLogin.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiNewsArticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiNewsArticle.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiOffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiOffer.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiPhoneNumberKeyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiPhoneNumberKeyType.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiPhonebookSortOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiPhonebookSortOption.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiPhonebookSortOptionApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiPhonebookSortOptionApi.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiQuery.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiQueryWithIdenticalPropertiesDifferentByCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiQueryWithIdenticalPropertiesDifferentByCase.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiSaint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiSaint.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiSearch.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiSearchBingApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiSearchBingApi.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiSearchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiSearchRequest.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiSourceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiSourceType.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiTransactionActionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiTransactionActionType.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiVideoRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiVideoRequest.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidApiWebSearchOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidApiWebSearchOption.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidBannerInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidBannerInfo.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidBingApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidBingApiService.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidBingClassMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidBingClassMap.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidBingComposer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidBingComposer.json -------------------------------------------------------------------------------- /tests/resources/generated/ValidBingComposerEmptySrcDirname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidBingComposerEmptySrcDirname.json -------------------------------------------------------------------------------- /tests/resources/generated/ValidBingComposerSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidBingComposerSettings.json -------------------------------------------------------------------------------- /tests/resources/generated/ValidBingComposerSlashSrcDirname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidBingComposerSlashSrcDirname.json -------------------------------------------------------------------------------- /tests/resources/generated/ValidBingEmptyComposerNameComposer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidBingEmptyComposerNameComposer.json -------------------------------------------------------------------------------- /tests/resources/generated/ValidBingTutorial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidBingTutorial.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidBingTutorialNoPrefix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidBingTutorialNoPrefix.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidBingTutorialNotStandalone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidBingTutorialNotStandalone.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidCampaignGetItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidCampaignGetItem.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidDetails.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidDoWithoutPrefix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidDoWithoutPrefix.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidExpiryDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidExpiryDate.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidFieldString1000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidFieldString1000.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidHotelReservationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidHotelReservationType.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidHouseProfileData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidHouseProfileData.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidListWithoutPrefix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidListWithoutPrefix.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidMyProjectApiSearchProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidMyProjectApiSearchProject.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidOmnitureApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidOmnitureApiService.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidOmnitureTutorial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidOmnitureTutorial.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidPayPalApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidPayPalApiService.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidPaymentCardType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidPaymentCardType.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidProposeNewTimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidProposeNewTimeType.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidReformaClassMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidReformaClassMap.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidReformaTutorial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidReformaTutorial.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidSetExpressCheckoutRequestDetailsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidSetExpressCheckoutRequestDetailsType.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidShopper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidShopper.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidTaxType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidTaxType.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidUniqueID_Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidUniqueID_Type.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidUnitTestsStructResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidUnitTestsStructResult.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidUnitTestsValueListType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidUnitTestsValueListType.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidWorkingPeriod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidWorkingPeriod.php -------------------------------------------------------------------------------- /tests/resources/generated/ValidYandexDirectApiLiveGet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/ValidYandexDirectApiLiveGet.php -------------------------------------------------------------------------------- /tests/resources/generated/json_serialized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/json_serialized.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_actonservice2_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_actonservice2_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_actonservice2_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_actonservice2_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_bingsearch_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_bingsearch_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_bingsearch_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_bingsearch_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_deliveryservice_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_deliveryservice_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_deliveryservice_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_deliveryservice_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_docdatapayments_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_docdatapayments_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_docdatapayments_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_docdatapayments_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_ews.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_ews.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_ews_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_ews_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_ews_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_ews_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_myboard_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_myboard_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_myboard_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_myboard_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_odigeo_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_odigeo_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_odigeo_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_odigeo_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_omnitureadminservices_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_omnitureadminservices_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_omnitureadminservices_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_omnitureadminservices_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_ordercontract_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_ordercontract_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_ordercontract_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_ordercontract_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_paypal_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_paypal_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_paypal_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_paypal_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_portaplusapi_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_portaplusapi_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_portaplusapi_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_portaplusapi_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_queueservice_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_queueservice_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_queueservice_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_queueservice_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_reformagkh_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_reformagkh_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_reformagkh_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_reformagkh_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_unit_tests_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_unit_tests_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_unit_tests_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_unit_tests_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_vehicleselection_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_vehicleselection_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_vehicleselection_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_vehicleselection_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_wcf_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_wcf_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_wcf_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_wcf_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_whl_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_whl_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_whl_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_whl_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_yandex_campaigns_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_yandex_campaigns_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_yandex_campaigns_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_yandex_campaigns_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_yandex_groups_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_yandex_groups_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_yandex_groups_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_yandex_groups_start.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_yandex_live_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_yandex_live_none.json -------------------------------------------------------------------------------- /tests/resources/generated/parsed_yandex_live_start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generated/parsed_yandex_live_start.json -------------------------------------------------------------------------------- /tests/resources/generator_options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/generator_options.yml -------------------------------------------------------------------------------- /tests/resources/image/ImageViewService.local.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/image/ImageViewService.local.wsdl -------------------------------------------------------------------------------- /tests/resources/image/ImageViewService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/image/ImageViewService.wsdl -------------------------------------------------------------------------------- /tests/resources/image/availableImagesRequest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/image/availableImagesRequest.xsd -------------------------------------------------------------------------------- /tests/resources/image/availableImagesResponse.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/image/availableImagesResponse.xsd -------------------------------------------------------------------------------- /tests/resources/image/imageViewCommon.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/image/imageViewCommon.xsd -------------------------------------------------------------------------------- /tests/resources/image/imagesRequest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/image/imagesRequest.xsd -------------------------------------------------------------------------------- /tests/resources/image/imagesResponse.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/image/imagesResponse.xsd -------------------------------------------------------------------------------- /tests/resources/lnp/CommonIdsModel.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/lnp/CommonIdsModel.xsd -------------------------------------------------------------------------------- /tests/resources/lnp/NumberManagement.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/lnp/NumberManagement.wsdl -------------------------------------------------------------------------------- /tests/resources/lnp/NumberManagementModel.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/lnp/NumberManagementModel.xsd -------------------------------------------------------------------------------- /tests/resources/numeric_enumeration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/numeric_enumeration.xml -------------------------------------------------------------------------------- /tests/resources/odigeo.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/odigeo.wsdl -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.0.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.1.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.10.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.10.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.11.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.11.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.12.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.12.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.13.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.13.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.14.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.14.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.15.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.15.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.16.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.16.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.17.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.17.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.18.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.18.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.2.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.3.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.4.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.5.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.6.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.7.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.8.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.8.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.9.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.9.xsd -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.local.scd.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.local.scd.wsdl -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.local.third.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.local.third.wsdl -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.local.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.local.wsdl -------------------------------------------------------------------------------- /tests/resources/partner/PartnerService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/partner/PartnerService.wsdl -------------------------------------------------------------------------------- /tests/resources/paypal/CoreComponentTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/paypal/CoreComponentTypes.xsd -------------------------------------------------------------------------------- /tests/resources/paypal/EnhancedDataTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/paypal/EnhancedDataTypes.xsd -------------------------------------------------------------------------------- /tests/resources/paypal/PayPalSvc.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/paypal/PayPalSvc.wsdl -------------------------------------------------------------------------------- /tests/resources/paypal/eBLBaseComponents.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/paypal/eBLBaseComponents.xsd -------------------------------------------------------------------------------- /tests/resources/php_reserved_keywords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/php_reserved_keywords.yml -------------------------------------------------------------------------------- /tests/resources/portaplusapi.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/portaplusapi.wsdl -------------------------------------------------------------------------------- /tests/resources/reformagkh.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/reformagkh.wsdl -------------------------------------------------------------------------------- /tests/resources/service_reserved_keywords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/service_reserved_keywords.yml -------------------------------------------------------------------------------- /tests/resources/struct_array_reserved_keywords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/struct_array_reserved_keywords.yml -------------------------------------------------------------------------------- /tests/resources/struct_reserved_keywords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/struct_reserved_keywords.yml -------------------------------------------------------------------------------- /tests/resources/unit_tests.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/unit_tests.wsdl -------------------------------------------------------------------------------- /tests/resources/wcf/Service1.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/wcf/Service1.wsdl -------------------------------------------------------------------------------- /tests/resources/wcf/Service1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/wcf/Service1.xsd -------------------------------------------------------------------------------- /tests/resources/wcf/Service10.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/wcf/Service10.wsdl -------------------------------------------------------------------------------- /tests/resources/wcf/Service10.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/wcf/Service10.xsd -------------------------------------------------------------------------------- /tests/resources/wcf/Service11.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/wcf/Service11.xsd -------------------------------------------------------------------------------- /tests/resources/whl.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/whl.wsdl -------------------------------------------------------------------------------- /tests/resources/xmlmime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/xmlmime.xml -------------------------------------------------------------------------------- /tests/resources/xsd_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/tests/resources/xsd_types.yml -------------------------------------------------------------------------------- /wsdltophp.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WsdlToPhp/PackageGenerator/HEAD/wsdltophp.yml.dist --------------------------------------------------------------------------------