├── Callback.php ├── PHPMailer-master ├── LICENSE ├── README.md ├── SECURITY.md ├── VERSION ├── class.phpmailer.php ├── class.smtp.php ├── get_oauth_token.php ├── language │ ├── class.phpmailer.php │ ├── class.smtp.php │ ├── phpmailer.lang-am.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-rs.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php ├── send.php └── src │ ├── Exception.php │ ├── OAuth.php │ ├── PHPMailer.php │ ├── POP3.php │ └── SMTP.php ├── README.md ├── SDK ├── 7ypay.config.php ├── 7ypay.php ├── index.php ├── js │ ├── bootstrap.min.js │ └── jquery.min.js ├── lib │ ├── 7ypay_core.function.php │ ├── 7ypay_md5.function.php │ ├── 7ypay_notify.class.php │ └── 7ypay_submit.class.php ├── notify_url.php └── return_url.php ├── aliyun-dysms-php-sdk └── api_sdk │ ├── LICENSE │ ├── SmsSend.php │ ├── composer.json │ ├── composer.lock │ ├── lib │ ├── Api │ │ └── Sms │ │ │ └── Request │ │ │ └── V20170525 │ │ │ ├── QueryInterSmsIsoInfoRequest.php │ │ │ ├── QuerySendDetailsRequest.php │ │ │ ├── SendInterSmsRequest.php │ │ │ └── SendSmsRequest.php │ └── Core │ │ ├── AcsRequest.php │ │ ├── AcsResponse.php │ │ ├── Auth │ │ ├── Credential.php │ │ ├── ISigner.php │ │ ├── ShaHmac1Signer.php │ │ └── ShaHmac256Signer.php │ │ ├── Config.php │ │ ├── DefaultAcsClient.php │ │ ├── Exception │ │ ├── ClientException.php │ │ └── ServerException.php │ │ ├── Http │ │ ├── HttpHelper.php │ │ └── HttpResponse.php │ │ ├── IAcsClient.php │ │ ├── Profile │ │ ├── DefaultProfile.php │ │ └── IClientProfile.php │ │ ├── Regions │ │ ├── Endpoint.php │ │ ├── EndpointConfig.php │ │ ├── EndpointProvider.php │ │ ├── ProductDomain.php │ │ └── endpoints.xml │ │ ├── RoaAcsRequest.php │ │ └── RpcAcsRequest.php │ ├── phpunit.integration.xml │ ├── phpunit.xml │ ├── tests │ ├── Core │ │ ├── Auth │ │ │ ├── CredentialTest.php │ │ │ ├── ShaHmac1SignerTest.php │ │ │ └── ShaHmac256SignerTest.php │ │ ├── DefaultAcsClientTest.php │ │ ├── Ecs │ │ │ └── Request │ │ │ │ └── DescribeRegionsRequest.php │ │ ├── Http │ │ │ └── HttpHelperTest.php │ │ ├── Profile │ │ │ └── DefaultProfileTest.php │ │ └── Regions │ │ │ └── EndpointProviderTest.php │ └── bootstrap.php │ └── vendor │ ├── autoload.php │ ├── bin │ └── phpunit │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ ├── doctrine │ └── instantiator │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.install.sh │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpmd.xml.dist │ │ ├── phpunit.xml.dist │ │ ├── src │ │ └── Doctrine │ │ │ └── Instantiator │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ │ │ ├── Instantiator.php │ │ │ └── InstantiatorInterface.php │ │ └── tests │ │ └── DoctrineTest │ │ ├── InstantiatorPerformance │ │ └── InstantiatorPerformanceEvent.php │ │ ├── InstantiatorTest │ │ ├── Exception │ │ │ ├── InvalidArgumentExceptionTest.php │ │ │ └── UnexpectedValueExceptionTest.php │ │ └── InstantiatorTest.php │ │ └── InstantiatorTestAsset │ │ ├── AbstractClassAsset.php │ │ ├── ArrayObjectAsset.php │ │ ├── ExceptionAsset.php │ │ ├── FinalExceptionAsset.php │ │ ├── PharAsset.php │ │ ├── PharExceptionAsset.php │ │ ├── SerializableArrayObjectAsset.php │ │ ├── SimpleSerializableAsset.php │ │ ├── SimpleTraitAsset.php │ │ ├── UnCloneableAsset.php │ │ ├── UnserializeExceptionArrayObjectAsset.php │ │ ├── WakeUpNoticesAsset.php │ │ └── XMLReaderAsset.php │ ├── phpdocumentor │ ├── reflection-common │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── Element.php │ │ │ ├── File.php │ │ │ ├── Fqsen.php │ │ │ ├── Location.php │ │ │ ├── Project.php │ │ │ └── ProjectFactory.php │ │ └── tests │ │ │ ├── common │ │ │ └── bootstrap.php │ │ │ └── unit │ │ │ └── FqsenTest.php │ ├── reflection-docblock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── DocBlock.php │ │ │ ├── DocBlock │ │ │ ├── Description.php │ │ │ ├── DescriptionFactory.php │ │ │ ├── ExampleFinder.php │ │ │ ├── Serializer.php │ │ │ ├── StandardTagFactory.php │ │ │ ├── Tag.php │ │ │ ├── TagFactory.php │ │ │ └── Tags │ │ │ │ ├── Author.php │ │ │ │ ├── BaseTag.php │ │ │ │ ├── Covers.php │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Example.php │ │ │ │ ├── Factory │ │ │ │ ├── StaticMethod.php │ │ │ │ └── Strategy.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Formatter │ │ │ │ ├── AlignFormatter.php │ │ │ │ └── PassthroughFormatter.php │ │ │ │ ├── Generic.php │ │ │ │ ├── Link.php │ │ │ │ ├── Method.php │ │ │ │ ├── Param.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyRead.php │ │ │ │ ├── PropertyWrite.php │ │ │ │ ├── Return_.php │ │ │ │ ├── See.php │ │ │ │ ├── Since.php │ │ │ │ ├── Source.php │ │ │ │ ├── Throws.php │ │ │ │ ├── Uses.php │ │ │ │ ├── Var_.php │ │ │ │ └── Version.php │ │ │ ├── DocBlockFactory.php │ │ │ └── DocBlockFactoryInterface.php │ └── type-resolver │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── FqsenResolver.php │ │ ├── Type.php │ │ ├── TypeResolver.php │ │ └── Types │ │ ├── Array_.php │ │ ├── Boolean.php │ │ ├── Callable_.php │ │ ├── Compound.php │ │ ├── Context.php │ │ ├── ContextFactory.php │ │ ├── Float_.php │ │ ├── Integer.php │ │ ├── Iterable_.php │ │ ├── Mixed_.php │ │ ├── Null_.php │ │ ├── Nullable.php │ │ ├── Object_.php │ │ ├── Parent_.php │ │ ├── Resource_.php │ │ ├── Scalar.php │ │ ├── Self_.php │ │ ├── Static_.php │ │ ├── String_.php │ │ ├── This.php │ │ └── Void_.php │ ├── phpspec │ └── prophecy │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGES.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── fixtures │ │ ├── EmptyClass.php │ │ ├── EmptyInterface.php │ │ ├── FinalClass.php │ │ ├── ModifierInterface.php │ │ ├── Named.php │ │ ├── OptionalDepsClass.php │ │ ├── SpecialMethods.php │ │ ├── WithArguments.php │ │ ├── WithCallableArgument.php │ │ ├── WithFinalMethod.php │ │ ├── WithFinalVirtuallyPrivateMethod.php │ │ ├── WithProtectedAbstractMethod.php │ │ ├── WithReferences.php │ │ ├── WithReturnTypehints.php │ │ ├── WithStaticMethod.php │ │ ├── WithTypehintedVariadicArgument.php │ │ ├── WithVariadicArgument.php │ │ └── WithVirtuallyPrivateMethod.php │ │ ├── phpunit.xml.dist │ │ ├── spec │ │ └── Prophecy │ │ │ ├── Argument │ │ │ ├── ArgumentsWildcardSpec.php │ │ │ └── Token │ │ │ │ ├── AnyValueTokenSpec.php │ │ │ │ ├── AnyValuesTokenSpec.php │ │ │ │ ├── ApproximateValueTokenSpec.php │ │ │ │ ├── ArrayCountTokenSpec.php │ │ │ │ ├── ArrayEntryTokenSpec.php │ │ │ │ ├── ArrayEveryEntryTokenSpec.php │ │ │ │ ├── CallbackTokenSpec.php │ │ │ │ ├── ExactValueTokenSpec.php │ │ │ │ ├── IdenticalValueTokenSpec.php │ │ │ │ ├── LogicalAndTokenSpec.php │ │ │ │ ├── LogicalNotTokenSpec.php │ │ │ │ ├── ObjectStateTokenSpec.php │ │ │ │ ├── StringContainsTokenSpec.php │ │ │ │ └── TypeTokenSpec.php │ │ │ ├── ArgumentSpec.php │ │ │ ├── Call │ │ │ ├── CallCenterSpec.php │ │ │ └── CallSpec.php │ │ │ ├── Comparator │ │ │ ├── ClosureComparatorSpec.php │ │ │ ├── FactorySpec.php │ │ │ └── ProphecyComparatorSpec.php │ │ │ ├── Doubler │ │ │ ├── ClassPatch │ │ │ │ ├── DisableConstructorPatchSpec.php │ │ │ │ ├── HhvmExceptionPatchSpec.php │ │ │ │ ├── KeywordPatchSpec.php │ │ │ │ ├── MagicCallPatchSpec.php │ │ │ │ ├── ProphecySubjectPatchSpec.php │ │ │ │ ├── ReflectionClassNewInstancePatchSpec.php │ │ │ │ ├── SplFileInfoPatchSpec.php │ │ │ │ └── TraversablePatchSpec.php │ │ │ ├── DoublerSpec.php │ │ │ ├── Generator │ │ │ │ ├── ClassCodeGeneratorSpec.php │ │ │ │ ├── ClassCreatorSpec.php │ │ │ │ └── Node │ │ │ │ │ ├── ArgumentNodeSpec.php │ │ │ │ │ ├── ClassNodeSpec.php │ │ │ │ │ └── MethodNodeSpec.php │ │ │ ├── LazyDoubleSpec.php │ │ │ └── NameGeneratorSpec.php │ │ │ ├── Exception │ │ │ ├── Call │ │ │ │ └── UnexpectedCallExceptionSpec.php │ │ │ ├── Doubler │ │ │ │ ├── ClassCreatorExceptionSpec.php │ │ │ │ ├── ClassMirrorExceptionSpec.php │ │ │ │ ├── ClassNotFoundExceptionSpec.php │ │ │ │ ├── DoubleExceptionSpec.php │ │ │ │ ├── InterfaceNotFoundExceptionSpec.php │ │ │ │ ├── MethodNotExtendableExceptionSpec.php │ │ │ │ └── MethodNotFoundExceptionSpec.php │ │ │ ├── Prediction │ │ │ │ ├── AggregateExceptionSpec.php │ │ │ │ ├── NoCallsExceptionSpec.php │ │ │ │ ├── UnexpectedCallsCountExceptionSpec.php │ │ │ │ └── UnexpectedCallsExceptionSpec.php │ │ │ └── Prophecy │ │ │ │ ├── MethodProphecyExceptionSpec.php │ │ │ │ └── ObjectProphecyExceptionSpec.php │ │ │ ├── Prediction │ │ │ ├── CallPredictionSpec.php │ │ │ ├── CallTimesPredictionSpec.php │ │ │ ├── CallbackPredictionSpec.php │ │ │ └── NoCallsPredictionSpec.php │ │ │ ├── Promise │ │ │ ├── CallbackPromiseSpec.php │ │ │ ├── ReturnArgumentPromiseSpec.php │ │ │ ├── ReturnPromiseSpec.php │ │ │ └── ThrowPromiseSpec.php │ │ │ ├── Prophecy │ │ │ ├── MethodProphecySpec.php │ │ │ ├── ObjectProphecySpec.php │ │ │ └── RevealerSpec.php │ │ │ ├── ProphetSpec.php │ │ │ └── Util │ │ │ └── StringUtilSpec.php │ │ ├── src │ │ └── Prophecy │ │ │ ├── Argument.php │ │ │ ├── Argument │ │ │ ├── ArgumentsWildcard.php │ │ │ └── Token │ │ │ │ ├── AnyValueToken.php │ │ │ │ ├── AnyValuesToken.php │ │ │ │ ├── ApproximateValueToken.php │ │ │ │ ├── ArrayCountToken.php │ │ │ │ ├── ArrayEntryToken.php │ │ │ │ ├── ArrayEveryEntryToken.php │ │ │ │ ├── CallbackToken.php │ │ │ │ ├── ExactValueToken.php │ │ │ │ ├── IdenticalValueToken.php │ │ │ │ ├── LogicalAndToken.php │ │ │ │ ├── LogicalNotToken.php │ │ │ │ ├── ObjectStateToken.php │ │ │ │ ├── StringContainsToken.php │ │ │ │ ├── TokenInterface.php │ │ │ │ └── TypeToken.php │ │ │ ├── Call │ │ │ ├── Call.php │ │ │ └── CallCenter.php │ │ │ ├── Comparator │ │ │ ├── ClosureComparator.php │ │ │ ├── Factory.php │ │ │ └── ProphecyComparator.php │ │ │ ├── Doubler │ │ │ ├── CachedDoubler.php │ │ │ ├── ClassPatch │ │ │ │ ├── ClassPatchInterface.php │ │ │ │ ├── DisableConstructorPatch.php │ │ │ │ ├── HhvmExceptionPatch.php │ │ │ │ ├── KeywordPatch.php │ │ │ │ ├── MagicCallPatch.php │ │ │ │ ├── ProphecySubjectPatch.php │ │ │ │ ├── ReflectionClassNewInstancePatch.php │ │ │ │ ├── SplFileInfoPatch.php │ │ │ │ └── TraversablePatch.php │ │ │ ├── DoubleInterface.php │ │ │ ├── Doubler.php │ │ │ ├── Generator │ │ │ │ ├── ClassCodeGenerator.php │ │ │ │ ├── ClassCreator.php │ │ │ │ ├── ClassMirror.php │ │ │ │ ├── Node │ │ │ │ │ ├── ArgumentNode.php │ │ │ │ │ ├── ClassNode.php │ │ │ │ │ └── MethodNode.php │ │ │ │ └── ReflectionInterface.php │ │ │ ├── LazyDouble.php │ │ │ └── NameGenerator.php │ │ │ ├── Exception │ │ │ ├── Call │ │ │ │ └── UnexpectedCallException.php │ │ │ ├── Doubler │ │ │ │ ├── ClassCreatorException.php │ │ │ │ ├── ClassMirrorException.php │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ ├── DoubleException.php │ │ │ │ ├── DoublerException.php │ │ │ │ ├── InterfaceNotFoundException.php │ │ │ │ ├── MethodNotExtendableException.php │ │ │ │ ├── MethodNotFoundException.php │ │ │ │ └── ReturnByReferenceException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── Prediction │ │ │ │ ├── AggregateException.php │ │ │ │ ├── FailedPredictionException.php │ │ │ │ ├── NoCallsException.php │ │ │ │ ├── PredictionException.php │ │ │ │ ├── UnexpectedCallsCountException.php │ │ │ │ └── UnexpectedCallsException.php │ │ │ └── Prophecy │ │ │ │ ├── MethodProphecyException.php │ │ │ │ ├── ObjectProphecyException.php │ │ │ │ └── ProphecyException.php │ │ │ ├── PhpDocumentor │ │ │ ├── ClassAndInterfaceTagRetriever.php │ │ │ ├── ClassTagRetriever.php │ │ │ ├── LegacyClassTagRetriever.php │ │ │ └── MethodTagRetrieverInterface.php │ │ │ ├── Prediction │ │ │ ├── CallPrediction.php │ │ │ ├── CallTimesPrediction.php │ │ │ ├── CallbackPrediction.php │ │ │ ├── NoCallsPrediction.php │ │ │ └── PredictionInterface.php │ │ │ ├── Promise │ │ │ ├── CallbackPromise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── ReturnArgumentPromise.php │ │ │ ├── ReturnPromise.php │ │ │ └── ThrowPromise.php │ │ │ ├── Prophecy │ │ │ ├── MethodProphecy.php │ │ │ ├── ObjectProphecy.php │ │ │ ├── ProphecyInterface.php │ │ │ ├── ProphecySubjectInterface.php │ │ │ ├── Revealer.php │ │ │ └── RevealerInterface.php │ │ │ ├── Prophet.php │ │ │ └── Util │ │ │ ├── ExportUtil.php │ │ │ └── StringUtil.php │ │ └── tests │ │ └── Doubler │ │ └── Generator │ │ └── ClassMirrorTest.php │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog-2.2.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── scripts │ │ │ ├── auto_append.php │ │ │ └── auto_prepend.php │ │ ├── src │ │ │ ├── CodeCoverage.php │ │ │ └── CodeCoverage │ │ │ │ ├── Driver.php │ │ │ │ ├── Driver │ │ │ │ ├── HHVM.php │ │ │ │ ├── PHPDBG.php │ │ │ │ └── Xdebug.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ └── UnintentionallyCoveredCode.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HTML.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ ├── holder.min.js │ │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ │ └── respond.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── Node.php │ │ │ │ ├── Node │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Iterator.php │ │ │ │ ├── PHP.php │ │ │ │ ├── Text.php │ │ │ │ ├── XML.php │ │ │ │ └── XML │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── File │ │ │ │ │ ├── Coverage.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Report.php │ │ │ │ │ └── Unit.php │ │ │ │ │ ├── Node.php │ │ │ │ │ ├── Project.php │ │ │ │ │ ├── Tests.php │ │ │ │ │ └── Totals.php │ │ │ │ ├── Util.php │ │ │ │ └── Util │ │ │ │ └── InvalidArgumentHelper.php │ │ └── tests │ │ │ ├── PHP │ │ │ ├── CodeCoverage │ │ │ │ ├── FilterTest.php │ │ │ │ ├── Report │ │ │ │ │ ├── CloverTest.php │ │ │ │ │ └── FactoryTest.php │ │ │ │ └── UtilTest.php │ │ │ └── CodeCoverageTest.php │ │ │ ├── TestCase.php │ │ │ └── _files │ │ │ ├── BankAccount-clover.xml │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── CoverageClassExtendedTest.php │ │ │ ├── CoverageClassTest.php │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ ├── CoverageFunctionTest.php │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ ├── CoverageMethodTest.php │ │ │ ├── CoverageNoneTest.php │ │ │ ├── CoverageNotPrivateTest.php │ │ │ ├── CoverageNotProtectedTest.php │ │ │ ├── CoverageNotPublicTest.php │ │ │ ├── CoverageNothingTest.php │ │ │ ├── CoveragePrivateTest.php │ │ │ ├── CoverageProtectedTest.php │ │ │ ├── CoveragePublicTest.php │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ ├── CoveredClass.php │ │ │ ├── CoveredFunction.php │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ ├── NamespaceCoverageCoversClassTest.php │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ ├── NamespaceCoveredClass.php │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ ├── class-with-anonymous-function-clover.xml │ │ │ ├── ignored-lines-clover.xml │ │ │ ├── source_with_class_and_anonymous_function.php │ │ │ ├── source_with_ignore.php │ │ │ ├── source_with_namespace.php │ │ │ ├── source_with_oneline_annotations.php │ │ │ ├── source_without_ignore.php │ │ │ └── source_without_namespace.php │ ├── php-file-iterator │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Template.php │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Timer.php │ │ └── tests │ │ │ └── TimerTest.php │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── phpunit.xml │ │ ├── composer.json │ │ ├── src │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ └── CachingFactory.php │ │ └── tests │ │ │ ├── Token │ │ │ ├── ClassTest.php │ │ │ ├── ClosureTest.php │ │ │ ├── FunctionTest.php │ │ │ ├── IncludeTest.php │ │ │ ├── InterfaceTest.php │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ ├── _fixture │ │ │ ├── classExtendsNamespacedClass.php │ │ │ ├── classInNamespace.php │ │ │ ├── classInScopedNamespace.php │ │ │ ├── classUsesNamespacedFunction.php │ │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ │ ├── closure.php │ │ │ ├── issue19.php │ │ │ ├── issue30.php │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ ├── source.php │ │ │ ├── source2.php │ │ │ ├── source3.php │ │ │ ├── source4.php │ │ │ └── source5.php │ │ │ └── bootstrap.php │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_class_method.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_method.tpl.dist │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ ├── proxied_method.tpl.dist │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ └── wsdl_method.tpl.dist │ │ │ │ ├── Invocation.php │ │ │ │ ├── Invocation │ │ │ │ ├── Object.php │ │ │ │ └── Static.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Invokable.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── Matcher │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ ├── Invocation.php │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── InvokedRecorder.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── StatelessInvocation.php │ │ │ │ ├── MockBuilder.php │ │ │ │ ├── MockObject.php │ │ │ │ ├── Stub.php │ │ │ │ ├── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── MatcherCollection.php │ │ │ │ ├── Return.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ └── ReturnValueMap.php │ │ │ │ └── Verifiable.php │ │ └── tests │ │ │ ├── GeneratorTest.php │ │ │ ├── MockBuilderTest.php │ │ │ ├── MockObject │ │ │ ├── 232.phpt │ │ │ ├── Invocation │ │ │ │ ├── ObjectTest.php │ │ │ │ └── StaticTest.php │ │ │ ├── Matcher │ │ │ │ └── ConsecutiveParametersTest.php │ │ │ ├── abstract_class.phpt │ │ │ ├── class.phpt │ │ │ ├── class_call_parent_clone.phpt │ │ │ ├── class_call_parent_constructor.phpt │ │ │ ├── class_dont_call_parent_clone.phpt │ │ │ ├── class_dont_call_parent_constructor.phpt │ │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ ├── class_partial.phpt │ │ │ ├── class_with_method_named_method.phpt │ │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ │ ├── interface.phpt │ │ │ ├── invocation_object_clone_object.phpt │ │ │ ├── namespaced_class.phpt │ │ │ ├── namespaced_class_call_parent_clone.phpt │ │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ ├── namespaced_class_partial.phpt │ │ │ ├── namespaced_interface.phpt │ │ │ ├── nonexistent_class.phpt │ │ │ ├── nonexistent_class_with_namespace.phpt │ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ │ ├── proxy.phpt │ │ │ ├── scalar_type_declarations.phpt │ │ │ ├── wsdl_class.phpt │ │ │ ├── wsdl_class_namespace.phpt │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── MockObjectTest.php │ │ │ ├── ProxyObjectTest.php │ │ │ ├── _fixture │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── AbstractTrait.php │ │ │ ├── AnInterface.php │ │ │ ├── AnotherInterface.php │ │ │ ├── Bar.php │ │ │ ├── ClassThatImplementsSerializable.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── Foo.php │ │ │ ├── FunctionCallback.php │ │ │ ├── GoogleSearch.wsdl │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── MethodCallback.php │ │ │ ├── MethodCallbackByReference.php │ │ │ ├── MockTestInterface.php │ │ │ ├── Mockable.php │ │ │ ├── PartialMockTestClass.php │ │ │ ├── SingletonClass.php │ │ │ ├── SomeClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ └── TraversableMockTestInterface.php │ │ │ └── bootstrap.php │ └── phpunit │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog-4.0.md │ │ ├── ChangeLog-4.1.md │ │ ├── ChangeLog-4.2.md │ │ ├── ChangeLog-4.3.md │ │ ├── ChangeLog-4.4.md │ │ ├── ChangeLog-4.5.md │ │ ├── ChangeLog-4.6.md │ │ ├── ChangeLog-4.7.md │ │ ├── ChangeLog-4.8.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit │ │ ├── phpunit.xml │ │ ├── phpunit.xsd │ │ ├── src │ │ ├── Exception.php │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── ForwardCompatibility │ │ │ ├── Assert.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── BaseTestListener.php │ │ │ ├── Test.php │ │ │ ├── TestCase.php │ │ │ ├── TestListener.php │ │ │ └── TestSuite.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ └── Functions.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── BaseTestListener.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── Constraint.php │ │ │ ├── Constraint │ │ │ │ ├── And.php │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── ArraySubset.php │ │ │ │ ├── Attribute.php │ │ │ │ ├── Callback.php │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ ├── Composite.php │ │ │ │ ├── Count.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessage.php │ │ │ │ ├── ExceptionMessageRegExp.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsAnything.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsFalse.php │ │ │ │ ├── IsIdentical.php │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsJson.php │ │ │ │ ├── IsNull.php │ │ │ │ ├── IsTrue.php │ │ │ │ ├── IsType.php │ │ │ │ ├── JsonMatches.php │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProvider.php │ │ │ │ ├── LessThan.php │ │ │ │ ├── Not.php │ │ │ │ ├── ObjectHasAttribute.php │ │ │ │ ├── Or.php │ │ │ │ ├── PCREMatch.php │ │ │ │ ├── SameSize.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringMatches.php │ │ │ │ ├── StringStartsWith.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsOnly.php │ │ │ │ └── Xor.php │ │ │ ├── Error.php │ │ │ ├── Error │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Notice.php │ │ │ │ └── Warning.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionWrapper.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── IncompleteTest.php │ │ │ ├── IncompleteTestCase.php │ │ │ ├── IncompleteTestError.php │ │ │ ├── InvalidCoversTargetError.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── OutputError.php │ │ │ ├── RiskyTest.php │ │ │ ├── RiskyTestError.php │ │ │ ├── SelfDescribing.php │ │ │ ├── SkippedTest.php │ │ │ ├── SkippedTestCase.php │ │ │ ├── SkippedTestError.php │ │ │ ├── SkippedTestSuiteError.php │ │ │ ├── SyntheticError.php │ │ │ ├── Test.php │ │ │ ├── TestCase.php │ │ │ ├── TestFailure.php │ │ │ ├── TestListener.php │ │ │ ├── TestResult.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuite │ │ │ │ └── DataProvider.php │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ └── Warning.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── Exception.php │ │ │ ├── Filter │ │ │ │ ├── Factory.php │ │ │ │ ├── Group.php │ │ │ │ ├── Group │ │ │ │ │ ├── Exclude.php │ │ │ │ │ └── Include.php │ │ │ │ └── Test.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Blacklist.php │ │ │ ├── Configuration.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Fileloader.php │ │ │ ├── Filesystem.php │ │ │ ├── Filter.php │ │ │ ├── Getopt.php │ │ │ ├── GlobalState.php │ │ │ ├── InvalidArgumentHelper.php │ │ │ ├── Log │ │ │ ├── JSON.php │ │ │ ├── JUnit.php │ │ │ └── TAP.php │ │ │ ├── PHP.php │ │ │ ├── PHP │ │ │ ├── Default.php │ │ │ ├── Template │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── Windows.php │ │ │ └── eval-stdin.php │ │ │ ├── Printer.php │ │ │ ├── Regex.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ └── Text.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ └── tests │ │ ├── Extensions │ │ ├── PhptTestCaseTest.php │ │ └── RepeatedTestTest.php │ │ ├── Fail │ │ └── fail.phpt │ │ ├── Framework │ │ ├── AssertTest.php │ │ ├── BaseTestListenerTest.php │ │ ├── Constraint │ │ │ ├── CountTest.php │ │ │ ├── ExceptionMessageRegExpTest.php │ │ │ ├── ExceptionMessageTest.php │ │ │ ├── JsonMatches │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ └── JsonMatchesTest.php │ │ ├── ConstraintTest.php │ │ ├── SuiteTest.php │ │ ├── TestCaseTest.php │ │ ├── TestFailureTest.php │ │ ├── TestImplementorTest.php │ │ └── TestListenerTest.php │ │ ├── Regression │ │ ├── GitHub │ │ │ ├── 74 │ │ │ │ ├── Issue74Test.php │ │ │ │ └── NewException.php │ │ │ ├── 244 │ │ │ │ └── Issue244Test.php │ │ │ ├── 322 │ │ │ │ ├── Issue322Test.php │ │ │ │ └── phpunit322.xml │ │ │ ├── 433 │ │ │ │ └── Issue433Test.php │ │ │ ├── 445 │ │ │ │ └── Issue445Test.php │ │ │ ├── 498 │ │ │ │ └── Issue498Test.php │ │ │ ├── 503 │ │ │ │ └── Issue503Test.php │ │ │ ├── 581 │ │ │ │ └── Issue581Test.php │ │ │ ├── 765 │ │ │ │ └── Issue765Test.php │ │ │ ├── 797 │ │ │ │ ├── Issue797Test.php │ │ │ │ └── bootstrap797.php │ │ │ ├── 873 │ │ │ │ └── Issue873Test.php │ │ │ ├── 1149 │ │ │ │ └── Issue1149Test.php │ │ │ ├── 1216 │ │ │ │ ├── Issue1216Test.php │ │ │ │ ├── bootstrap1216.php │ │ │ │ └── phpunit1216.xml │ │ │ ├── 1265 │ │ │ │ ├── Issue1265Test.php │ │ │ │ └── phpunit1265.xml │ │ │ ├── 1330 │ │ │ │ ├── Issue1330Test.php │ │ │ │ └── phpunit1330.xml │ │ │ ├── 1335 │ │ │ │ ├── Issue1335Test.php │ │ │ │ └── bootstrap1335.php │ │ │ ├── 1337 │ │ │ │ └── Issue1337Test.php │ │ │ ├── 1348 │ │ │ │ └── Issue1348Test.php │ │ │ ├── 1351 │ │ │ │ ├── ChildProcessClass1351.php │ │ │ │ └── Issue1351Test.php │ │ │ ├── 1374 │ │ │ │ └── Issue1374Test.php │ │ │ ├── 1437 │ │ │ │ └── Issue1437Test.php │ │ │ ├── 1468 │ │ │ │ └── Issue1468Test.php │ │ │ ├── 1471 │ │ │ │ └── Issue1471Test.php │ │ │ ├── 1472 │ │ │ │ └── Issue1472Test.php │ │ │ ├── 1570 │ │ │ │ └── Issue1570Test.php │ │ │ ├── 2158 │ │ │ │ ├── Issue2158Test.php │ │ │ │ └── constant.inc │ │ │ ├── 1149.phpt │ │ │ ├── 1216.phpt │ │ │ ├── 1265.phpt │ │ │ ├── 1330.phpt │ │ │ ├── 1335.phpt │ │ │ ├── 1337.phpt │ │ │ ├── 1348.phpt │ │ │ ├── 1351.phpt │ │ │ ├── 1374.phpt │ │ │ ├── 1437.phpt │ │ │ ├── 1468.phpt │ │ │ ├── 1471.phpt │ │ │ ├── 1472.phpt │ │ │ ├── 1570.phpt │ │ │ ├── 2158.phpt │ │ │ ├── 244.phpt │ │ │ ├── 322.phpt │ │ │ ├── 433.phpt │ │ │ ├── 445.phpt │ │ │ ├── 498.phpt │ │ │ ├── 503.phpt │ │ │ ├── 581.phpt │ │ │ ├── 74.phpt │ │ │ ├── 765.phpt │ │ │ ├── 797.phpt │ │ │ ├── 863.phpt │ │ │ ├── 873-php5.phpt │ │ │ └── 873-php7.phpt │ │ └── Trac │ │ │ ├── 523 │ │ │ └── Issue523Test.php │ │ │ ├── 578 │ │ │ └── Issue578Test.php │ │ │ ├── 684 │ │ │ └── Issue684Test.php │ │ │ ├── 783 │ │ │ ├── ChildSuite.php │ │ │ ├── OneTest.php │ │ │ ├── ParentSuite.php │ │ │ └── TwoTest.php │ │ │ ├── 1021 │ │ │ └── Issue1021Test.php │ │ │ ├── 1021.phpt │ │ │ ├── 523.phpt │ │ │ ├── 578.phpt │ │ │ ├── 684.phpt │ │ │ └── 783.phpt │ │ ├── Runner │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ ├── abstract-test-class.phpt │ │ ├── colors-always.phpt │ │ ├── concrete-test-class.phpt │ │ ├── custom-printer-debug.phpt │ │ ├── custom-printer-verbose.phpt │ │ ├── dataprovider-debug.phpt │ │ ├── dataprovider-log-xml-isolation.phpt │ │ ├── dataprovider-log-xml.phpt │ │ ├── dataprovider-testdox.phpt │ │ ├── debug.phpt │ │ ├── default-isolation.phpt │ │ ├── default.phpt │ │ ├── dependencies-isolation.phpt │ │ ├── dependencies.phpt │ │ ├── dependencies2-isolation.phpt │ │ ├── dependencies2.phpt │ │ ├── dependencies3-isolation.phpt │ │ ├── dependencies3.phpt │ │ ├── empty-testcase.phpt │ │ ├── exception-stack.phpt │ │ ├── exclude-group-isolation.phpt │ │ ├── exclude-group.phpt │ │ ├── failure-isolation.phpt │ │ ├── failure.phpt │ │ ├── fatal-isolation.phpt │ │ ├── filter-class-isolation.phpt │ │ ├── filter-class.phpt │ │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ │ ├── filter-dataprovider-by-classname-and-range.phpt │ │ ├── filter-dataprovider-by-number-isolation.phpt │ │ ├── filter-dataprovider-by-number.phpt │ │ ├── filter-dataprovider-by-only-range-isolation.phpt │ │ ├── filter-dataprovider-by-only-range.phpt │ │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ │ ├── filter-dataprovider-by-only-regexp.phpt │ │ ├── filter-dataprovider-by-only-string-isolation.phpt │ │ ├── filter-dataprovider-by-only-string.phpt │ │ ├── filter-dataprovider-by-range-isolation.phpt │ │ ├── filter-dataprovider-by-range.phpt │ │ ├── filter-dataprovider-by-regexp-isolation.phpt │ │ ├── filter-dataprovider-by-regexp.phpt │ │ ├── filter-dataprovider-by-string-isolation.phpt │ │ ├── filter-dataprovider-by-string.phpt │ │ ├── filter-method-case-insensitive.phpt │ │ ├── filter-method-case-sensitive-no-result.phpt │ │ ├── filter-method-isolation.phpt │ │ ├── filter-method.phpt │ │ ├── filter-no-results.phpt │ │ ├── group-isolation.phpt │ │ ├── group.phpt │ │ ├── help.phpt │ │ ├── help2.phpt │ │ ├── ini-isolation.phpt │ │ ├── list-groups.phpt │ │ ├── log-json-no-pretty-print.phpt │ │ ├── log-json-post-66021.phpt │ │ ├── log-json-pre-66021.phpt │ │ ├── log-junit.phpt │ │ ├── log-tap.phpt │ │ ├── options-after-arguments.phpt │ │ ├── output-isolation.phpt │ │ ├── repeat.phpt │ │ ├── report-useless-tests-incomplete.phpt │ │ ├── report-useless-tests-isolation.phpt │ │ ├── report-useless-tests.phpt │ │ ├── tap.phpt │ │ ├── test-suffix-multiple.phpt │ │ ├── test-suffix-single.phpt │ │ ├── testdox-html.phpt │ │ ├── testdox-text.phpt │ │ └── testdox.phpt │ │ ├── Util │ │ ├── ConfigurationTest.php │ │ ├── GetoptTest.php │ │ ├── GlobalStateTest.php │ │ ├── RegexTest.php │ │ ├── TestDox │ │ │ └── NamePrettifierTest.php │ │ ├── TestTest.php │ │ └── XMLTest.php │ │ ├── _files │ │ ├── AbstractTest.php │ │ ├── Author.php │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── BankAccountTest.test.php │ │ ├── BaseTestListenerSample.php │ │ ├── BeforeAndAfterTest.php │ │ ├── BeforeClassAndAfterClassTest.php │ │ ├── Book.php │ │ ├── Calculator.php │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ ├── ClassWithNonPublicAttributes.php │ │ ├── ClassWithScalarTypeDeclarations.php │ │ ├── ClassWithToString.php │ │ ├── ConcreteTest.my.php │ │ ├── ConcreteTest.php │ │ ├── CoverageClassExtendedTest.php │ │ ├── CoverageClassTest.php │ │ ├── CoverageFunctionParenthesesTest.php │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ ├── CoverageFunctionTest.php │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ ├── CoverageMethodParenthesesTest.php │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ ├── CoverageMethodTest.php │ │ ├── CoverageNamespacedFunctionTest.php │ │ ├── CoverageNoneTest.php │ │ ├── CoverageNotPrivateTest.php │ │ ├── CoverageNotProtectedTest.php │ │ ├── CoverageNotPublicTest.php │ │ ├── CoverageNothingTest.php │ │ ├── CoveragePrivateTest.php │ │ ├── CoverageProtectedTest.php │ │ ├── CoveragePublicTest.php │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ ├── CoveredClass.php │ │ ├── CoveredFunction.php │ │ ├── CustomPrinter.php │ │ ├── DataProviderDebugTest.php │ │ ├── DataProviderFilterTest.php │ │ ├── DataProviderIncompleteTest.php │ │ ├── DataProviderSkippedTest.php │ │ ├── DataProviderTest.php │ │ ├── DependencyFailureTest.php │ │ ├── DependencySuccessTest.php │ │ ├── DependencyTestSuite.php │ │ ├── DoubleTestCase.php │ │ ├── DummyException.php │ │ ├── EmptyTestCaseTest.php │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ ├── ExceptionInSetUpTest.php │ │ ├── ExceptionInTearDownTest.php │ │ ├── ExceptionInTest.php │ │ ├── ExceptionNamespaceTest.php │ │ ├── ExceptionStackTest.php │ │ ├── ExceptionTest.php │ │ ├── Failure.php │ │ ├── FailureTest.php │ │ ├── FatalTest.php │ │ ├── IncompleteTest.php │ │ ├── Inheritance │ │ │ ├── InheritanceA.php │ │ │ └── InheritanceB.php │ │ ├── InheritedTestCase.php │ │ ├── IniTest.php │ │ ├── IsolationTest.php │ │ ├── JsonData │ │ │ ├── arrayObject.json │ │ │ └── simpleObject.json │ │ ├── MockRunner.php │ │ ├── MultiDependencyTest.php │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ ├── NamespaceCoverageClassTest.php │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ ├── NamespaceCoverageCoversClassTest.php │ │ ├── NamespaceCoverageMethodTest.php │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ ├── NamespaceCoverageNotPublicTest.php │ │ ├── NamespaceCoveragePrivateTest.php │ │ ├── NamespaceCoverageProtectedTest.php │ │ ├── NamespaceCoveragePublicTest.php │ │ ├── NamespaceCoveredClass.php │ │ ├── NamespaceCoveredFunction.php │ │ ├── NoArgTestCaseTest.php │ │ ├── NoTestCaseClass.php │ │ ├── NoTestCases.php │ │ ├── NonStatic.php │ │ ├── NotExistingCoveredElementTest.php │ │ ├── NotPublicTestCase.php │ │ ├── NotVoidTestCase.php │ │ ├── NothingTest.php │ │ ├── OneTestCase.php │ │ ├── OutputTestCase.php │ │ ├── OverrideTestCase.php │ │ ├── RequirementsClassBeforeClassHookTest.php │ │ ├── RequirementsClassDocBlockTest.php │ │ ├── RequirementsTest.php │ │ ├── SampleArrayAccess.php │ │ ├── SampleClass.php │ │ ├── Singleton.php │ │ ├── StackTest.php │ │ ├── StatusTest.php │ │ ├── Struct.php │ │ ├── Success.php │ │ ├── TemplateMethodsTest.php │ │ ├── TestIncomplete.php │ │ ├── TestIterator.php │ │ ├── TestIterator2.php │ │ ├── TestSkipped.php │ │ ├── TestTestError.php │ │ ├── TestWithTest.php │ │ ├── ThrowExceptionTestCase.php │ │ ├── ThrowNoExceptionTestCase.php │ │ ├── WasRun.php │ │ ├── bar.xml │ │ ├── configuration.colors.empty.xml │ │ ├── configuration.colors.false.xml │ │ ├── configuration.colors.invalid.xml │ │ ├── configuration.colors.true.xml │ │ ├── configuration.custom-printer.xml │ │ ├── configuration.xml │ │ ├── configuration_empty.xml │ │ ├── configuration_xinclude.xml │ │ ├── expectedFileFormat.txt │ │ ├── foo.xml │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ ├── structureExpected.xml │ │ ├── structureIgnoreTextNodes.xml │ │ ├── structureIsSameButDataIsNot.xml │ │ ├── structureWrongNumberOfAttributes.xml │ │ └── structureWrongNumberOfNodes.xml │ │ └── bootstrap.php │ ├── sebastian │ ├── comparator │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── ArrayComparator.php │ │ │ ├── Comparator.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── DOMNodeComparator.php │ │ │ ├── DateTimeComparator.php │ │ │ ├── DoubleComparator.php │ │ │ ├── ExceptionComparator.php │ │ │ ├── Factory.php │ │ │ ├── MockObjectComparator.php │ │ │ ├── NumericComparator.php │ │ │ ├── ObjectComparator.php │ │ │ ├── ResourceComparator.php │ │ │ ├── ScalarComparator.php │ │ │ ├── SplObjectStorageComparator.php │ │ │ └── TypeComparator.php │ │ └── tests │ │ │ ├── ArrayComparatorTest.php │ │ │ ├── DOMNodeComparatorTest.php │ │ │ ├── DateTimeComparatorTest.php │ │ │ ├── DoubleComparatorTest.php │ │ │ ├── ExceptionComparatorTest.php │ │ │ ├── FactoryTest.php │ │ │ ├── MockObjectComparatorTest.php │ │ │ ├── NumericComparatorTest.php │ │ │ ├── ObjectComparatorTest.php │ │ │ ├── ResourceComparatorTest.php │ │ │ ├── ScalarComparatorTest.php │ │ │ ├── SplObjectStorageComparatorTest.php │ │ │ ├── TypeComparatorTest.php │ │ │ ├── _files │ │ │ ├── Author.php │ │ │ ├── Book.php │ │ │ ├── ClassWithToString.php │ │ │ ├── SampleClass.php │ │ │ ├── Struct.php │ │ │ ├── TestClass.php │ │ │ └── TestClassComparator.php │ │ │ ├── autoload.php │ │ │ └── bootstrap.php │ ├── diff │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Chunk.php │ │ │ ├── Diff.php │ │ │ ├── Differ.php │ │ │ ├── LCS │ │ │ │ ├── LongestCommonSubsequence.php │ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ │ ├── Line.php │ │ │ └── Parser.php │ │ └── tests │ │ │ ├── ChunkTest.php │ │ │ ├── DiffTest.php │ │ │ ├── DifferTest.php │ │ │ ├── LCS │ │ │ ├── LongestCommonSubsequenceTest.php │ │ │ ├── MemoryEfficientImplementationTest.php │ │ │ └── TimeEfficientImplementationTest.php │ │ │ ├── LineTest.php │ │ │ ├── ParserTest.php │ │ │ └── fixtures │ │ │ ├── patch.txt │ │ │ └── patch2.txt │ ├── environment │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Console.php │ │ │ └── Runtime.php │ │ └── tests │ │ │ ├── ConsoleTest.php │ │ │ └── RuntimeTest.php │ ├── exporter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ └── Exporter.php │ │ └── tests │ │ │ └── ExporterTest.php │ ├── global-state │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── Blacklist.php │ │ │ ├── CodeExporter.php │ │ │ ├── Exception.php │ │ │ ├── Restorer.php │ │ │ ├── RuntimeException.php │ │ │ └── Snapshot.php │ │ └── tests │ │ │ ├── BlacklistTest.php │ │ │ ├── SnapshotTest.php │ │ │ └── _fixture │ │ │ ├── BlacklistedChildClass.php │ │ │ ├── BlacklistedClass.php │ │ │ ├── BlacklistedImplementor.php │ │ │ ├── BlacklistedInterface.php │ │ │ ├── SnapshotClass.php │ │ │ ├── SnapshotDomDocument.php │ │ │ ├── SnapshotFunctions.php │ │ │ └── SnapshotTrait.php │ ├── recursion-context │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── tests │ │ │ └── ContextTest.php │ └── version │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Version.php │ ├── symfony │ └── yaml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Command │ │ └── LintCommand.php │ │ ├── Dumper.php │ │ ├── Escaper.php │ │ ├── Exception │ │ ├── DumpException.php │ │ ├── ExceptionInterface.php │ │ ├── ParseException.php │ │ └── RuntimeException.php │ │ ├── Inline.php │ │ ├── LICENSE │ │ ├── Parser.php │ │ ├── README.md │ │ ├── Tag │ │ └── TaggedValue.php │ │ ├── Tests │ │ ├── Command │ │ │ └── LintCommandTest.php │ │ ├── DumperTest.php │ │ ├── Fixtures │ │ │ ├── YtsAnchorAlias.yml │ │ │ ├── YtsBasicTests.yml │ │ │ ├── YtsBlockMapping.yml │ │ │ ├── YtsDocumentSeparator.yml │ │ │ ├── YtsErrorTests.yml │ │ │ ├── YtsFlowCollections.yml │ │ │ ├── YtsFoldedScalars.yml │ │ │ ├── YtsNullsAndEmpties.yml │ │ │ ├── YtsSpecificationExamples.yml │ │ │ ├── YtsTypeTransfers.yml │ │ │ ├── arrow.gif │ │ │ ├── booleanMappingKeys.yml │ │ │ ├── embededPhp.yml │ │ │ ├── escapedCharacters.yml │ │ │ ├── index.yml │ │ │ ├── legacyBooleanMappingKeys.yml │ │ │ ├── legacyNonStringKeys.yml │ │ │ ├── legacyNullMappingKey.yml │ │ │ ├── multiple_lines_as_literal_block.yml │ │ │ ├── nonStringKeys.yml │ │ │ ├── nullMappingKey.yml │ │ │ ├── numericMappingKeys.yml │ │ │ ├── sfComments.yml │ │ │ ├── sfCompact.yml │ │ │ ├── sfMergeKey.yml │ │ │ ├── sfObjects.yml │ │ │ ├── sfQuotes.yml │ │ │ ├── sfTests.yml │ │ │ └── unindentedCollections.yml │ │ ├── InlineTest.php │ │ ├── ParseExceptionTest.php │ │ ├── ParserTest.php │ │ └── YamlTest.php │ │ ├── Unescaper.php │ │ ├── Yaml.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ └── webmozart │ └── assert │ ├── .composer-auth.json │ ├── .gitignore │ ├── .styleci.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ └── Assert.php │ └── tests │ └── AssertTest.php ├── common ├── admin │ └── My_controller.class.php ├── adminmer │ └── My_controller.class.php ├── function.php └── home │ └── My_controller.class.php ├── configs ├── config.php └── database.php ├── controllers ├── admin │ ├── Adminc.class.php │ ├── Cachec.class.php │ ├── Catec.class.php │ ├── Comsuc.class.php │ ├── Goodsc.class.php │ ├── Indexc.class.php │ ├── Logc.class.php │ ├── Loginc.class.php │ ├── Orderc.class.php │ ├── Shopc.class.php │ ├── Systemc.class.php │ └── Userc.class.php ├── adminmer │ ├── Accountc.class.php │ ├── Catec.class.php │ ├── Goodsc.class.php │ ├── Indexc.class.php │ ├── Loginc.class.php │ ├── Orderc.class.php │ └── Shopc.class.php └── home │ ├── Aboutc.class.php │ ├── Accountc.class.php │ ├── Indexc.class.php │ ├── Loginc.class.php │ ├── Orderc.class.php │ ├── Shopc.class.php │ └── Userc.class.php ├── lib ├── configs │ ├── autoload.php │ ├── code.php │ ├── common.php │ ├── init.php │ └── routing.php ├── controllers │ ├── controabs.class.php │ └── controllerc.class.php ├── core │ ├── Cookie.php │ ├── Core.php │ └── Session.php ├── library │ ├── .string.func.php.swp │ ├── ActionRule.php │ ├── Log.php │ ├── MySql.php │ ├── MySqlD.php │ ├── MySqlPDOD.php │ ├── MySqliD.php │ ├── MySqliDX.php │ ├── Page.class.php │ ├── Rule.php │ ├── Upload.php │ ├── UploadM.php │ ├── UploadRule.php │ ├── Verify.php │ ├── fonts │ │ ├── LFAX.TTF │ │ ├── LFAXD.TTF │ │ ├── LFAXDI.TTF │ │ └── LFAXI.TTF │ ├── image.func.php │ └── string.func.php ├── models │ ├── modelabs.class.php │ └── models.class.php ├── smarty │ ├── lexer │ │ ├── smarty_internal_configfilelexer.plex │ │ ├── smarty_internal_configfileparser.y │ │ ├── smarty_internal_templatelexer.plex │ │ └── smarty_internal_templateparser.y │ ├── libs │ │ ├── Autoloader.php │ │ ├── Smarty.class.php │ │ ├── SmartyBC.class.php │ │ ├── debug.tpl │ │ ├── plugins │ │ │ ├── block.textformat.php │ │ │ ├── function.counter.php │ │ │ ├── function.cycle.php │ │ │ ├── function.fetch.php │ │ │ ├── function.html_checkboxes.php │ │ │ ├── function.html_image.php │ │ │ ├── function.html_options.php │ │ │ ├── function.html_radios.php │ │ │ ├── function.html_select_date.php │ │ │ ├── function.html_select_time.php │ │ │ ├── function.html_table.php │ │ │ ├── function.mailto.php │ │ │ ├── function.math.php │ │ │ ├── modifier.capitalize.php │ │ │ ├── modifier.date_format.php │ │ │ ├── modifier.debug_print_var.php │ │ │ ├── modifier.escape.php │ │ │ ├── modifier.regex_replace.php │ │ │ ├── modifier.replace.php │ │ │ ├── modifier.spacify.php │ │ │ ├── modifier.truncate.php │ │ │ ├── modifiercompiler.cat.php │ │ │ ├── modifiercompiler.count_characters.php │ │ │ ├── modifiercompiler.count_paragraphs.php │ │ │ ├── modifiercompiler.count_sentences.php │ │ │ ├── modifiercompiler.count_words.php │ │ │ ├── modifiercompiler.default.php │ │ │ ├── modifiercompiler.escape.php │ │ │ ├── modifiercompiler.from_charset.php │ │ │ ├── modifiercompiler.indent.php │ │ │ ├── modifiercompiler.lower.php │ │ │ ├── modifiercompiler.noprint.php │ │ │ ├── modifiercompiler.string_format.php │ │ │ ├── modifiercompiler.strip.php │ │ │ ├── modifiercompiler.strip_tags.php │ │ │ ├── modifiercompiler.to_charset.php │ │ │ ├── modifiercompiler.unescape.php │ │ │ ├── modifiercompiler.upper.php │ │ │ ├── modifiercompiler.wordwrap.php │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ ├── shared.escape_special_chars.php │ │ │ ├── shared.literal_compiler_param.php │ │ │ ├── shared.make_timestamp.php │ │ │ ├── shared.mb_str_replace.php │ │ │ ├── shared.mb_unicode.php │ │ │ ├── shared.mb_wordwrap.php │ │ │ └── variablefilter.htmlspecialchars.php │ │ └── sysplugins │ │ │ ├── smarty_cacheresource.php │ │ │ ├── smarty_cacheresource_custom.php │ │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ │ ├── smarty_data.php │ │ │ ├── smarty_internal_block.php │ │ │ ├── smarty_internal_cacheresource_file.php │ │ │ ├── smarty_internal_compile_append.php │ │ │ ├── smarty_internal_compile_assign.php │ │ │ ├── smarty_internal_compile_block.php │ │ │ ├── smarty_internal_compile_break.php │ │ │ ├── smarty_internal_compile_call.php │ │ │ ├── smarty_internal_compile_capture.php │ │ │ ├── smarty_internal_compile_config_load.php │ │ │ ├── smarty_internal_compile_continue.php │ │ │ ├── smarty_internal_compile_debug.php │ │ │ ├── smarty_internal_compile_eval.php │ │ │ ├── smarty_internal_compile_extends.php │ │ │ ├── smarty_internal_compile_for.php │ │ │ ├── smarty_internal_compile_foreach.php │ │ │ ├── smarty_internal_compile_function.php │ │ │ ├── smarty_internal_compile_if.php │ │ │ ├── smarty_internal_compile_include.php │ │ │ ├── smarty_internal_compile_include_php.php │ │ │ ├── smarty_internal_compile_insert.php │ │ │ ├── smarty_internal_compile_ldelim.php │ │ │ ├── smarty_internal_compile_make_nocache.php │ │ │ ├── smarty_internal_compile_nocache.php │ │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ │ ├── smarty_internal_compile_private_foreachsection.php │ │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ │ ├── smarty_internal_compile_private_modifier.php │ │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ │ ├── smarty_internal_compile_private_object_function.php │ │ │ ├── smarty_internal_compile_private_php.php │ │ │ ├── smarty_internal_compile_private_print_expression.php │ │ │ ├── smarty_internal_compile_private_registered_block.php │ │ │ ├── smarty_internal_compile_private_registered_function.php │ │ │ ├── smarty_internal_compile_private_special_variable.php │ │ │ ├── smarty_internal_compile_rdelim.php │ │ │ ├── smarty_internal_compile_section.php │ │ │ ├── smarty_internal_compile_setfilter.php │ │ │ ├── smarty_internal_compile_shared_inheritance.php │ │ │ ├── smarty_internal_compile_while.php │ │ │ ├── smarty_internal_compilebase.php │ │ │ ├── smarty_internal_config_file_compiler.php │ │ │ ├── smarty_internal_configfilelexer.php │ │ │ ├── smarty_internal_configfileparser.php │ │ │ ├── smarty_internal_data.php │ │ │ ├── smarty_internal_debug.php │ │ │ ├── smarty_internal_extension_clear.php │ │ │ ├── smarty_internal_extension_handler.php │ │ │ ├── smarty_internal_method_addautoloadfilters.php │ │ │ ├── smarty_internal_method_adddefaultmodifiers.php │ │ │ ├── smarty_internal_method_append.php │ │ │ ├── smarty_internal_method_appendbyref.php │ │ │ ├── smarty_internal_method_assignbyref.php │ │ │ ├── smarty_internal_method_assignglobal.php │ │ │ ├── smarty_internal_method_clearallassign.php │ │ │ ├── smarty_internal_method_clearallcache.php │ │ │ ├── smarty_internal_method_clearassign.php │ │ │ ├── smarty_internal_method_clearcache.php │ │ │ ├── smarty_internal_method_clearcompiledtemplate.php │ │ │ ├── smarty_internal_method_clearconfig.php │ │ │ ├── smarty_internal_method_compileallconfig.php │ │ │ ├── smarty_internal_method_compilealltemplates.php │ │ │ ├── smarty_internal_method_configload.php │ │ │ ├── smarty_internal_method_createdata.php │ │ │ ├── smarty_internal_method_getautoloadfilters.php │ │ │ ├── smarty_internal_method_getconfigvars.php │ │ │ ├── smarty_internal_method_getdebugtemplate.php │ │ │ ├── smarty_internal_method_getdefaultmodifiers.php │ │ │ ├── smarty_internal_method_getglobal.php │ │ │ ├── smarty_internal_method_getregisteredobject.php │ │ │ ├── smarty_internal_method_getstreamvariable.php │ │ │ ├── smarty_internal_method_gettags.php │ │ │ ├── smarty_internal_method_gettemplatevars.php │ │ │ ├── smarty_internal_method_loadfilter.php │ │ │ ├── smarty_internal_method_loadplugin.php │ │ │ ├── smarty_internal_method_mustcompile.php │ │ │ ├── smarty_internal_method_registercacheresource.php │ │ │ ├── smarty_internal_method_registerclass.php │ │ │ ├── smarty_internal_method_registerdefaultconfighandler.php │ │ │ ├── smarty_internal_method_registerdefaultpluginhandler.php │ │ │ ├── smarty_internal_method_registerdefaulttemplatehandler.php │ │ │ ├── smarty_internal_method_registerfilter.php │ │ │ ├── smarty_internal_method_registerobject.php │ │ │ ├── smarty_internal_method_registerplugin.php │ │ │ ├── smarty_internal_method_registerresource.php │ │ │ ├── smarty_internal_method_setautoloadfilters.php │ │ │ ├── smarty_internal_method_setdebugtemplate.php │ │ │ ├── smarty_internal_method_setdefaultmodifiers.php │ │ │ ├── smarty_internal_method_unloadfilter.php │ │ │ ├── smarty_internal_method_unregistercacheresource.php │ │ │ ├── smarty_internal_method_unregisterfilter.php │ │ │ ├── smarty_internal_method_unregisterobject.php │ │ │ ├── smarty_internal_method_unregisterplugin.php │ │ │ ├── smarty_internal_method_unregisterresource.php │ │ │ ├── smarty_internal_nocache_insert.php │ │ │ ├── smarty_internal_parsetree.php │ │ │ ├── smarty_internal_parsetree_code.php │ │ │ ├── smarty_internal_parsetree_dq.php │ │ │ ├── smarty_internal_parsetree_dqcontent.php │ │ │ ├── smarty_internal_parsetree_tag.php │ │ │ ├── smarty_internal_parsetree_template.php │ │ │ ├── smarty_internal_parsetree_text.php │ │ │ ├── smarty_internal_resource_eval.php │ │ │ ├── smarty_internal_resource_extends.php │ │ │ ├── smarty_internal_resource_file.php │ │ │ ├── smarty_internal_resource_php.php │ │ │ ├── smarty_internal_resource_registered.php │ │ │ ├── smarty_internal_resource_stream.php │ │ │ ├── smarty_internal_resource_string.php │ │ │ ├── smarty_internal_runtime_cachemodify.php │ │ │ ├── smarty_internal_runtime_capture.php │ │ │ ├── smarty_internal_runtime_codeframe.php │ │ │ ├── smarty_internal_runtime_filterhandler.php │ │ │ ├── smarty_internal_runtime_foreach.php │ │ │ ├── smarty_internal_runtime_getincludepath.php │ │ │ ├── smarty_internal_runtime_inheritance.php │ │ │ ├── smarty_internal_runtime_make_nocache.php │ │ │ ├── smarty_internal_runtime_tplfunction.php │ │ │ ├── smarty_internal_runtime_updatecache.php │ │ │ ├── smarty_internal_runtime_updatescope.php │ │ │ ├── smarty_internal_runtime_writefile.php │ │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ │ ├── smarty_internal_template.php │ │ │ ├── smarty_internal_templatebase.php │ │ │ ├── smarty_internal_templatecompilerbase.php │ │ │ ├── smarty_internal_templatelexer.php │ │ │ ├── smarty_internal_templateparser.php │ │ │ ├── smarty_internal_testinstall.php │ │ │ ├── smarty_internal_undefined.php │ │ │ ├── smarty_resource.php │ │ │ ├── smarty_resource_custom.php │ │ │ ├── smarty_resource_recompiled.php │ │ │ ├── smarty_resource_uncompiled.php │ │ │ ├── smarty_security.php │ │ │ ├── smarty_template_cached.php │ │ │ ├── smarty_template_compiled.php │ │ │ ├── smarty_template_config.php │ │ │ ├── smarty_template_resource_base.php │ │ │ ├── smarty_template_source.php │ │ │ ├── smarty_undefined_variable.php │ │ │ ├── smarty_variable.php │ │ │ ├── smartycompilerexception.php │ │ │ └── smartyexception.php │ └── travis.ini └── views │ └── view.class.php ├── models ├── admin │ ├── Admincm.class.php │ ├── Cachecm.class.php │ ├── Catecm.class.php │ ├── Comsucm.class.php │ ├── Goodscm.class.php │ ├── Indexcm.class.php │ ├── Logcm.class.php │ ├── Logincm.class.php │ ├── Ordercm.class.php │ ├── Shopcm.class.php │ ├── Systemcm.class.php │ └── Usercm.class.php ├── adminmer │ ├── Accountcm.class.php │ ├── Catecm.class.php │ ├── Goodscm.class.php │ ├── Indexcm.class.php │ ├── Logincm.class.php │ ├── Ordercm.class.php │ └── Shopcm.class.php └── home │ ├── Aboutcm.class.php │ ├── Indexcm.class.php │ ├── Logincm.class.php │ ├── Ordercm.class.php │ ├── Shopcm.class.php │ └── Usercm.class.php ├── nowapi └── SmsSend.php ├── oam.sql ├── runtime └── templates_c │ ├── 031f01048ef0e7b60406fe76e4b12aba91250bd4_0.file.index.html.php │ ├── 0512f3bd0c779c9a11e0b916a17a3866b07a3814_0.file.shop_res.html.php │ ├── 060c567a7bce73509bd8818e935823b40ee97d3e_0.file.order_confirm.html.php │ ├── 07e2b26dcf707defb49935d9bfd3c89e7037de51_0.file.header.html.php │ ├── 085f7df29aabe19f9c6dfe323297fe3eb6229ec0_0.file.shop_list.html.php │ ├── 09f1b2580375bc6f35840b39cc51cc486f335314_0.file.balance.html.php │ ├── 0d4b5872c77052094c5b909dc221ebff851fe526_0.file.order_list_res.html.php │ ├── 0e7d08ab51ff0cc4fb02929a7a597c0d87b42385_0.file.index.html.php │ ├── 0edd5b5942fb96088789a21eb522b7d4414e1ac7_0.file.index.html.php │ ├── 10171461b261c8b456d6dfcc9f3717179965d082_0.file.menuLeft.html.php │ ├── 148163efc88ff68ed4f2c4ae6c5729b90f22c0ad_0.file.order_list.html.php │ ├── 1522b25cccf3453b1a1b592a6dd5ea3be91af28e_0.file.comsu.html.php │ ├── 152dd7a63f31a922d4ce801621daadb7323a25a3_0.file.index.html.php │ ├── 15b1ce52e9e102a335c3f1faeb2682d788dbf832_0.file.logclear.html.php │ ├── 16c1b2c817ff477f38f7e386c7bfe3f51e8c30b9_0.file.score.html.php │ ├── 17788658113f2f11cef1e8df2315b5a98c67a0d3_0.file.money_pay.html.php │ ├── 189f2714b98379697cc1d39c94e875335de328e7_0.file.index.html.php │ ├── 1cfcc76ac8fc228c9047bd82854c1ad4672786af_0.file.goods_list.html.php │ ├── 1db8480f24b0a5d0b5340f35b5bc9123e2689e66_0.file.index.html.php │ ├── 1dc7f2191300f0d54f5a032687166550cc0decc7_0.file.order_moniter.html.php │ ├── 1f3bbc0b1ad6c4905c41305b5b3ee82d4232aae0_0.file.emailvali.html.php │ ├── 216285fc2d5efe87d518a3ff178cf4822593c23a_0.file.cacheclear.html.php │ ├── 2679ea8d620248595c397ab29c85442b4d3326ac_0.file.hand_order.html.php │ ├── 26dae0f34f0fb7e1933197ba18646002d2a65dbd_0.file.address.html.php │ ├── 28a9e349470920d0128581bbd96d03b9b088237a_0.file.setting.html.php │ ├── 2b0cb84d1bcfe070c144cd0334cfc7cd21af3594_0.file.withbalance.html.php │ ├── 2b871bacbbdb7382745bccce08886ea5921c0bf3_0.file.order_list.html.php │ ├── 2ca80fee3cee6e97d35b56ca3c8bf92087c32a61_0.file.goods_list.html.php │ ├── 2d4872048b0cb289a28e1ccb4777c276cdbdc5ff_0.file.comSu.html.php │ ├── 2ef3781fee207fedcaaf8a9636ee06c27a5d85c0_0.file.index.html.php │ ├── 32b7b4f305155f56b6e2e17b9f37f19f5112cc84_0.file.setting.html.php │ ├── 33a3d037113707d655323fa7309b0fe231f57be9_0.file.withbalance.html.php │ ├── 3794bfa3fa318336dd22252b59bff74b7661d6a2_0.file.index.html.php │ ├── 38a2d9cc6b22b12e9f8f52ea5af45b0c65ed3e54_0.file.order_list.html.php │ ├── 3b629e6fa8033630db135a53cd3985a7661823e1_0.file.phonevali.html.php │ ├── 3b68a5b7e13e15827cfe42ede49230bb2d41382d_0.file.user_edit.html.php │ ├── 4034c253321087704344448b81d1d329aafe2ba9_0.file.applyBalance.html.php │ ├── 477f5821f5dddca6b214fbc2b2babc44bcb6c2ef_0.file.myshop.html.php │ ├── 479c325e4ba74ed24dd5af3821f50cc9f16f2978_0.file.title.html.php │ ├── 4b05f29c5d39edeb2ce46ae61fc0f7eecd24685e_0.file.cacheclear.html.php │ ├── 4d8170bd2b701abb1b9c134e05bf9b38f2e06990_0.file.order_confirm.html.php │ ├── 4e6f01af62377562b79c12133224e55fe3a3324c_0.file.index.html.php │ ├── 51c54cbf4c4fc8d9a6d6d2dde2a44cd7f8799b1d_0.file.title.html.php │ ├── 52198112da0b57f1343e65496a4a4a6a684133c1_0.file.shop_list.html.php │ ├── 52221fc8e4296d5335f6ffe14184a14a296eb883_0.file.index.html.php │ ├── 52e26fb545baf20a3a63147474b88d94ae2a1ed3_0.file.index.html.php │ ├── 54be57762c82ededa81124b8259842383b19cdc5_0.file.search.html.php │ ├── 56347d46b8dcce2532b2a9526b065d2b9dc79bb9_0.file.pay.html.php │ ├── 59c0c7bcf55d2a1b5024f3c2db360f8f51d9a6a3_0.file.hand_order.html.php │ ├── 5c1d40b7b38cd788d81fad58d336c815747d871b_0.file.logclear.html.php │ ├── 5dea6d080a20e1be0565ae8c8f1fcf2f22300274_0.file.shop_edit.html.php │ ├── 6014c2beb1e42e9526d4ec0a7bda81cb7f8fbe06_0.file.index.html.php │ ├── 6322c132179f4c017a6edcf91998751c2568aa6d_0.file.balance.html.php │ ├── 647d01469bcd6b0f9b30a28a2ec1d58dc4e8c3c9_0.file.balrecharge.html.php │ ├── 6832431b79c4af3026e6ae93808eee073420f3df_0.file.main.html.php │ ├── 6b0321e234cd335fee0dd6a3ebb853e6d497c9f7_0.file.index.html.php │ ├── 6b55228d37e01e2fe77170140b47699182073ecd_0.file.admin_list.html.php │ ├── 6d1d47dc1cf8f03b74a9d26d21ab5555c5a4e25b_0.file.index.html.php │ ├── 6de5760cc1a6b043e6dedbafa7ed9e68ccdac876_0.file.index.html.php │ ├── 75fc4a2c53afc47b37bebfc2d2cabf36694f4314_0.file.cate_list.html.php │ ├── 766010c4f51dc903e1771b9e369948f7ef58ce66_0.file.header.html.php │ ├── 7c1623abb71842ac5f21aacb0820caf31bbd3e79_0.file.goods_list.html.php │ ├── 7d3a45a6d0908a092a56a100f3125436f85c9a28_0.file.index.html.php │ ├── 7e4aec6c63af29ca3dcdb755eb00adf10b5d49ec_0.file.balance.html.php │ ├── 7f94566dd6076b4dd7a3aa0617fa2c24e829abcc_0.file.index.html.php │ ├── 82bb4a0560a7f823d5c104290a309190cb5e1a6f_0.file.cate_list.html.php │ ├── 8558af492aaad7a38ce507ca8d95ee5d561fb21e_0.file.title.html.php │ ├── 887ea5efb4605d64c6210ee164c351b9a47af0f9_0.file.shopapply.html.php │ ├── 89228e9d6da0b214a10c126accd2ae9eabf25afa_0.file.fonter.html.php │ ├── 8a693ce037b997b71d36ba94562e4c99d0d4ebc6_0.file.systemvali.html.php │ ├── 8db8a2e39c122e0212328f6df6a20946b9fa1847_0.file.main.html.php │ ├── 8e542754a86d0833d2d430732e29ac98173a7f9a_0.file.main.html.php │ ├── 8f6ca7d7d631eedeae7d86553bb82c9e5238c356_0.file.order_list.html.php │ ├── 9120f7fce2cd225faf8df048c56f0de2b2b59b35_0.file.balance.html.php │ ├── 92cbe72c77b06ff204af36cf4ee2b6b9bed5b59f_0.file.shopApply.html.php │ ├── 9349c25108bc867692547f254e002f1c94626ccb_0.file.balrecharge.html.php │ ├── 9547d57c4c05411ed86d08d03d6c39f86e0f193e_0.file.search.html.php │ ├── 976b32f5c311986ae43c760dc0f6b3b476fa3a35_0.file.order_moniter.html.php │ ├── 986a8e873ffc009b4826c04cfc1c7109146e3c53_0.file.order_moniter.html.php │ ├── 990da5d8709efe9c8e2010df19bd2f16317c339c_0.file.index.html.php │ ├── 99a344fc3fa5df77ac4e2889c2effe0ba58cbe6f_0.file.index.html.php │ ├── 99ac6816029e2ceee411aaa2515473f72da8277c_0.file.order_list.html.php │ ├── 9b27a43c397668e5e0a852059ed2d529972b02e6_0.file.applybalance.html.php │ ├── 9f5508853c51015cdaa5f053e0804b8a33043702_0.file.goods_res.html.php │ ├── 9facad601c28a5708fd569677539d0c655a497d2_0.file.goods_list.html.php │ ├── a2064f15f7ac9d89e5ee5e6ce3976318361c2d5a_0.file.user_res.html.php │ ├── a25273c821f8f2250d46997471c93a778cb94e0b_0.file.index.html.php │ ├── a51bbd3d9bb9eda2868a29a20982e80f4c0f6d99_0.file.index.html.php │ ├── a5a6aa42344224a771a06a8efb2e6ea9b4a65c9e_0.file.about.html.php │ ├── ae4da60da51eb3fc861d358f432ff8916d78851b_0.file.mywithbalance.html.php │ ├── af7cc0b081fb38d4e5f6324fbf35b83321464870_0.file.fonter.html.php │ ├── b08b819320fb3cbc2dde0f33337c76a3f4b7c646_0.file.order_moniter.html.php │ ├── b121a1556f9a4ed79333860f15c85537c04b13bf_0.file.user_list.html.php │ ├── b23db348343aec73b9c3c58b374878286e31f670_0.file.goods_edit.html.php │ ├── b594cc3618a439aadd01b00a84b7401dfc92b965_0.file.hand_order.html.php │ ├── b5dce1facda1683feea19b281da574012bb7f7e2_0.file.hand_order.html.php │ ├── b651e4f0703690927f8d98d6613fdbd0f779fe62_0.file.index.html.php │ ├── b658bd9b5265b37f3fa23ede64307cadd7f08e6c_0.file.user_list.html.php │ ├── b665ef120477750b38570ccb23f531f5d17f9ab9_0.file.cate_list.html.php │ ├── b80dbc0eff1bd9ab66aa8f8cf73b4428a1f164a2_0.file.main.html.php │ ├── b8436f2f46f11877c8f944c73560b4c2ec5ea8d2_0.file.admin_list.html.php │ ├── bc2ce917651070b6901c9ab8b63bffdae61dab58_0.file.goods_edit.html.php │ ├── bd6a378aa9ac7cd6cc14ad512f6635c9aff5ef04_0.file.1001.html.php │ ├── bda3d0e734181a8d45e3b7f07c86418c6dbfbe1b_0.file.goods_res.html.php │ ├── bfefad02560a6d09a54e5d4b7a3432fd34e900b0_0.file.address.html.php │ ├── c4174ea8fec779bd3fe074e22045ceb5b5799c14_0.file.balance.html.php │ ├── c7897dff4e9671bc30575fef9bcc504fa65d6f7a_0.file.money_pay.html.php │ ├── ce1dd11ef2492f3a6d75eb85a13e852c7b9c1c1f_0.file.1000.html.php │ ├── cf6cded001991ed2bcb6ee353bdf92ae4cbbf49a_0.file.index.html.php │ ├── d046a1341d882346953c6524b329f574d253c638_0.file.myshop.html.php │ ├── d08313ce9eaaa28b30fa7e6bc243d829b154c788_0.file.score.html.php │ ├── d462253a1632714501dde04ce0a18e972f6157a7_0.file.index.html.php │ ├── d4a734a8cf1716c80d3d5b9da47a3e8ecf8acd26_0.file.1002.html.php │ ├── d53bd7a00487a14fe923a5ae1aa6216b06547a77_0.file.order_res.html.php │ ├── d684afc58d041237f3e24ad936777ca8076cb133_0.file.index.html.php │ ├── d90008cc1cda7456d7964253ee457f7d5509cc04_0.file.index.html.php │ ├── d9d776633f3660b5c9b96d68c811c2656e6c2c06_0.file.fonter.html.php │ ├── da721792f178567e414a7ae521b333cd3bcb3fae_0.file.index.html.php │ ├── dc53c3e7ac41617ac075b319e5df5a93476cd0f4_0.file.shop_res.html.php │ ├── dfe50ef642f151d81a4644bacd73d9117cf3a561_0.file.alipayvali.html.php │ ├── e39c3b4e3c182284e2ee0772748fe12de335c0eb_0.file.1000.html.php │ ├── e47b7731b308b979a3aedbdab3511de348d7ad18_0.file.index.html.php │ ├── e6d3bb74925ce05a6caaf14d6ede2dc2d9b54944_0.file.cate_edit.html.php │ ├── e7b8cf46752f3213af92c3cbd427a54f89f9dbd8_0.file.alipayvali.html.php │ ├── eb4f066795fa2163c5f22e1c343dbd493b9c8bd1_0.file.pay.html.php │ ├── ebce17dc5a5f7044b00609fc6026b83ad0f284bb_0.file.withbalance.html.php │ ├── ee8063ee56dbca56a910ab6b23e0234456b6cb8b_0.file.order_list_res.html.php │ ├── ef55fff1d40e7cf7f2dce8c68b59a3644bbb71b4_0.file.phonevali.html.php │ ├── ef6a3bfb2f51cbe9b9326f64c2528606dbbf250a_0.file.menuLeft.html.php │ ├── f043aa473188d14511f221b057ded383fc8dbbe9_0.file.order_list.html.php │ ├── f0943a42791d0b20ebd30acbb2058031903d7566_0.file.main.html.php │ ├── f21f9041ea12d8a972c6a2059a2bf175f6915f8a_0.file.cate_list.html.php │ ├── f504c12477d49181f871ce368f85f2833ac6bdaf_0.file.index.html.php │ ├── f64ee9eb0e3e991604e898a3b2f8e40008e59831_0.file.about.html.php │ ├── f6c3a02a1cb9505d4b4dfb2e3033f555500c2171_0.file.withbalance.html.php │ ├── f77da4317f110a46f8d6200f48dc98809bddd8f7_0.file.order_res.html.php │ ├── f8e1c6d0013031d9f94c9e5a1b938a9461431fa0_0.file.mywithBalance.html.php │ ├── f99f4634b4eb856182f175a051f60edccba141aa_0.file.index.html.php │ ├── fc4ebe53ee8a79b8dd2a01c1145be7597e503635_0.file.balance.html.php │ └── ffa7e1b974c6caf190bef06600aea1a7d7d1e4c0_0.file.1001.html.php ├── upload ├── goods_image │ ├── 2017-11-29 │ │ ├── 17fcfc67557d5949d66cf6a926b85ce9964.jpg │ │ ├── 224e9af5dc0ffd13f8f73e04a274cdb1844.jpg │ │ ├── 224e9af5dc0ffd13f8f73e04a274cdb1978.jpg │ │ ├── 638100de80aa9c82d7d995289daee614558.jpg │ │ ├── 69c6880c983d6e932149e963c9cbc900821.jpg │ │ ├── 6b9a5f0a421e2e30ebf74280763bcf51340.jpg │ │ ├── 6b9a5f0a421e2e30ebf74280763bcf51800.jpg │ │ ├── acf59fd39993a232d2248f25c6f460e0195.jpg │ │ ├── c626541a3a042c1daca059f770c38a7d952.jpg │ │ ├── d14db5fc208d652736fb9326129b3694412.jpg │ │ ├── deb72cd26137b1dfc378a83b7d9e201a891.jpg │ │ └── e64c30a305397e6a3e9e703db542cffe591.jpg │ ├── 2017-11-30 │ │ └── e64c30a305397e6a3e9e703db542cffe404.jpg │ ├── 2017-12-03 │ │ └── c626541a3a042c1daca059f770c38a7d543.jpg │ └── 2017-12-05 │ │ ├── acf59fd39993a232d2248f25c6f460e0309.jpg │ │ └── c626541a3a042c1daca059f770c38a7d909.jpg ├── goods_image_thumb_220 │ ├── 2017-11-29 │ │ ├── 17fcfc67557d5949d66cf6a926b85ce9345.jpg │ │ ├── 224e9af5dc0ffd13f8f73e04a274cdb1197.jpg │ │ ├── 224e9af5dc0ffd13f8f73e04a274cdb1454.jpg │ │ ├── 638100de80aa9c82d7d995289daee614504.jpg │ │ ├── 69c6880c983d6e932149e963c9cbc900192.jpg │ │ ├── 6b9a5f0a421e2e30ebf74280763bcf51666.jpg │ │ ├── 6b9a5f0a421e2e30ebf74280763bcf51793.jpg │ │ ├── acf59fd39993a232d2248f25c6f460e0317.jpg │ │ ├── c626541a3a042c1daca059f770c38a7d275.jpg │ │ ├── d14db5fc208d652736fb9326129b3694370.jpg │ │ ├── deb72cd26137b1dfc378a83b7d9e201a650.jpg │ │ └── e64c30a305397e6a3e9e703db542cffe639.jpg │ ├── 2017-11-30 │ │ └── e64c30a305397e6a3e9e703db542cffe540.jpg │ ├── 2017-12-03 │ │ └── c626541a3a042c1daca059f770c38a7d150.jpg │ └── 2017-12-05 │ │ ├── acf59fd39993a232d2248f25c6f460e0903.jpg │ │ └── c626541a3a042c1daca059f770c38a7d332.jpg ├── goods_image_thumb_50 │ ├── 2017-11-29 │ │ ├── 17fcfc67557d5949d66cf6a926b85ce9345.jpg │ │ ├── 224e9af5dc0ffd13f8f73e04a274cdb1197.jpg │ │ ├── 224e9af5dc0ffd13f8f73e04a274cdb1454.jpg │ │ ├── 638100de80aa9c82d7d995289daee614504.jpg │ │ ├── 69c6880c983d6e932149e963c9cbc900192.jpg │ │ ├── 6b9a5f0a421e2e30ebf74280763bcf51666.jpg │ │ ├── 6b9a5f0a421e2e30ebf74280763bcf51793.jpg │ │ ├── acf59fd39993a232d2248f25c6f460e0317.jpg │ │ ├── c626541a3a042c1daca059f770c38a7d275.jpg │ │ ├── d14db5fc208d652736fb9326129b3694370.jpg │ │ ├── deb72cd26137b1dfc378a83b7d9e201a650.jpg │ │ └── e64c30a305397e6a3e9e703db542cffe639.jpg │ ├── 2017-11-30 │ │ └── e64c30a305397e6a3e9e703db542cffe540.jpg │ ├── 2017-12-03 │ │ └── c626541a3a042c1daca059f770c38a7d150.jpg │ └── 2017-12-05 │ │ ├── acf59fd39993a232d2248f25c6f460e0903.jpg │ │ └── c626541a3a042c1daca059f770c38a7d332.jpg ├── shop_image │ ├── 2017-11-29 │ │ ├── 17fcfc67557d5949d66cf6a926b85ce9803.jpg │ │ └── f3c1c0f4d643c2a8431219dd56e7a38d830.jpg │ ├── 2017-12-03 │ │ └── c626541a3a042c1daca059f770c38a7d331.jpg │ └── 2017-12-05 │ │ └── 17fcfc67557d5949d66cf6a926b85ce9862.jpg └── shop_image_thumb │ ├── 2017-11-29 │ ├── 17fcfc67557d5949d66cf6a926b85ce9600.jpg │ └── f3c1c0f4d643c2a8431219dd56e7a38d935.jpg │ ├── 2017-12-03 │ └── c626541a3a042c1daca059f770c38a7d705.jpg │ └── 2017-12-05 │ └── 17fcfc67557d5949d66cf6a926b85ce9473.jpg ├── views ├── admin │ ├── adminc │ │ ├── admin_edit.html │ │ ├── admin_list.html │ │ ├── admin_res.html │ │ └── index.html │ ├── cachec │ │ └── cacheclear.html │ ├── catec │ │ ├── cate_edit.html │ │ ├── cate_list.html │ │ ├── cate_res.html │ │ └── index.html │ ├── comsuc │ │ ├── comsu.html │ │ ├── comsu_look.html │ │ └── comsu_res.html │ ├── goodsc │ │ ├── goods_edit.html │ │ ├── goods_list.html │ │ ├── goods_res.html │ │ └── index.html │ ├── indexc │ │ ├── index.html │ │ └── main.html │ ├── logc │ │ └── logclear.html │ ├── loginc │ │ └── index.html │ ├── orderc │ │ ├── hand_order.html │ │ ├── hand_res.html │ │ ├── order_list.html │ │ ├── order_list_res.html │ │ ├── order_moniter.html │ │ └── order_res.html │ ├── shopc │ │ ├── balance.html │ │ ├── index.html │ │ ├── myshop.html │ │ ├── mywithbalance.html │ │ ├── mywithbalance_res.html │ │ ├── shop_edit.html │ │ ├── shop_list.html │ │ ├── shop_res.html │ │ ├── shopapply.html │ │ ├── shopapply_look.html │ │ ├── shopapply_res.html │ │ ├── withbalance.html │ │ └── withbalance_res.html │ ├── systemc │ │ ├── alipayvali.html │ │ ├── emailvali.html │ │ ├── phonevali.html │ │ └── systemvali.html │ └── userc │ │ ├── user_edit.html │ │ ├── user_list.html │ │ └── user_res.html ├── adminmer │ ├── accountc │ │ ├── applybalance.html │ │ ├── balance.html │ │ ├── mywithbalance_res.html │ │ └── withbalance.html │ ├── catec │ │ ├── cate_edit.html │ │ ├── cate_list.html │ │ ├── cate_res.html │ │ └── index.html │ ├── goodsc │ │ ├── goods_edit.html │ │ ├── goods_list.html │ │ ├── goods_res.html │ │ └── index.html │ ├── indexc │ │ ├── index.html │ │ └── main.html │ ├── loginc │ │ └── index.html │ ├── orderc │ │ ├── hand_order.html │ │ ├── hand_res.html │ │ ├── order_list.html │ │ ├── order_list_res.html │ │ ├── order_moniter.html │ │ └── order_res.html │ └── shopc │ │ └── index.html ├── home │ ├── aboutc │ │ └── about.html │ ├── indexc │ │ └── index.html │ ├── orderc │ │ ├── money_pay.html │ │ ├── order_confirm.html │ │ ├── order_list.html │ │ ├── order_res.html │ │ ├── pay.html │ │ └── weixinPay.html │ ├── shopc │ │ └── shop │ │ │ ├── 1000.html │ │ │ ├── 1001.html │ │ │ └── 1002.html │ └── userc │ │ ├── address.html │ │ ├── balance.html │ │ ├── balrecharge.html │ │ ├── score.html │ │ └── setting.html └── public │ ├── admin │ └── search.html │ ├── adminmer │ └── search.html │ ├── home │ ├── fonter.html │ ├── header.html │ ├── menuLeft.html │ ├── template_shop.html │ └── title.html │ └── search.html └── webs ├── Mylg ├── 2017-11-29 │ ├── -adminmerBalrecharge.txt │ ├── -homeBalrecharge.txt │ └── -homejifenrecharge.txt ├── 2017-11-30 │ ├── -homeBalrecharge.txt │ └── -homejifenrecharge.txt ├── 2017-12-01 │ └── -homeBalrecharge.txt ├── 2017-12-02 │ ├── -homeBalrecharge.txt │ └── -homejifenrecharge.txt ├── 2017-12-03 │ ├── -homeBalrecharge.txt │ └── -homejifenrecharge.txt └── 2017-12-04 │ ├── -homeBalrecharge.txt │ └── -homejifenrecharge.txt ├── Srce ├── css │ ├── admin │ │ ├── backstage.css │ │ ├── bootstrap-admin.css │ │ ├── edit.css │ │ ├── fileinput.min.css │ │ ├── global.css │ │ ├── main.css │ │ ├── order.css │ │ └── reset.css │ ├── adminmer │ │ ├── backstage.css │ │ ├── bootstrap-admin.css │ │ ├── fileinput.min.css │ │ ├── global.css │ │ ├── main.css │ │ ├── order.css │ │ └── reset.css │ ├── home │ │ ├── about.css │ │ ├── account.css │ │ ├── base.css │ │ ├── cash.css │ │ ├── common.css │ │ ├── footer_1.css │ │ ├── footer_2.css │ │ ├── form.css │ │ ├── header.css │ │ ├── leftmenu.css │ │ ├── login.css │ │ ├── menu02.css │ │ ├── order.css │ │ ├── order_confirm.css │ │ ├── page.css │ │ ├── place.css │ │ ├── popwindow.css │ │ ├── reset.css │ │ ├── reveal.css │ │ ├── shop.css │ │ ├── shopcart.css │ │ ├── weixinPay.css │ │ └── weixin_pay.css │ └── public │ │ └── page.css ├── image │ ├── admin │ │ ├── admin_icon_close.png │ │ ├── admin_icon_open.png │ │ ├── attach.jpg │ │ ├── delete.png │ │ ├── icon │ │ │ ├── e.png │ │ │ ├── i.png │ │ │ ├── icon.png │ │ │ ├── j.png │ │ │ ├── login_btn.jpg │ │ │ ├── n.png │ │ │ ├── red_link.jpg │ │ │ ├── t.png │ │ │ └── user_icon.jpg │ │ ├── icon_down_arrow.png │ │ ├── icon_phone.png │ │ ├── icon_right_arrow.png │ │ ├── logo-50-50.jpg │ │ ├── logo.jpg │ │ ├── round_24.png │ │ └── webLogo.jpg │ ├── adminmer │ │ ├── admin_icon_close.png │ │ ├── admin_icon_open.png │ │ ├── attach.jpg │ │ ├── delete.png │ │ ├── icon │ │ │ ├── e.png │ │ │ ├── i.png │ │ │ ├── icon.png │ │ │ ├── j.png │ │ │ ├── login_btn.jpg │ │ │ ├── n.png │ │ │ ├── red_link.jpg │ │ │ ├── t.png │ │ │ └── user_icon.jpg │ │ ├── icon_down_arrow.png │ │ ├── icon_phone.png │ │ ├── icon_right_arrow.png │ │ ├── logo-50-50.jpg │ │ ├── logo.jpg │ │ ├── round_24.png │ │ └── webLogo.jpg │ ├── home │ │ ├── HeroDesktop_SALAD_Option2.jpg │ │ ├── about_header_bg.jpg │ │ ├── alipay_50.png │ │ ├── banner-lg.png │ │ ├── close.png │ │ ├── favicon.ico │ │ ├── header_logo.png │ │ ├── icon_address.png │ │ ├── icon_balance.png │ │ ├── icon_buy.png │ │ ├── icon_cart.png │ │ ├── icon_cart_22_22.png │ │ ├── icon_cash.png │ │ ├── icon_cash_small.png │ │ ├── icon_close.png │ │ ├── icon_full_star.png │ │ ├── icon_isnull.png │ │ ├── icon_my.png │ │ ├── icon_open.png │ │ ├── icon_order.png │ │ ├── icon_pay_bg.png │ │ ├── icon_phone.png │ │ ├── icon_pwd.png │ │ ├── icon_score.png │ │ ├── icon_search.png │ │ ├── icon_settings.png │ │ ├── icon_star_green.png │ │ ├── icon_star_red.png │ │ ├── logo-50-50.jpg │ │ ├── logo.jpg │ │ ├── mmqrcode1511835374057.png │ │ ├── new.png │ │ ├── no_pay_40_40.png │ │ ├── outdate.png │ │ ├── place_bg.jpg │ │ ├── qr_code.jpg │ │ ├── qrcode.png │ │ ├── red_point.png │ │ ├── right_arrow.png │ │ ├── round_24.png │ │ ├── test01.jpg │ │ ├── test02.jpg │ │ ├── test03.jpg │ │ ├── used.png │ │ ├── w_footer.png │ │ ├── weixin_45_45.png │ │ ├── weixin_50_50.png │ │ ├── weixin_logo.png │ │ └── yue.jpg │ └── public │ │ ├── HeroDesktop_SALAD_Option2.jpg │ │ ├── about_header_bg.jpg │ │ ├── alipay_50.png │ │ ├── banner-lg.png │ │ ├── close.png │ │ ├── favicon.ico │ │ ├── header_logo.png │ │ ├── icon_address.png │ │ ├── icon_balance.png │ │ ├── icon_buy.png │ │ ├── icon_cart.png │ │ ├── icon_cart_22_22.png │ │ ├── icon_cash.png │ │ ├── icon_cash_small.png │ │ ├── icon_close.png │ │ ├── icon_full_star.png │ │ ├── icon_isnull.png │ │ ├── icon_my.png │ │ ├── icon_open.png │ │ ├── icon_order.png │ │ ├── icon_pay_bg.png │ │ ├── icon_phone.png │ │ ├── icon_pwd.png │ │ ├── icon_score.png │ │ ├── icon_search.png │ │ ├── icon_settings.png │ │ ├── icon_star_green.png │ │ ├── icon_star_red.png │ │ ├── logo-50-50.jpg │ │ ├── logo.jpg │ │ ├── new.png │ │ ├── no_pay_40_40.png │ │ ├── outdate.png │ │ ├── place_bg.jpg │ │ ├── qr_code.jpg │ │ ├── qrcode.png │ │ ├── red_point.png │ │ ├── right_arrow.png │ │ ├── round_24.png │ │ ├── test01.jpg │ │ ├── test02.jpg │ │ ├── test03.jpg │ │ ├── used.png │ │ ├── w_footer.png │ │ ├── weixin_45_45.png │ │ ├── weixin_50_50.png │ │ └── weixin_logo.png ├── js │ ├── admin │ │ ├── bootstrap.min.js │ │ ├── city.js │ │ ├── common.js │ │ ├── edit.js │ │ ├── fileinput.min.js │ │ ├── jquery-1.8.3.js │ │ ├── jquery-ui │ │ │ ├── css │ │ │ │ └── ui-lightness │ │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ │ └── js │ │ │ │ ├── jquery-1.10.2.js │ │ │ │ ├── jquery-ui-1.10.4.custom.js │ │ │ │ └── jquery-ui-1.10.4.custom.min.js │ │ └── jquery.jqprint-0.3.js │ ├── adminmer │ │ ├── bootstrap.min.js │ │ ├── common.js │ │ ├── fileinput.min.js │ │ ├── jquery-1.8.3.js │ │ ├── jquery-ui │ │ │ ├── css │ │ │ │ └── ui-lightness │ │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ │ └── js │ │ │ │ ├── jquery-1.10.2.js │ │ │ │ ├── jquery-ui-1.10.4.custom.js │ │ │ │ └── jquery-ui-1.10.4.custom.min.js │ │ └── jquery.jqprint-0.3.js │ ├── home │ │ ├── about.js │ │ ├── account.js │ │ ├── baidu_js_push.js │ │ ├── cart.js │ │ ├── cart.lib.js │ │ ├── common.js │ │ ├── footer.js │ │ ├── header.js │ │ ├── jquery-1.8.3.js │ │ ├── jquery.cookie.js │ │ ├── jquery.fly.min.js │ │ ├── jquery.jqzoom-core.js │ │ ├── jquery.reveal.js │ │ ├── json2.js │ │ ├── login.js │ │ ├── md5.js │ │ ├── myInfo.js │ │ ├── order.js │ │ ├── requestAnimationFrame.js │ │ ├── shop.js │ │ └── shopInfo.js │ └── public │ │ ├── jquery-1.8.3.min.js │ │ ├── page.js │ │ └── verifys.js └── raw │ ├── 2478.mp3 │ └── bg_voice.mp3 └── index.php /Callback.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /PHPMailer-master/VERSION: -------------------------------------------------------------------------------- 1 | 6.0.1 -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/lib/Core/AcsResponse.php: -------------------------------------------------------------------------------- 1 | code; 13 | } 14 | 15 | public function setCode($code) 16 | { 17 | $this->code = $code; 18 | } 19 | 20 | public function getMessage() 21 | { 22 | return $this->message; 23 | } 24 | 25 | public function setMessage($message) 26 | { 27 | $this->message = $message; 28 | } 29 | } -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/lib/Core/Auth/ISigner.php: -------------------------------------------------------------------------------- 1 | add('Aliyun\\Test', __DIR__); 12 | if (!defined("ALIYUN_CONFIG_PATH")) { 13 | define("ALIYUN_CONFIG_PATH", __DIR__); 14 | } -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/phpspec/prophecy/src'), 10 | ); 11 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/doctrine/instantiator/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | build 4 | vendor 5 | coverage.clover 6 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpdocumentor/reflection-common/.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | vendor/ 3 | build/ 4 | 5 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpdocumentor/reflection-common/README.md: -------------------------------------------------------------------------------- 1 | # ReflectionCommon 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpdocumentor/reflection-common/tests/common/bootstrap.php: -------------------------------------------------------------------------------- 1 | shouldBeAnInstanceOf('RuntimeException'); 12 | $this->shouldBeAnInstanceOf('Prophecy\Exception\Doubler\DoublerException'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | /vendor 9 | /composer.lock 10 | /composer.phar 11 | /.idea 12 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | 10 | before_script: 11 | - COMPOSER_ROOT_VERSION=dev-master composer install --prefer-source 12 | 13 | script: vendor/bin/phpunit --configuration ./build/travis-ci.xml 14 | 15 | notifications: 16 | email: false 17 | irc: 18 | channels: 19 | - "irc.freenode.org#phpunit" 20 | use_notice: true 21 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Pull Requests for bug fixes should be made against the current release branch (2.0). 2 | 3 | Pull Requests for new features should be made against master. 4 | 5 | For further notes please refer to [https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md](https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md) 6 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/scripts/auto_append.php: -------------------------------------------------------------------------------- 1 | stop(); 3 | 4 | $writer = new PHP_CodeCoverage_Report_HTML; 5 | $writer->process($coverage, '/tmp/coverage'); 6 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/scripts/auto_prepend.php: -------------------------------------------------------------------------------- 1 | filter(); 6 | 7 | $filter->addFileToBlacklist(__FILE__); 8 | $filter->addFileToBlacklist(dirname(__FILE__) . '/auto_append.php'); 9 | 10 | $coverage->start($_SERVER['SCRIPT_FILENAME']); 11 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/coverage_bar.html.dist: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{percent}}% covered ({{level}}) 4 |
5 |
6 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer/Template/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | public function testSomething() 13 | { 14 | $o = new Foo\CoveredClass; 15 | $o->publicMethod(); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-code-coverage/tests/_files/source_with_namespace.php: -------------------------------------------------------------------------------- 1 | method_in_anonymous_class(); 11 | } 12 | 13 | public function methodTwo() { 14 | return false; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/php-token-stream/tests/_fixture/closure.php: -------------------------------------------------------------------------------- 1 | expects($any); 6 | return call_user_func_array(array($expects, 'method'), func_get_args()); 7 | } 8 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/mocked_clone.tpl.dist: -------------------------------------------------------------------------------- 1 | public function __clone() 2 | { 3 | $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/mocked_static_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}) 3 | { 4 | throw new PHPUnit_Framework_MockObject_BadMethodCallException; 5 | } 6 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/trait_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {prologue}class {class_name} 2 | { 3 | use {trait_name}; 4 | } 5 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/unmocked_clone.tpl.dist: -------------------------------------------------------------------------------- 1 | public function __clone() 2 | { 3 | $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/wsdl_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {namespace}class {class_name} extends \SoapClient 2 | { 3 | public function __construct($wsdl, array $options) 4 | { 5 | parent::__construct('{wsdl}', $options); 6 | } 7 | {methods}} 8 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/wsdl_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | public function {method_name}({arguments}) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractMockTestClass.php: -------------------------------------------------------------------------------- 1 | $value) { 12 | $this->{$key} = $value; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit-mock-objects/tests/_fixture/ClassWithStaticMethod.php: -------------------------------------------------------------------------------- 1 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php: -------------------------------------------------------------------------------- 1 | constructorCalled = true; 9 | } 10 | 11 | public function doSomething() 12 | { 13 | } 14 | 15 | public function doAnotherThing() 16 | { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit-mock-objects/tests/_fixture/SomeClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * Marker interface for PHPUnit exceptions. 13 | * 14 | * @since Interface available since Release 4.0.0 15 | */ 16 | interface PHPUnit_Exception 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/src/ForwardCompatibility/Assert.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | use PHPUnit_Framework_Assert; 14 | 15 | abstract class Assert extends PHPUnit_Framework_Assert 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/src/ForwardCompatibility/Test.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | use PHPUnit_Framework_Test; 14 | 15 | interface Test extends PHPUnit_Framework_Test 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/src/ForwardCompatibility/TestCase.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | use PHPUnit_Framework_TestCase; 14 | 15 | abstract class TestCase extends PHPUnit_Framework_TestCase 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/src/ForwardCompatibility/TestListener.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | use PHPUnit_Framework_TestListener; 14 | 15 | interface TestListener extends PHPUnit_Framework_TestListener 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/src/ForwardCompatibility/TestSuite.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace PHPUnit\Framework; 12 | 13 | use PHPUnit_Framework_TestSuite; 14 | 15 | class TestSuite extends PHPUnit_Framework_TestSuite 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/src/Framework/CodeCoverageException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * @since Class available since Release 4.0.0 13 | */ 14 | class PHPUnit_Framework_CodeCoverageException extends PHPUnit_Framework_Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/src/Runner/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | /** 12 | * @since Class available since Release 4.0.0 13 | */ 14 | class PHPUnit_Runner_Exception extends RuntimeException implements PHPUnit_Exception 15 | { 16 | } 17 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php: -------------------------------------------------------------------------------- 1 | ' . file_get_contents('php://stdin')); 4 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Fail/fail.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | // This test intentionally fails and it is checked by Travis. 3 | --FILE-- 4 | --EXPECTF-- 5 | unexpected 6 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1149/Issue1149Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | print '1'; 8 | } 9 | 10 | /** 11 | * @runInSeparateProcess 12 | */ 13 | public function testTwo() 14 | { 15 | $this->assertTrue(true); 16 | print '2'; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1216/Issue1216Test.php: -------------------------------------------------------------------------------- 1 | assertTrue($_ENV['configAvailableInBootstrap']); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1216/bootstrap1216.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1265/Issue1265Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1265/phpunit1265.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1330/Issue1330Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(PHPUNIT_1330); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1330/phpunit1330.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1337/Issue1337Test.php: -------------------------------------------------------------------------------- 1 | assertTrue($a); 10 | } 11 | 12 | public function dataProvider() 13 | { 14 | return array( 15 | 'c:\\'=> array(true), 16 | 0.9 => array(true) 17 | ); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1348/Issue1348Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 8 | } 9 | 10 | public function testSTDERR() 11 | { 12 | fwrite(STDERR, 'STDERR works as usual.'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1351/ChildProcessClass1351.php: -------------------------------------------------------------------------------- 1 | assertTrue(false); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1468/Issue1468Test.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1471/Issue1471Test.php: -------------------------------------------------------------------------------- 1 | expectOutputString('*'); 7 | 8 | print '*'; 9 | 10 | $this->assertTrue(false); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/1570/Issue1570Test.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/322/Issue322Test.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/503/Issue503Test.php: -------------------------------------------------------------------------------- 1 | assertSame( 7 | "foo\n", 8 | "foo\r\n" 9 | ); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/581/Issue581Test.php: -------------------------------------------------------------------------------- 1 | assertEquals( 7 | (object) array(1, 2, "Test\r\n", 4, 5, 6, 7, 8), 8 | (object) array(1, 2, "Test\r\n", 4, 1, 6, 7, 8) 9 | ); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/74/Issue74Test.php: -------------------------------------------------------------------------------- 1 | assertEquals(GITHUB_ISSUE, 797); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/797/bootstrap797.php: -------------------------------------------------------------------------------- 1 | assertAttributeEquals('foo', 'field', new Issue523()); 7 | } 8 | }; 9 | 10 | class Issue523 extends ArrayIterator 11 | { 12 | protected $field = 'foo'; 13 | } 14 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/Trac/684/Issue684Test.php: -------------------------------------------------------------------------------- 1 | addTestSuite('OneTest'); 11 | $suite->addTestSuite('TwoTest'); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/Trac/783/OneTest.php: -------------------------------------------------------------------------------- 1 | addTest(ChildSuite::suite()); 10 | 11 | return $suite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/Regression/Trac/783/TwoTest.php: -------------------------------------------------------------------------------- 1 | endCount++; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/Calculator.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/ClassWithScalarTypeDeclarations.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageFunctionParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesWhitespaceTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageNamespacedFunctionTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | public function testSomething() 13 | { 14 | $o = new Foo\CoveredClass; 15 | $o->publicMethod(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | 9 | /** 10 | * @depends testOne 11 | */ 12 | public function testTwo() 13 | { 14 | } 15 | 16 | /** 17 | * @depends testTwo 18 | */ 19 | public function testThree() 20 | { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/DependencySuccessTest.php: -------------------------------------------------------------------------------- 1 | addTestSuite('DependencySuccessTest'); 9 | $suite->addTestSuite('DependencyFailureTest'); 10 | 11 | return $suite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/FatalTest.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Test incomplete'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/Inheritance/InheritanceA.php: -------------------------------------------------------------------------------- 1 | assertEquals('application/x-test', ini_get('default_mimetype')); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/IsolationTest.php: -------------------------------------------------------------------------------- 1 | assertFalse($this->isInIsolation()); 7 | } 8 | 9 | public function testIsInIsolationReturnsTrue() 10 | { 11 | $this->assertTrue($this->isInIsolation()); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/JsonData/arrayObject.json: -------------------------------------------------------------------------------- 1 | ["Mascott", "Tux", "OS", "Linux"] 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/MockRunner.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoveredFunction.php: -------------------------------------------------------------------------------- 1 | a = $a; 11 | $this->b = $b; 12 | $this->c = $c; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/Singleton.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/Success.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Incomplete test'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/TestSkipped.php: -------------------------------------------------------------------------------- 1 | markTestSkipped('Skipped test'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/TestTestError.php: -------------------------------------------------------------------------------- 1 | wasRun = true; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/configuration.colors.empty.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/configuration.colors.false.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/configuration.colors.invalid.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/configuration.custom-printer.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/phpunit/phpunit/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | ../tests 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/comparator/tests/_files/TestClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | class TestClass { 14 | } 15 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/comparator/tests/_files/TestClassComparator.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\Comparator; 12 | 13 | class TestClassComparator extends ObjectComparator { 14 | } 15 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/comparator/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState; 12 | 13 | /** 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/global-state/src/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState; 12 | 13 | /** 14 | */ 15 | class RuntimeException extends \RuntimeException implements Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/global-state/tests/_fixture/BlacklistedChildClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState\TestFixture; 12 | 13 | /** 14 | */ 15 | class BlacklistedChildClass extends BlacklistedClass 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/global-state/tests/_fixture/BlacklistedClass.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState\TestFixture; 12 | 13 | /** 14 | */ 15 | class BlacklistedClass 16 | { 17 | private static $attribute; 18 | } 19 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/global-state/tests/_fixture/BlacklistedInterface.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState\TestFixture; 12 | 13 | /** 14 | */ 15 | interface BlacklistedInterface 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/global-state/tests/_fixture/SnapshotFunctions.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState\TestFixture; 12 | 13 | function snapshotFunction() 14 | { 15 | } 16 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/global-state/tests/_fixture/SnapshotTrait.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\GlobalState\TestFixture; 12 | 13 | /** 14 | */ 15 | trait SnapshotTrait 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/recursion-context/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | phpunit.xml 3 | composer.lock 4 | composer.phar 5 | vendor/ 6 | cache.properties 7 | build/LICENSE 8 | build/README.md 9 | build/*.tgz 10 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/recursion-context/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | - hhvm 10 | 11 | sudo: false 12 | 13 | before_script: 14 | - composer self-update 15 | - composer install --no-interaction --prefer-source --dev 16 | 17 | script: ./vendor/bin/phpunit 18 | 19 | notifications: 20 | email: false 21 | irc: "irc.freenode.org#phpunit" 22 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/recursion-context/src/Exception.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * For the full copyright and license information, please view the LICENSE 8 | * file that was distributed with this source code. 9 | */ 10 | 11 | namespace SebastianBergmann\RecursionContext; 12 | 13 | /** 14 | */ 15 | interface Exception 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/arrow.gif -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/booleanMappingKeys.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Miscellaneous 3 | spec: 2.21 4 | yaml: | 5 | true: true 6 | false: false 7 | php: | 8 | array( 9 | 'true' => true, 10 | 'false' => false, 11 | ) 12 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/index.yml: -------------------------------------------------------------------------------- 1 | - escapedCharacters 2 | - sfComments 3 | - sfCompact 4 | - sfTests 5 | - sfObjects 6 | - sfMergeKey 7 | - sfQuotes 8 | - YtsAnchorAlias 9 | - YtsBasicTests 10 | - YtsBlockMapping 11 | - YtsDocumentSeparator 12 | - YtsErrorTests 13 | - YtsFlowCollections 14 | - YtsFoldedScalars 15 | - YtsNullsAndEmpties 16 | - YtsSpecificationExamples 17 | - YtsTypeTransfers 18 | - unindentedCollections 19 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/legacyBooleanMappingKeys.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Miscellaneous 3 | spec: 2.21 4 | yaml: | 5 | true: true 6 | false: false 7 | php: | 8 | array( 9 | 1 => true, 10 | 0 => false, 11 | ) 12 | --- 13 | test: Boolean 14 | yaml: | 15 | false: used as key 16 | logical: true 17 | answer: false 18 | php: | 19 | array( 20 | false => 'used as key', 21 | 'logical' => true, 22 | 'answer' => false 23 | ) 24 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/legacyNonStringKeys.yml: -------------------------------------------------------------------------------- 1 | - legacyBooleanMappingKeys 2 | - legacyNullMappingKey 3 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/legacyNullMappingKey.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Miscellaneous 3 | spec: 2.21 4 | yaml: | 5 | null: ~ 6 | php: | 7 | array( 8 | '' => null, 9 | ) 10 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/multiple_lines_as_literal_block.yml: -------------------------------------------------------------------------------- 1 | data: 2 | single_line: 'foo bar baz' 3 | multi_line: | 4 | foo 5 | line with trailing spaces: 6 | 7 | bar 8 | integer like line: 9 | 123456789 10 | empty line: 11 | 12 | baz 13 | nested_inlined_multi_line_string: { inlined_multi_line: "foo\nbar\r\nempty line:\n\nbaz" } 14 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/nonStringKeys.yml: -------------------------------------------------------------------------------- 1 | - booleanMappingKeys 2 | - numericMappingKeys 3 | - nullMappingKey 4 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/nullMappingKey.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Miscellaneous 3 | spec: 2.21 4 | yaml: | 5 | null: ~ 6 | php: | 7 | array( 8 | 'null' => null, 9 | ) 10 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/symfony/yaml/Tests/Fixtures/sfObjects.yml: -------------------------------------------------------------------------------- 1 | --- %YAML:1.0 2 | test: Objects 3 | brief: > 4 | Comments at the end of a line 5 | yaml: | 6 | ex1: "foo # bar" 7 | ex2: "foo # bar" # comment 8 | ex3: 'foo # bar' # comment 9 | ex4: foo # comment 10 | php: | 11 | array('ex1' => 'foo # bar', 'ex2' => 'foo # bar', 'ex3' => 'foo # bar', 'ex4' => 'foo') 12 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/webmozart/assert/.composer-auth.json: -------------------------------------------------------------------------------- 1 | { 2 | "github-oauth": { 3 | "github.com": "PLEASE DO NOT USE THIS TOKEN IN YOUR OWN PROJECTS/FORKS", 4 | "github.com": "This token is reserved for testing the webmozart/* repositories", 5 | "github.com": "a9debbffdd953ee9b3b82dbc3b807cde2086bb86" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/webmozart/assert/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /aliyun-dysms-php-sdk/api_sdk/vendor/webmozart/assert/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: symfony 2 | 3 | enabled: 4 | - ordered_use 5 | 6 | disabled: 7 | - empty_return 8 | - phpdoc_annotation_without_dot # This is still buggy: https://github.com/symfony/symfony/pull/19198 9 | -------------------------------------------------------------------------------- /common/home/My_controller.class.php: -------------------------------------------------------------------------------- 1 | model=new models(); 12 | } 13 | } -------------------------------------------------------------------------------- /configs/database.php: -------------------------------------------------------------------------------- 1 | "127.0.0.1", //数据库地址 4 | "HostName"=>"root", //数据库用户名 5 | "HostPwd"=>"root", //数据库密码 6 | "DbName"=>"oam", //数据库 7 | "Port"=>"3306", //数据库端口号 8 | "Charset"=>"utf8" //数据库编码 9 | ); -------------------------------------------------------------------------------- /controllers/admin/Indexc.class.php: -------------------------------------------------------------------------------- 1 | SmDisplay(); 11 | } 12 | //订餐系统中心页面请求 13 | public function main() 14 | { 15 | $this->SmDisplay(); 16 | } 17 | //订餐系统更新前台页面请求 18 | public function updatePage() 19 | { 20 | $this->model->loadmodel(); 21 | } 22 | } 23 | 24 | ?> -------------------------------------------------------------------------------- /controllers/adminmer/Indexc.class.php: -------------------------------------------------------------------------------- 1 | SmDisplay(); 11 | } 12 | public function main() 13 | { 14 | $this->SmDisplay(); 15 | } 16 | public function updatePage() 17 | { 18 | $this->model->loadmodel(); 19 | } 20 | } 21 | 22 | ?> -------------------------------------------------------------------------------- /controllers/home/Aboutc.class.php: -------------------------------------------------------------------------------- 1 | SmDisplay("about"); 8 | } 9 | //订餐系统前台投诉建议请求 10 | public function comSu() 11 | { 12 | $this->model->loadmodel(); 13 | } 14 | //订餐系统前台商家入驻申请 15 | public function shopApply() 16 | { 17 | $this->model->loadmodel(); 18 | } 19 | } -------------------------------------------------------------------------------- /controllers/home/Indexc.class.php: -------------------------------------------------------------------------------- 1 | model->loadmodel(); 8 | $this->SmAssign("newip",$ip); 9 | $this->SmDisplay(); 10 | } 11 | //订餐系统前台获取当前城市请求 12 | public function city() 13 | { 14 | $this->model->loadmodel(); 15 | } 16 | } -------------------------------------------------------------------------------- /lib/configs/code.php: -------------------------------------------------------------------------------- 1 | 首页控制

欢迎您,你现在可以使用框架啦

官方地址:www.fmlynet.cn

'; 11 | } 12 | } 13 | 14 | ?> -------------------------------------------------------------------------------- /lib/configs/common.php: -------------------------------------------------------------------------------- 1 | 12 | * Name: noprint
13 | * Purpose: return an empty string 14 | * 15 | * @author Uwe Tews 16 | * @return string with compiled code 17 | */ 18 | function smarty_modifiercompiler_noprint() 19 | { 20 | return "''"; 21 | } 22 | -------------------------------------------------------------------------------- /lib/smarty/libs/plugins/variablefilter.htmlspecialchars.php: -------------------------------------------------------------------------------- 1 | Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- '; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /lib/smarty/travis.ini: -------------------------------------------------------------------------------- 1 | extension = "memcache.so" 2 | extension = "apc.so" -------------------------------------------------------------------------------- /lib/views/view.class.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /webs/Mylg/2017-11-29/-adminmerBalrecharge.txt: -------------------------------------------------------------------------------- 1 | 当前时间:2017-11-29 16:45:25 当前用户:1000(商家) 当前操作方法:订单号:1511945035975,处理完成,加款0.01元,加款后余额0.01元 当前的状态:1 2 | 当前时间:2017-11-29 19:24:12 当前用户:1000(商家) 当前操作方法:订单号:1511952388748,处理完成,加款0.01元,加款后余额0.02元 当前的状态:1 3 | 当前时间:2017-11-29 19:30:08 当前用户:1001(商家) 当前操作方法:订单号:1511954965330,处理完成,加款0.01元,加款后余额0.01元 当前的状态:1 4 | -------------------------------------------------------------------------------- /webs/Mylg/2017-11-30/-homeBalrecharge.txt: -------------------------------------------------------------------------------- 1 | 当前时间:2017-11-30 17:18:05 当前用户:17343022862(用户) 当前操作方法:订单号:1000,通过支付宝充值余额成功,支付宝交易号2017113017191257178充值余额20 当前的状态:1 2 | -------------------------------------------------------------------------------- /webs/Mylg/2017-11-30/-homejifenrecharge.txt: -------------------------------------------------------------------------------- 1 | 当前时间:2017-11-30 17:17:07 当前用户:17343022862(用户) 当前操作方法:订单号1512033427753原因下单成功,扣除积分0个,扣除后积分0个 当前的状态:1 2 | -------------------------------------------------------------------------------- /webs/Mylg/2017-12-01/-homeBalrecharge.txt: -------------------------------------------------------------------------------- 1 | 当前时间:2017-12-01 08:47:38 当前用户:18710051929(用户) 当前操作方法:订单号:1000,通过支付宝充值余额成功,支付宝交易号2017120108484798735充值余额0.01 当前的状态:1 2 | 当前时间:2017-12-01 09:02:37 当前用户:18710051929(用户) 当前操作方法:订单号:1000,通过支付宝充值余额成功,支付宝交易号2017120109035078776充值余额0.01 当前的状态:1 3 | -------------------------------------------------------------------------------- /webs/Mylg/2017-12-03/-homeBalrecharge.txt: -------------------------------------------------------------------------------- 1 | 当前时间:2017-12-03 19:37:40 当前用户:admin(管理) 当前操作方法:给18710051929用户加款9000元,加款后余额9000元 当前的状态:1 2 | 当前时间:2017-12-03 20:52:51 当前用户:15035851295(用户) 当前操作方法:订单号:1000,通过支付宝充值余额成功,支付宝交易号2017120320480938321充值余额1 当前的状态:1 3 | 当前时间:2017-12-03 21:05:07 当前用户:18710051929(用户) 当前操作方法:订单号:1512306304266,下单成功,扣款余额0.02元,扣款后用户余额8999.98元 当前的状态:1 4 | -------------------------------------------------------------------------------- /webs/Mylg/2017-12-03/-homejifenrecharge.txt: -------------------------------------------------------------------------------- 1 | 当前时间:2017-12-03 18:32:09 当前用户:18710051929(用户) 当前操作方法:订单号1512297129159原因下单成功,扣除积分0个,扣除后积分0个 当前的状态:1 2 | 当前时间:2017-12-03 21:05:04 当前用户:18710051929(用户) 当前操作方法:订单号1512306304266原因下单成功,扣除积分0个,扣除后积分0个 当前的状态:1 3 | -------------------------------------------------------------------------------- /webs/Mylg/2017-12-04/-homeBalrecharge.txt: -------------------------------------------------------------------------------- 1 | 当前时间:2017-12-04 10:17:30 当前用户:18710051929(用户) 当前操作方法:订单号:1512353847988,下单成功,扣款余额0.01元,扣款后用户余额8999.97元 当前的状态:1 2 | 当前时间:2017-12-04 10:18:10 当前用户:18710051929(用户) 当前操作方法:订单号:1512353887594,下单成功,扣款余额24元,扣款后用户余额8975.97元 当前的状态:1 3 | 当前时间:2017-12-04 17:23:40 当前用户:18710051929(用户) 当前操作方法:订单号:1512378092264,下单成功,扣款余额0.01元,扣款后用户余额8975.96元 当前的状态:1 4 | 当前时间:2017-12-04 17:23:44 当前用户:18710051929(用户) 当前操作方法:订单号:1512378092264,下单成功,扣款余额0.01元,扣款后用户余额8975.95元 当前的状态:1 5 | -------------------------------------------------------------------------------- /webs/Mylg/2017-12-04/-homejifenrecharge.txt: -------------------------------------------------------------------------------- 1 | 当前时间:2017-12-04 10:17:27 当前用户:18710051929(用户) 当前操作方法:订单号1512353847988原因下单成功,扣除积分0个,扣除后积分0个 当前的状态:1 2 | 当前时间:2017-12-04 10:18:07 当前用户:18710051929(用户) 当前操作方法:订单号1512353887594原因下单成功,扣除积分0个,扣除后积分0个 当前的状态:1 3 | 当前时间:2017-12-04 10:18:27 当前用户:18710051929(用户) 当前操作方法:订单号1512353907349原因下单成功,扣除积分0个,扣除后积分0个 当前的状态:1 4 | 当前时间:2017-12-04 17:01:32 当前用户:18710051929(用户) 当前操作方法:订单号1512378092264原因下单成功,扣除积分0个,扣除后积分0个 当前的状态:1 5 | -------------------------------------------------------------------------------- /webs/Srce/css/admin/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/css/admin/global.css -------------------------------------------------------------------------------- /webs/Srce/css/adminmer/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/css/adminmer/global.css -------------------------------------------------------------------------------- /webs/Srce/css/home/common.css: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | /***公用***/ 4 | 5 | 6 | .fw{ 7 | font-weight: bold; 8 | } 9 | 10 | .f-select{ 11 | -webkit-user-select:none; 12 | -moz-user-select:none; 13 | -ms-user-select:none; 14 | user-select:none; 15 | } 16 | 17 | .clear{ 18 | clear:both; 19 | } 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /webs/Srce/css/home/page.css: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | 3 | 4 | .page a { 5 | /*text-decoration: none; 6 | color: #428bca; 7 | background: 0 0; 8 | font-size: 14px;*/ 9 | } 10 | 11 | .page a:hover { 12 | /*text-decoration: underline; */ 13 | } -------------------------------------------------------------------------------- /webs/Srce/css/public/page.css: -------------------------------------------------------------------------------- 1 | ul li{ 2 | 3 | margin-left: 10px; 4 | list-style: none; 5 | } 6 | ul li a{ 7 | width:17px; 8 | height:20px; 9 | font:12px/20px "宋体"; 10 | border:1px solid #CCC; 11 | display:inline-block; 12 | text-align:center; 13 | text-decoration:none; 14 | margin-left: 10px; 15 | } 16 | ul li a:hover,.active{ background-color:#1f3a87; 17 | color:#FFF;} 18 | .ww{ width:64px;} -------------------------------------------------------------------------------- /webs/Srce/image/admin/admin_icon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/admin_icon_close.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/admin_icon_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/admin_icon_open.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/attach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/attach.jpg -------------------------------------------------------------------------------- /webs/Srce/image/admin/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/delete.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon/e.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon/i.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon/icon.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon/j.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon/login_btn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon/login_btn.jpg -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon/n.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon/red_link.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon/red_link.jpg -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon/t.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon/user_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon/user_icon.jpg -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon_down_arrow.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon_phone.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/icon_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/icon_right_arrow.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/logo-50-50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/logo-50-50.jpg -------------------------------------------------------------------------------- /webs/Srce/image/admin/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/logo.jpg -------------------------------------------------------------------------------- /webs/Srce/image/admin/round_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/round_24.png -------------------------------------------------------------------------------- /webs/Srce/image/admin/webLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/admin/webLogo.jpg -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/admin_icon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/admin_icon_close.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/admin_icon_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/admin_icon_open.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/attach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/attach.jpg -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/delete.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon/e.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon/i.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon/icon.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon/j.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon/login_btn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon/login_btn.jpg -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon/n.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon/red_link.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon/red_link.jpg -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon/t.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon/user_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon/user_icon.jpg -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon_down_arrow.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon_phone.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/icon_right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/icon_right_arrow.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/logo-50-50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/logo-50-50.jpg -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/logo.jpg -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/round_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/round_24.png -------------------------------------------------------------------------------- /webs/Srce/image/adminmer/webLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/adminmer/webLogo.jpg -------------------------------------------------------------------------------- /webs/Srce/image/home/HeroDesktop_SALAD_Option2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/HeroDesktop_SALAD_Option2.jpg -------------------------------------------------------------------------------- /webs/Srce/image/home/about_header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/about_header_bg.jpg -------------------------------------------------------------------------------- /webs/Srce/image/home/alipay_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/alipay_50.png -------------------------------------------------------------------------------- /webs/Srce/image/home/banner-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/banner-lg.png -------------------------------------------------------------------------------- /webs/Srce/image/home/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/close.png -------------------------------------------------------------------------------- /webs/Srce/image/home/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/favicon.ico -------------------------------------------------------------------------------- /webs/Srce/image/home/header_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/header_logo.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_address.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_balance.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_buy.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_cart.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_cart_22_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_cart_22_22.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_cash.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_cash_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_cash_small.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_close.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_full_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_full_star.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_isnull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_isnull.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_my.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_open.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_order.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_pay_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_pay_bg.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_phone.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_pwd.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_score.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_search.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_settings.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_star_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_star_green.png -------------------------------------------------------------------------------- /webs/Srce/image/home/icon_star_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/icon_star_red.png -------------------------------------------------------------------------------- /webs/Srce/image/home/logo-50-50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/logo-50-50.jpg -------------------------------------------------------------------------------- /webs/Srce/image/home/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/logo.jpg -------------------------------------------------------------------------------- /webs/Srce/image/home/mmqrcode1511835374057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/mmqrcode1511835374057.png -------------------------------------------------------------------------------- /webs/Srce/image/home/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/new.png -------------------------------------------------------------------------------- /webs/Srce/image/home/no_pay_40_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/no_pay_40_40.png -------------------------------------------------------------------------------- /webs/Srce/image/home/outdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/outdate.png -------------------------------------------------------------------------------- /webs/Srce/image/home/place_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/place_bg.jpg -------------------------------------------------------------------------------- /webs/Srce/image/home/qr_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/qr_code.jpg -------------------------------------------------------------------------------- /webs/Srce/image/home/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/qrcode.png -------------------------------------------------------------------------------- /webs/Srce/image/home/red_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/red_point.png -------------------------------------------------------------------------------- /webs/Srce/image/home/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/right_arrow.png -------------------------------------------------------------------------------- /webs/Srce/image/home/round_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/round_24.png -------------------------------------------------------------------------------- /webs/Srce/image/home/test01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/test01.jpg -------------------------------------------------------------------------------- /webs/Srce/image/home/test02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/test02.jpg -------------------------------------------------------------------------------- /webs/Srce/image/home/test03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/test03.jpg -------------------------------------------------------------------------------- /webs/Srce/image/home/used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/used.png -------------------------------------------------------------------------------- /webs/Srce/image/home/w_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/w_footer.png -------------------------------------------------------------------------------- /webs/Srce/image/home/weixin_45_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/weixin_45_45.png -------------------------------------------------------------------------------- /webs/Srce/image/home/weixin_50_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/weixin_50_50.png -------------------------------------------------------------------------------- /webs/Srce/image/home/weixin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/weixin_logo.png -------------------------------------------------------------------------------- /webs/Srce/image/home/yue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/home/yue.jpg -------------------------------------------------------------------------------- /webs/Srce/image/public/HeroDesktop_SALAD_Option2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/HeroDesktop_SALAD_Option2.jpg -------------------------------------------------------------------------------- /webs/Srce/image/public/about_header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/about_header_bg.jpg -------------------------------------------------------------------------------- /webs/Srce/image/public/alipay_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/alipay_50.png -------------------------------------------------------------------------------- /webs/Srce/image/public/banner-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/banner-lg.png -------------------------------------------------------------------------------- /webs/Srce/image/public/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/close.png -------------------------------------------------------------------------------- /webs/Srce/image/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/favicon.ico -------------------------------------------------------------------------------- /webs/Srce/image/public/header_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/header_logo.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_address.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_balance.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_buy.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_cart.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_cart_22_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_cart_22_22.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_cash.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_cash_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_cash_small.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_close.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_full_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_full_star.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_isnull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_isnull.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_my.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_open.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_order.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_pay_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_pay_bg.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_phone.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_pwd.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_score.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_search.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_settings.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_star_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_star_green.png -------------------------------------------------------------------------------- /webs/Srce/image/public/icon_star_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/icon_star_red.png -------------------------------------------------------------------------------- /webs/Srce/image/public/logo-50-50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/logo-50-50.jpg -------------------------------------------------------------------------------- /webs/Srce/image/public/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/logo.jpg -------------------------------------------------------------------------------- /webs/Srce/image/public/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/new.png -------------------------------------------------------------------------------- /webs/Srce/image/public/no_pay_40_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/no_pay_40_40.png -------------------------------------------------------------------------------- /webs/Srce/image/public/outdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/outdate.png -------------------------------------------------------------------------------- /webs/Srce/image/public/place_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/place_bg.jpg -------------------------------------------------------------------------------- /webs/Srce/image/public/qr_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/qr_code.jpg -------------------------------------------------------------------------------- /webs/Srce/image/public/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/qrcode.png -------------------------------------------------------------------------------- /webs/Srce/image/public/red_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/red_point.png -------------------------------------------------------------------------------- /webs/Srce/image/public/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/right_arrow.png -------------------------------------------------------------------------------- /webs/Srce/image/public/round_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/round_24.png -------------------------------------------------------------------------------- /webs/Srce/image/public/test01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/test01.jpg -------------------------------------------------------------------------------- /webs/Srce/image/public/test02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/test02.jpg -------------------------------------------------------------------------------- /webs/Srce/image/public/test03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/test03.jpg -------------------------------------------------------------------------------- /webs/Srce/image/public/used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/used.png -------------------------------------------------------------------------------- /webs/Srce/image/public/w_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/w_footer.png -------------------------------------------------------------------------------- /webs/Srce/image/public/weixin_45_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/weixin_45_45.png -------------------------------------------------------------------------------- /webs/Srce/image/public/weixin_50_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/weixin_50_50.png -------------------------------------------------------------------------------- /webs/Srce/image/public/weixin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/image/public/weixin_logo.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/animated-overlay.gif -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/admin/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/animated-overlay.gif -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/js/adminmer/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /webs/Srce/js/home/baidu_js_push.js: -------------------------------------------------------------------------------- 1 | 2 | (function(){ 3 | var bp = document.createElement('script'); 4 | var curProtocol = window.location.protocol.split(':')[0]; 5 | if (curProtocol === 'https'){ 6 | bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; 7 | } 8 | else{ 9 | bp.src = 'http://push.zhanzhang.baidu.com/push.js'; 10 | } 11 | var s = document.getElementsByTagName("script")[0]; 12 | s.parentNode.insertBefore(bp, s); 13 | })(); 14 | -------------------------------------------------------------------------------- /webs/Srce/js/home/footer.js: -------------------------------------------------------------------------------- 1 | 2 | (function($) { 3 | $('.footer-content-weixing').hover(function() { 4 | $('.weixin-pic').show(); 5 | }, function() { 6 | $('.weixin-pic').hide(); 7 | }); 8 | })(jQuery); 9 | 10 | -------------------------------------------------------------------------------- /webs/Srce/js/public/verifys.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $(".verifys").live("click",function(){ 3 | $(this).attr('src',verifysurl+"&V="+Math.random()); 4 | }) 5 | }) 6 | -------------------------------------------------------------------------------- /webs/Srce/raw/2478.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/raw/2478.mp3 -------------------------------------------------------------------------------- /webs/Srce/raw/bg_voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEMaker/IDEMaker-dingcan-php/e4deb4e0cdcffd3f6760471d2a68b8f35686956b/webs/Srce/raw/bg_voice.mp3 --------------------------------------------------------------------------------