From d62a51073f6e37a53ab6cdf7e8d14ac0597644c2 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Fri, 12 Dec 2014 09:58:05 -0500 Subject: [PATCH] Updated dependencies. --- composer.lock | 50 +-- vendor/autoload.php | 2 +- vendor/composer/ClassLoader.php | 5 +- vendor/composer/autoload_real.php | 8 +- vendor/composer/installed.json | 354 ++++++++-------- vendor/ocramius/proxy-manager/.gitignore | 1 + .../.scrutinizer-ci.phpunit.xml.dist | 28 -- .../ocramius/proxy-manager/.scrutinizer.yml | 11 +- vendor/ocramius/proxy-manager/.travis.yml | 5 +- vendor/ocramius/proxy-manager/README.md | 152 +------ vendor/ocramius/proxy-manager/STABILITY.md | 19 + .../ocramius/proxy-manager/build/.gitignore | 4 - vendor/ocramius/proxy-manager/composer.json | 2 +- ...ess-interceptor-scope-localizer-proxy.html | 197 +++++++++ ...access-interceptor-value-holder-proxy.html | 208 ++++++++++ .../proxy-manager/html-docs/contributing.html | 139 +++++++ .../proxy-manager/html-docs/copyright.html | 100 +++++ .../proxy-manager/html-docs/credits.html | 113 ++++++ .../proxy-manager/html-docs/css/styles.css | 203 ++++++++++ .../proxy-manager/html-docs/download.html | 97 +++++ .../proxy-manager/html-docs/favicon.ico | Bin 0 -> 173250 bytes .../proxy-manager/html-docs/ghost-object.html | 314 ++++++++++++++ .../proxy-manager/html-docs/img/block.png | Bin 0 -> 2373 bytes .../proxy-manager/html-docs/img/enf.png | Bin 0 -> 3738 bytes .../proxy-manager/html-docs/index.html | 295 ++++++++++++++ .../proxy-manager/html-docs/null-object.html | 185 +++++++++ .../proxy-manager/html-docs/production.html | 114 ++++++ .../html-docs/remote-object.html | 203 ++++++++++ .../html-docs/virtual-proxy.html | 305 ++++++++++++++ vendor/ocramius/proxy-manager/index.html | 11 + .../src/ProxyManager/Configuration.php | 118 ++++-- .../InvalidProxiedClassException.php | 38 ++ .../Factory/AbstractBaseFactory.php | 69 ++-- ...AccessInterceptorScopeLocalizerFactory.php | 5 + .../AccessInterceptorValueHolderFactory.php | 8 +- .../Factory/LazyLoadingGhostFactory.php | 5 + .../Factory/LazyLoadingValueHolderFactory.php | 5 + .../Factory/NullObjectFactory.php | 5 + .../Factory/RemoteObjectFactory.php | 5 + .../Generator/Util/ClassGeneratorUtils.php | 53 +++ .../Inflector/ClassNameInflector.php | 12 +- .../Inflector/Util/ParameterEncoder.php | 2 +- .../Inflector/Util/ParameterHasher.php | 40 ++ .../MethodPrefixInterceptors.php | 2 +- .../MethodSuffixInterceptors.php | 2 +- .../MethodGenerator/InterceptedMethod.php | 2 +- .../MethodGenerator/MagicGet.php | 2 +- .../MethodGenerator/MagicIsset.php | 2 +- .../MethodGenerator/MagicSet.php | 2 +- .../MethodGenerator/MagicUnset.php | 2 +- ...cessInterceptorScopeLocalizerGenerator.php | 80 ++-- .../MethodGenerator/Constructor.php | 4 +- .../MethodGenerator/InterceptedMethod.php | 2 +- .../MethodGenerator/MagicGet.php | 2 +- .../MethodGenerator/MagicIsset.php | 2 +- .../MethodGenerator/MagicSet.php | 2 +- .../MethodGenerator/MagicUnset.php | 2 +- .../AccessInterceptorValueHolderGenerator.php | 112 ++--- .../Assertion/CanProxyAssertion.php | 102 +++++ .../MethodGenerator/Constructor.php | 4 +- .../MethodGenerator/InitializeProxy.php | 2 +- .../LazyLoadingMethodInterceptor.php | 2 +- .../MethodGenerator/MagicGet.php | 2 +- .../MethodGenerator/MagicIsset.php | 2 +- .../MethodGenerator/MagicSet.php | 2 +- .../MethodGenerator/MagicUnset.php | 2 +- .../InitializationTracker.php | 2 +- .../PropertyGenerator/InitializerProperty.php | 2 +- .../LazyLoadingGhostGenerator.php | 63 +-- .../MethodGenerator/MagicGet.php | 2 +- .../MethodGenerator/MagicIsset.php | 2 +- .../MethodGenerator/MagicSet.php | 2 +- .../MethodGenerator/MagicUnset.php | 2 +- .../PropertyGenerator/InitializerProperty.php | 2 +- .../PropertyGenerator/ValueHolderProperty.php | 2 +- .../LazyLoadingValueHolderGenerator.php | 79 ++-- .../MethodGenerator/Constructor.php | 2 +- .../ProxyGenerator/NullObjectGenerator.php | 14 +- .../PublicPropertiesDefaults.php | 2 +- .../PropertyGenerator/PublicPropertiesMap.php | 2 +- .../MethodGenerator/Constructor.php | 2 +- .../RemoteObject/MethodGenerator/MagicGet.php | 2 +- .../MethodGenerator/MagicIsset.php | 2 +- .../RemoteObject/MethodGenerator/MagicSet.php | 2 +- .../MethodGenerator/MagicUnset.php | 2 +- .../MethodGenerator/RemoteObjectMethod.php | 2 +- .../PropertyGenerator/AdapterProperty.php | 2 +- .../ProxyGenerator/RemoteObjectGenerator.php | 61 +-- .../Signature/ClassSignatureGenerator.php | 58 +++ .../ClassSignatureGeneratorInterface.php | 40 ++ .../Exception/ExceptionInterface.php | 29 ++ .../Exception/InvalidSignatureException.php | 50 +++ .../Exception/MissingSignatureException.php | 48 +++ .../Signature/SignatureChecker.php | 68 ++++ .../Signature/SignatureCheckerInterface.php | 43 ++ .../Signature/SignatureGenerator.php | 66 +++ .../Signature/SignatureGeneratorInterface.php | 46 +++ .../src/ProxyManager/Version.php | 39 ++ .../Autoloader/AutoloaderTest.php | 3 + .../ProxyManagerTest/ConfigurationTest.php | 59 +++ .../Exception/DisabledMethodExceptionTest.php | 3 + .../InvalidProxiedClassExceptionTest.php | 28 +- .../InvalidProxyDirectoryExceptionTest.php | 3 + .../UnsupportedProxiedClassExceptionTest.php | 3 + .../Factory/AbstractBaseFactoryTest.php | 36 +- ...ssInterceptorScopeLocalizerFactoryTest.php | 34 +- ...ccessInterceptorValueHolderFactoryTest.php | 34 +- .../Factory/LazyLoadingGhostFactoryTest.php | 34 +- .../LazyLoadingValueHolderFactoryTest.php | 34 +- .../Factory/NullObjectFactoryTest.php | 34 +- .../RemoteObject/Adapter/BaseAdapterTest.php | 2 + .../RemoteObject/Adapter/JsonRpcTest.php | 2 + .../Factory/RemoteObject/Adapter/SoapTest.php | 2 + .../RemoteObject/Adapter/XmlRpcTest.php | 2 + .../Factory/RemoteObjectFactoryTest.php | 34 +- .../FileLocator/FileLocatorTest.php | 2 + ...nterceptorScopeLocalizerFunctionalTest.php | 18 +- ...ssInterceptorValueHolderFunctionalTest.php | 18 +- .../FatalPreventionFunctionalTest.php | 171 ++++++++ .../LazyLoadingGhostFunctionalTest.php | 18 +- .../LazyLoadingValueHolderFunctionalTest.php | 18 +- .../MultipleProxyGenerationTest.php | 11 +- .../Functional/NullObjectFunctionalTest.php | 18 +- .../Functional/RemoteObjectFunctionalTest.php | 17 +- .../Generator/ClassGeneratorTest.php | 2 + .../Generator/MagicMethodGeneratorTest.php | 2 + .../Generator/MethodGeneratorTest.php | 1 + .../Generator/ParameterGeneratorTest.php | 1 + .../Util/ClassGeneratorUtilsTest.php | 72 ++++ .../Util/UniqueIdentifierGeneratorTest.php | 2 + .../BaseGeneratorStrategyTest.php | 2 + .../EvaluatingGeneratorStrategyTest.php | 2 + .../FileWriterGeneratorStrategyTest.php | 2 + .../Inflector/ClassNameInflectorTest.php | 44 +- .../Inflector/Util/ParameterEncoderTest.php | 2 + .../Inflector/Util/ParameterHasherTest.php | 62 +++ .../AbstractProxyGeneratorTest.php | 2 + .../MethodGenerator/MagicWakeupTest.php | 2 + .../SetMethodPrefixInterceptorTest.php | 2 + .../SetMethodSuffixInterceptorTest.php | 2 + .../MethodPrefixInterceptorsTest.php | 1 + .../MethodSuffixInterceptorsTest.php | 1 + .../MethodGenerator/ConstructorTest.php | 2 + .../MethodGenerator/InterceptedMethodTest.php | 1 + .../MethodGenerator/MagicCloneTest.php | 2 + .../MethodGenerator/MagicGetTest.php | 2 + .../MethodGenerator/MagicIssetTest.php | 2 + .../MethodGenerator/MagicSetTest.php | 2 + .../MethodGenerator/MagicSleepTest.php | 2 + .../MethodGenerator/MagicUnsetTest.php | 2 + .../Util/InterceptorGeneratorTest.php | 2 + .../AccessInterceptorScopeLocalizerTest.php | 1 + .../MethodGenerator/ConstructorTest.php | 2 + .../MethodGenerator/ConstructorTest.php | 2 + .../MethodGenerator/InterceptedMethodTest.php | 4 +- .../MethodGenerator/MagicCloneTest.php | 2 + .../MethodGenerator/MagicGetTest.php | 2 + .../MethodGenerator/MagicIssetTest.php | 2 + .../MethodGenerator/MagicSetTest.php | 2 + .../MethodGenerator/MagicUnsetTest.php | 2 + .../Util/InterceptorGeneratorTest.php | 2 + .../AccessInterceptorValueHolderTest.php | 1 + .../Assertion/CanProxyAssertionTest.php | 113 ++++++ .../MethodGenerator/CallInitializerTest.php | 2 + .../GetProxyInitializerTest.php | 2 + .../MethodGenerator/InitializeProxyTest.php | 2 + .../IsProxyInitializedTest.php | 2 + .../LazyLoadingMethodInterceptorTest.php | 2 + .../MethodGenerator/MagicCloneTest.php | 2 + .../MethodGenerator/MagicGetTest.php | 2 + .../MethodGenerator/MagicIssetTest.php | 2 + .../MethodGenerator/MagicSetTest.php | 2 + .../MethodGenerator/MagicSleepTest.php | 2 + .../MethodGenerator/MagicUnsetTest.php | 2 + .../SetProxyInitializerTest.php | 2 + .../InitializationTrackerTest.php | 1 + .../InitializerPropertyTest.php | 1 + .../LazyLoadingGhostGeneratorTest.php | 1 + .../GetProxyInitializerTest.php | 2 + .../MethodGenerator/InitializeProxyTest.php | 2 + .../IsProxyInitializedTest.php | 2 + .../LazyLoadingMethodInterceptorTest.php | 2 + .../MethodGenerator/MagicCloneTest.php | 2 + .../MethodGenerator/MagicGetTest.php | 2 + .../MethodGenerator/MagicIssetTest.php | 2 + .../MethodGenerator/MagicSetTest.php | 2 + .../MethodGenerator/MagicSleepTest.php | 2 + .../MethodGenerator/MagicUnsetTest.php | 2 + .../SetProxyInitializerTest.php | 2 + .../InitializerPropertyTest.php | 1 + .../ValueHolderPropertyTest.php | 1 + .../LazyLoadingValueHolderGeneratorTest.php | 1 + .../MethodGenerator/ConstructorTest.php | 2 + .../NullObjectMethodInterceptorTest.php | 2 + .../NullObjectGeneratorTest.php | 5 +- .../AbstractUniquePropertyNameTest.php | 2 + .../PublicPropertiesDefaultsTest.php | 1 + .../PublicPropertiesMapTest.php | 1 + .../MethodGenerator/ConstructorTest.php | 2 + .../MethodGenerator/MagicGetTest.php | 2 + .../MethodGenerator/MagicIssetTest.php | 2 + .../MethodGenerator/MagicSetTest.php | 2 + .../MethodGenerator/MagicUnsetTest.php | 2 + .../RemoteObjectMethodTest.php | 2 + .../PropertyGenerator/AdapterPropertyTest.php | 1 + .../RemoteObjectGeneratorTest.php | 1 + .../Util/ProxiedMethodsFilterTest.php | 1 + .../Util/PublicScopeSimulatorTest.php | 1 + .../GetWrappedValueHolderValueTest.php | 2 + .../MethodGenerator/MagicSleepTest.php | 2 + .../Signature/ClassSignatureGeneratorTest.php | 87 ++++ .../InvalidSignatureExceptionTest.php | 57 +++ .../MissingSignatureExceptionTest.php | 56 +++ .../Signature/SignatureCheckerTest.php | 117 ++++++ .../Signature/SignatureGeneratorTest.php | 116 ++++++ .../tests/ProxyManagerTest/VersionTest.php | 42 ++ .../ClassWithAbstractProtectedMethod.php | 33 ++ .../ClassWithFinalMagicMethods.php | 88 ++++ .../ClassWithFinalMethods.php | 42 ++ .../ClassWithSelfHint.php | 38 ++ .../ProxyManagerTestAsset/FinalClass.php | 29 ++ .../Component/CssSelector/CssSelector.php | 4 +- .../CssSelector/Node/Specificity.php | 24 ++ .../Component/CssSelector/Parser/Token.php | 10 +- .../Tests/Node/SpecificityTest.php | 22 + .../Extension/AttributeMatchingExtension.php | 14 +- .../XPath/Extension/FunctionExtension.php | 10 +- .../XPath/Extension/HtmlExtension.php | 12 +- .../XPath/Extension/NodeExtension.php | 24 +- .../XPath/Extension/PseudoClassExtension.php | 14 +- .../CssSelector/XPath/Translator.php | 2 +- .../Component/CssSelector/XPath/XPathExpr.php | 8 +- .../Component/CssSelector/composer.json | 2 +- .../Symfony/Component/Process/PhpProcess.php | 10 +- .../Component/Process/Pipes/AbstractPipes.php | 74 ++++ .../Process/Pipes/PipesInterface.php | 60 +++ .../Component/Process/Pipes/UnixPipes.php | 214 ++++++++++ .../Component/Process/Pipes/WindowsPipes.php | 254 ++++++++++++ .../Symfony/Component/Process/Process.php | 87 ++-- .../Component/Process/ProcessPipes.php | 382 ------------------ .../Component/Process/ProcessUtils.php | 5 +- .../Process/Tests/AbstractProcessTest.php | 45 ++- .../Process/Tests/ProcessBuilderTest.php | 2 +- .../Symfony/Component/Process/composer.json | 2 +- .../yaml/Symfony/Component/Yaml/Dumper.php | 14 +- .../yaml/Symfony/Component/Yaml/Escaper.php | 6 +- .../Yaml/Exception/ParseException.php | 24 +- .../yaml/Symfony/Component/Yaml/Inline.php | 47 ++- .../yaml/Symfony/Component/Yaml/Parser.php | 77 ++-- .../Component/Yaml/Tests/DumperTest.php | 3 +- .../Fixtures/YtsSpecificationExamples.yml | 6 +- .../Component/Yaml/Tests/InlineTest.php | 279 ++++++++----- .../Yaml/Tests/ParseExceptionTest.php | 14 +- .../Component/Yaml/Tests/ParserTest.php | 23 +- .../yaml/Symfony/Component/Yaml/Yaml.php | 16 +- .../yaml/Symfony/Component/Yaml/composer.json | 2 +- 256 files changed, 6734 insertions(+), 1410 deletions(-) delete mode 100644 vendor/ocramius/proxy-manager/.scrutinizer-ci.phpunit.xml.dist create mode 100644 vendor/ocramius/proxy-manager/STABILITY.md delete mode 100644 vendor/ocramius/proxy-manager/build/.gitignore create mode 100644 vendor/ocramius/proxy-manager/html-docs/access-interceptor-scope-localizer-proxy.html create mode 100644 vendor/ocramius/proxy-manager/html-docs/access-interceptor-value-holder-proxy.html create mode 100644 vendor/ocramius/proxy-manager/html-docs/contributing.html create mode 100644 vendor/ocramius/proxy-manager/html-docs/copyright.html create mode 100644 vendor/ocramius/proxy-manager/html-docs/credits.html create mode 100644 vendor/ocramius/proxy-manager/html-docs/css/styles.css create mode 100644 vendor/ocramius/proxy-manager/html-docs/download.html create mode 100644 vendor/ocramius/proxy-manager/html-docs/favicon.ico create mode 100644 vendor/ocramius/proxy-manager/html-docs/ghost-object.html create mode 100644 vendor/ocramius/proxy-manager/html-docs/img/block.png create mode 100644 vendor/ocramius/proxy-manager/html-docs/img/enf.png create mode 100644 vendor/ocramius/proxy-manager/html-docs/index.html create mode 100644 vendor/ocramius/proxy-manager/html-docs/null-object.html create mode 100644 vendor/ocramius/proxy-manager/html-docs/production.html create mode 100644 vendor/ocramius/proxy-manager/html-docs/remote-object.html create mode 100644 vendor/ocramius/proxy-manager/html-docs/virtual-proxy.html create mode 100644 vendor/ocramius/proxy-manager/index.html create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Generator/Util/ClassGeneratorUtils.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/Util/ParameterHasher.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/Assertion/CanProxyAssertion.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Signature/ClassSignatureGenerator.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Signature/ClassSignatureGeneratorInterface.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/ExceptionInterface.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/InvalidSignatureException.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/MissingSignatureException.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureChecker.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureCheckerInterface.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureGenerator.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureGeneratorInterface.php create mode 100644 vendor/ocramius/proxy-manager/src/ProxyManager/Version.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/FatalPreventionFunctionalTest.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/Util/ClassGeneratorUtilsTest.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/Util/ParameterHasherTest.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Assertion/CanProxyAssertionTest.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/ClassSignatureGeneratorTest.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/Exception/InvalidSignatureExceptionTest.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/Exception/MissingSignatureExceptionTest.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/SignatureCheckerTest.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/SignatureGeneratorTest.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTest/VersionTest.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithAbstractProtectedMethod.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithFinalMagicMethods.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithFinalMethods.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithSelfHint.php create mode 100644 vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/FinalClass.php create mode 100644 vendor/symfony/process/Symfony/Component/Process/Pipes/AbstractPipes.php create mode 100644 vendor/symfony/process/Symfony/Component/Process/Pipes/PipesInterface.php create mode 100644 vendor/symfony/process/Symfony/Component/Process/Pipes/UnixPipes.php create mode 100644 vendor/symfony/process/Symfony/Component/Process/Pipes/WindowsPipes.php delete mode 100644 vendor/symfony/process/Symfony/Component/Process/ProcessPipes.php diff --git a/composer.lock b/composer.lock index 8460ee826d5..cd5fe028776 100644 --- a/composer.lock +++ b/composer.lock @@ -137,16 +137,16 @@ }, { "name": "ocramius/proxy-manager", - "version": "0.5.2", + "version": "1.0.0", "source": { "type": "git", "url": "https://github.com/Ocramius/ProxyManager.git", - "reference": "0ac0eb3e8e04c7fa75caaf1a43c5405623abf8f5" + "reference": "a80a39fac4fbd771aea7d3871929933a3a1bbf3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/0ac0eb3e8e04c7fa75caaf1a43c5405623abf8f5", - "reference": "0ac0eb3e8e04c7fa75caaf1a43c5405623abf8f5", + "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/a80a39fac4fbd771aea7d3871929933a3a1bbf3e", + "reference": "a80a39fac4fbd771aea7d3871929933a3a1bbf3e", "shasum": "" }, "require": { @@ -168,7 +168,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "0.6.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { @@ -196,7 +196,7 @@ "proxy pattern", "service proxies" ], - "time": "2014-09-28 14:18:11" + "time": "2014-12-12 10:59:05" }, { "name": "oyejorge/less.php", @@ -448,7 +448,7 @@ "include-path": [ "/" ], - "description": "Package contains ISPN (International Standard Product Numbers) validations such as:\n * ISSN\n * ISBN\n * ISMN\n * ISRC (International Standard Recording Code)\n * EAN8\n * EAN13\n * EAN14\n * UCC12\n * SSCC" + "description": "Package containes ISPN (International Standard Product Numbers) validations such as:\n * ISSN\n * ISBN\n * ISMN\n * ISRC (International Standard Recording Code)\n * EAN8\n * EAN13\n * EAN14\n * UCC12\n * SSCC" }, { "name": "pear-pear.php.net/XML_Util", @@ -512,17 +512,17 @@ }, { "name": "symfony/yaml", - "version": "v2.5.6", + "version": "v2.6.1", "target-dir": "Symfony/Component/Yaml", "source": { "type": "git", "url": "https://github.com/symfony/Yaml.git", - "reference": "2d9f527449cabfa8543dd7fa3a466d6ae83d6726" + "reference": "3346fc090a3eb6b53d408db2903b241af51dcb20" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Yaml/zipball/2d9f527449cabfa8543dd7fa3a466d6ae83d6726", - "reference": "2d9f527449cabfa8543dd7fa3a466d6ae83d6726", + "url": "https://api.github.com/repos/symfony/Yaml/zipball/3346fc090a3eb6b53d408db2903b241af51dcb20", + "reference": "3346fc090a3eb6b53d408db2903b241af51dcb20", "shasum": "" }, "require": { @@ -531,7 +531,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "2.6-dev" } }, "autoload": { @@ -555,7 +555,7 @@ ], "description": "Symfony Yaml Component", "homepage": "http://symfony.com", - "time": "2014-10-01 05:50:18" + "time": "2014-12-02 20:19:20" }, { "name": "vufind-org/vufindcode", @@ -1068,17 +1068,17 @@ }, { "name": "symfony/css-selector", - "version": "v2.5.6", + "version": "v2.6.1", "target-dir": "Symfony/Component/CssSelector", "source": { "type": "git", "url": "https://github.com/symfony/CssSelector.git", - "reference": "7cdf543a3f31935aae58de4e6e607d4bdeb3f5dc" + "reference": "93eb315b545b60a908271762fb4bfa1f9954b851" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/CssSelector/zipball/7cdf543a3f31935aae58de4e6e607d4bdeb3f5dc", - "reference": "7cdf543a3f31935aae58de4e6e607d4bdeb3f5dc", + "url": "https://api.github.com/repos/symfony/CssSelector/zipball/93eb315b545b60a908271762fb4bfa1f9954b851", + "reference": "93eb315b545b60a908271762fb4bfa1f9954b851", "shasum": "" }, "require": { @@ -1087,7 +1087,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "2.6-dev" } }, "autoload": { @@ -1115,21 +1115,21 @@ ], "description": "Symfony CssSelector Component", "homepage": "http://symfony.com", - "time": "2014-10-09 16:00:03" + "time": "2014-12-02 20:19:20" }, { "name": "symfony/process", - "version": "v2.5.6", + "version": "v2.6.1", "target-dir": "Symfony/Component/Process", "source": { "type": "git", "url": "https://github.com/symfony/Process.git", - "reference": "9bbacbb3a7a27b17c0d51e2f126f59e0e588ad3a" + "reference": "bf0c9bd625f13b0b0bbe39919225cf145dfb935a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Process/zipball/9bbacbb3a7a27b17c0d51e2f126f59e0e588ad3a", - "reference": "9bbacbb3a7a27b17c0d51e2f126f59e0e588ad3a", + "url": "https://api.github.com/repos/symfony/Process/zipball/bf0c9bd625f13b0b0bbe39919225cf145dfb935a", + "reference": "bf0c9bd625f13b0b0bbe39919225cf145dfb935a", "shasum": "" }, "require": { @@ -1138,7 +1138,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "2.6-dev" } }, "autoload": { @@ -1162,7 +1162,7 @@ ], "description": "Symfony Process Component", "homepage": "http://symfony.com", - "time": "2014-10-01 05:50:18" + "time": "2014-12-02 20:19:20" } ], "aliases": [], diff --git a/vendor/autoload.php b/vendor/autoload.php index 83ec3a8ef3e..dc9c17e6711 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer' . '/autoload_real.php'; -return ComposerAutoloaderInitc4a65bc36a0c8ed2b8f3216ed09d18dc::getLoader(); +return ComposerAutoloaderInitf4acc9fe958f13f4ed1b60de39066403::getLoader(); diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index 443364959a5..4a56396af55 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -56,7 +56,10 @@ class ClassLoader public function getPrefixes() { - return call_user_func_array('array_merge', $this->prefixesPsr0); + if (!empty($this->prefixesPsr0)) { + return call_user_func_array('array_merge', $this->prefixesPsr0); + } + return array(); } public function getPrefixesPsr4() diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 269d2176092..ba171a1ff9f 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInitc4a65bc36a0c8ed2b8f3216ed09d18dc +class ComposerAutoloaderInitf4acc9fe958f13f4ed1b60de39066403 { private static $loader; @@ -19,9 +19,9 @@ class ComposerAutoloaderInitc4a65bc36a0c8ed2b8f3216ed09d18dc return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInitc4a65bc36a0c8ed2b8f3216ed09d18dc', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInitf4acc9fe958f13f4ed1b60de39066403', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInitc4a65bc36a0c8ed2b8f3216ed09d18dc', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInitf4acc9fe958f13f4ed1b60de39066403', 'loadClassLoader')); $includePaths = require __DIR__ . '/include_paths.php'; array_push($includePaths, get_include_path()); @@ -48,7 +48,7 @@ class ComposerAutoloaderInitc4a65bc36a0c8ed2b8f3216ed09d18dc } } -function composerRequirec4a65bc36a0c8ed2b8f3216ed09d18dc($file) +function composerRequiref4acc9fe958f13f4ed1b60de39066403($file) { require $file; } diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 277252f985a..6618bffed04 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -790,71 +790,6 @@ "issues": "https://github.com/zendframework/ZendService_ReCaptcha/issues" } }, - { - "name": "ocramius/proxy-manager", - "version": "0.5.2", - "version_normalized": "0.5.2.0", - "source": { - "type": "git", - "url": "https://github.com/Ocramius/ProxyManager.git", - "reference": "0ac0eb3e8e04c7fa75caaf1a43c5405623abf8f5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/0ac0eb3e8e04c7fa75caaf1a43c5405623abf8f5", - "reference": "0ac0eb3e8e04c7fa75caaf1a43c5405623abf8f5", - "shasum": "" - }, - "require": { - "php": ">=5.3.3", - "zendframework/zend-code": ">2.2.5,<3.0" - }, - "require-dev": { - "ext-phar": "*", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "1.5.*" - }, - "suggest": { - "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects", - "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)", - "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)", - "zendframework/zend-stdlib": "To use the hydrator proxy", - "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)" - }, - "time": "2014-09-28 14:18:11", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.6.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-0": { - "ProxyManager\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "http://ocramius.github.com/" - } - ], - "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies", - "homepage": "https://github.com/Ocramius/ProxyManager", - "keywords": [ - "aop", - "lazy loading", - "proxy", - "proxy pattern", - "service proxies" - ] - }, { "name": "vufind-org/vufindhttp", "version": "v1.0.0", @@ -942,35 +877,41 @@ "description": "Class for representing ISBNs (a VuFind support library)" }, { - "name": "symfony/yaml", - "version": "v2.5.6", - "version_normalized": "2.5.6.0", - "target-dir": "Symfony/Component/Yaml", + "name": "behat/mink", + "version": "v1.6.0", + "version_normalized": "1.6.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/Yaml.git", - "reference": "2d9f527449cabfa8543dd7fa3a466d6ae83d6726" + "url": "https://github.com/Behat/Mink.git", + "reference": "090900a0049c441f1e072bbd837db4079b2250c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Yaml/zipball/2d9f527449cabfa8543dd7fa3a466d6ae83d6726", - "reference": "2d9f527449cabfa8543dd7fa3a466d6ae83d6726", + "url": "https://api.github.com/repos/Behat/Mink/zipball/090900a0049c441f1e072bbd837db4079b2250c5", + "reference": "090900a0049c441f1e072bbd837db4079b2250c5", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=5.3.1", + "symfony/css-selector": "~2.0" }, - "time": "2014-10-01 05:50:18", + "suggest": { + "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)", + "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation", + "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)", + "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)" + }, + "time": "2014-09-26 09:25:05", "type": "library", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "1.6.x-dev" } }, "installation-source": "dist", "autoload": { "psr-0": { - "Symfony\\Component\\Yaml\\": "" + "Behat\\Mink": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -979,47 +920,121 @@ ], "authors": [ { - "name": "Symfony Community", - "homepage": "http://symfony.com/contributors" + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Web acceptance testing framework for PHP 5.3", + "homepage": "http://mink.behat.org/", + "keywords": [ + "browser", + "testing", + "web" + ] + }, + { + "name": "behat/mink-zombie-driver", + "version": "v1.2.0", + "version_normalized": "1.2.0.0", + "source": { + "type": "git", + "url": "https://github.com/Behat/MinkZombieDriver.git", + "reference": "cf15a3a0cc4865bb55253cd033a03a20cee6d2d1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Behat/MinkZombieDriver/zipball/cf15a3a0cc4865bb55253cd033a03a20cee6d2d1", + "reference": "cf15a3a0cc4865bb55253cd033a03a20cee6d2d1", + "shasum": "" + }, + "require": { + "behat/mink": "~1.6@dev", + "php": ">=5.3.1", + "symfony/process": "~2.1" + }, + "time": "2014-09-26 12:26:25", + "type": "mink-driver", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-0": { + "Behat\\Mink\\Driver": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" }, { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Pascal Cremer", + "email": "b00gizm@gmail.com", + "homepage": "http://github.com/b00gizm" } ], - "description": "Symfony Yaml Component", - "homepage": "http://symfony.com" + "description": "Zombie.js driver for Mink framework", + "homepage": "http://mink.behat.org/", + "keywords": [ + "ajax", + "browser", + "headless", + "javascript", + "testing", + "zombie" + ] }, { - "name": "symfony/process", - "version": "v2.5.6", - "version_normalized": "2.5.6.0", - "target-dir": "Symfony/Component/Process", + "name": "ocramius/proxy-manager", + "version": "1.0.0", + "version_normalized": "1.0.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/Process.git", - "reference": "9bbacbb3a7a27b17c0d51e2f126f59e0e588ad3a" + "url": "https://github.com/Ocramius/ProxyManager.git", + "reference": "a80a39fac4fbd771aea7d3871929933a3a1bbf3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/Process/zipball/9bbacbb3a7a27b17c0d51e2f126f59e0e588ad3a", - "reference": "9bbacbb3a7a27b17c0d51e2f126f59e0e588ad3a", + "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/a80a39fac4fbd771aea7d3871929933a3a1bbf3e", + "reference": "a80a39fac4fbd771aea7d3871929933a3a1bbf3e", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=5.3.3", + "zendframework/zend-code": ">2.2.5,<3.0" + }, + "require-dev": { + "ext-phar": "*", + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "1.5.*" }, - "time": "2014-10-01 05:50:18", + "suggest": { + "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects", + "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)", + "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)", + "zendframework/zend-stdlib": "To use the hydrator proxy", + "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)" + }, + "time": "2014-12-12 10:59:05", "type": "library", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "2.0.x-dev" } }, "installation-source": "dist", "autoload": { "psr-0": { - "Symfony\\Component\\Process\\": "" + "ProxyManager\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1028,47 +1043,51 @@ ], "authors": [ { - "name": "Symfony Community", - "homepage": "http://symfony.com/contributors" - }, - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.com/" } ], - "description": "Symfony Process Component", - "homepage": "http://symfony.com" + "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies", + "homepage": "https://github.com/Ocramius/ProxyManager", + "keywords": [ + "aop", + "lazy loading", + "proxy", + "proxy pattern", + "service proxies" + ] }, { - "name": "symfony/css-selector", - "version": "v2.5.6", - "version_normalized": "2.5.6.0", - "target-dir": "Symfony/Component/CssSelector", + "name": "symfony/yaml", + "version": "v2.6.1", + "version_normalized": "2.6.1.0", + "target-dir": "Symfony/Component/Yaml", "source": { "type": "git", - "url": "https://github.com/symfony/CssSelector.git", - "reference": "7cdf543a3f31935aae58de4e6e607d4bdeb3f5dc" + "url": "https://github.com/symfony/Yaml.git", + "reference": "3346fc090a3eb6b53d408db2903b241af51dcb20" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/CssSelector/zipball/7cdf543a3f31935aae58de4e6e607d4bdeb3f5dc", - "reference": "7cdf543a3f31935aae58de4e6e607d4bdeb3f5dc", + "url": "https://api.github.com/repos/symfony/Yaml/zipball/3346fc090a3eb6b53d408db2903b241af51dcb20", + "reference": "3346fc090a3eb6b53d408db2903b241af51dcb20", "shasum": "" }, "require": { "php": ">=5.3.3" }, - "time": "2014-10-09 16:00:03", + "time": "2014-12-02 20:19:20", "type": "library", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "2.6-dev" } }, "installation-source": "dist", "autoload": { "psr-0": { - "Symfony\\Component\\CssSelector\\": "" + "Symfony\\Component\\Yaml\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -1080,54 +1099,44 @@ "name": "Symfony Community", "homepage": "http://symfony.com/contributors" }, - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" } ], - "description": "Symfony CssSelector Component", + "description": "Symfony Yaml Component", "homepage": "http://symfony.com" }, { - "name": "behat/mink", - "version": "v1.6.0", - "version_normalized": "1.6.0.0", + "name": "symfony/css-selector", + "version": "v2.6.1", + "version_normalized": "2.6.1.0", + "target-dir": "Symfony/Component/CssSelector", "source": { "type": "git", - "url": "https://github.com/Behat/Mink.git", - "reference": "090900a0049c441f1e072bbd837db4079b2250c5" + "url": "https://github.com/symfony/CssSelector.git", + "reference": "93eb315b545b60a908271762fb4bfa1f9954b851" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Mink/zipball/090900a0049c441f1e072bbd837db4079b2250c5", - "reference": "090900a0049c441f1e072bbd837db4079b2250c5", + "url": "https://api.github.com/repos/symfony/CssSelector/zipball/93eb315b545b60a908271762fb4bfa1f9954b851", + "reference": "93eb315b545b60a908271762fb4bfa1f9954b851", "shasum": "" }, "require": { - "php": ">=5.3.1", - "symfony/css-selector": "~2.0" - }, - "suggest": { - "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)", - "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation", - "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)", - "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)" + "php": ">=5.3.3" }, - "time": "2014-09-26 09:25:05", + "time": "2014-12-02 20:19:20", "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6.x-dev" + "dev-master": "2.6-dev" } }, "installation-source": "dist", "autoload": { "psr-0": { - "Behat\\Mink": "src/" + "Symfony\\Component\\CssSelector\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -1136,50 +1145,51 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Symfony Community", + "homepage": "http://symfony.com/contributors" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" } ], - "description": "Web acceptance testing framework for PHP 5.3", - "homepage": "http://mink.behat.org/", - "keywords": [ - "browser", - "testing", - "web" - ] + "description": "Symfony CssSelector Component", + "homepage": "http://symfony.com" }, { - "name": "behat/mink-zombie-driver", - "version": "v1.2.0", - "version_normalized": "1.2.0.0", + "name": "symfony/process", + "version": "v2.6.1", + "version_normalized": "2.6.1.0", + "target-dir": "Symfony/Component/Process", "source": { "type": "git", - "url": "https://github.com/Behat/MinkZombieDriver.git", - "reference": "cf15a3a0cc4865bb55253cd033a03a20cee6d2d1" + "url": "https://github.com/symfony/Process.git", + "reference": "bf0c9bd625f13b0b0bbe39919225cf145dfb935a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/MinkZombieDriver/zipball/cf15a3a0cc4865bb55253cd033a03a20cee6d2d1", - "reference": "cf15a3a0cc4865bb55253cd033a03a20cee6d2d1", + "url": "https://api.github.com/repos/symfony/Process/zipball/bf0c9bd625f13b0b0bbe39919225cf145dfb935a", + "reference": "bf0c9bd625f13b0b0bbe39919225cf145dfb935a", "shasum": "" }, "require": { - "behat/mink": "~1.6@dev", - "php": ">=5.3.1", - "symfony/process": "~2.1" + "php": ">=5.3.3" }, - "time": "2014-09-26 12:26:25", - "type": "mink-driver", + "time": "2014-12-02 20:19:20", + "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "2.6-dev" } }, "installation-source": "dist", "autoload": { "psr-0": { - "Behat\\Mink\\Driver": "src/" + "Symfony\\Component\\Process\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -1188,25 +1198,15 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Symfony Community", + "homepage": "http://symfony.com/contributors" }, { - "name": "Pascal Cremer", - "email": "b00gizm@gmail.com", - "homepage": "http://github.com/b00gizm" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" } ], - "description": "Zombie.js driver for Mink framework", - "homepage": "http://mink.behat.org/", - "keywords": [ - "ajax", - "browser", - "headless", - "javascript", - "testing", - "zombie" - ] + "description": "Symfony Process Component", + "homepage": "http://symfony.com" } ] diff --git a/vendor/ocramius/proxy-manager/.gitignore b/vendor/ocramius/proxy-manager/.gitignore index c12b0ce954b..7cf18feca40 100644 --- a/vendor/ocramius/proxy-manager/.gitignore +++ b/vendor/ocramius/proxy-manager/.gitignore @@ -4,3 +4,4 @@ composer.phar phpunit.xml phpmd.xml phpdox.xml +clover.xml diff --git a/vendor/ocramius/proxy-manager/.scrutinizer-ci.phpunit.xml.dist b/vendor/ocramius/proxy-manager/.scrutinizer-ci.phpunit.xml.dist deleted file mode 100644 index 7a55711925c..00000000000 --- a/vendor/ocramius/proxy-manager/.scrutinizer-ci.phpunit.xml.dist +++ /dev/null @@ -1,28 +0,0 @@ -<?xml version="1.0"?> -<phpunit - bootstrap="./tests/Bootstrap.php" - colors="true" - convertErrorsToExceptions="true" - convertNoticesToExceptions="true" - convertWarningsToExceptions="true" - verbose="true" - stopOnFailure="false" - processIsolation="false" - backupGlobals="false" - syntaxCheck="true" -> - <testsuite name="ProxyManager tests"> - <directory>./tests/ProxyManagerTest</directory> - </testsuite> - <groups> - <exclude> - <group>Functional</group> - <group>Performance</group> - </exclude> - </groups> - <filter> - <whitelist addUncoveredFilesFromWhitelist="true"> - <directory suffix=".php">./src</directory> - </whitelist> - </filter> -</phpunit> diff --git a/vendor/ocramius/proxy-manager/.scrutinizer.yml b/vendor/ocramius/proxy-manager/.scrutinizer.yml index 717d725bc8f..dbaa05c3db1 100644 --- a/vendor/ocramius/proxy-manager/.scrutinizer.yml +++ b/vendor/ocramius/proxy-manager/.scrutinizer.yml @@ -6,7 +6,6 @@ tools: timeout: 600 php_code_coverage: enabled: true - test_command: phpunit -c .scrutinizer-ci.phpunit.xml.dist php_code_sniffer: enabled: true config: @@ -15,7 +14,7 @@ tools: paths: ["src/*", "tests/*"] php_cpd: enabled: true - excluded_dirs: ["build/*", "docs", "examples", "tests", "vendor"] + excluded_dirs: ["docs", "examples", "tests", "vendor"] php_cs_fixer: enabled: true config: @@ -24,7 +23,7 @@ tools: paths: ["src/*", "tests/*"] php_loc: enabled: true - excluded_dirs: ["build", "docs", "examples", "tests", "vendor"] + excluded_dirs: ["docs", "examples", "tests", "vendor"] php_mess_detector: enabled: true config: @@ -34,13 +33,13 @@ tools: paths: ["src/*"] php_pdepend: enabled: true - excluded_dirs: ["build", "docs", "examples", "tests", "vendor"] + excluded_dirs: ["docs", "examples", "tests", "vendor"] php_analyzer: enabled: true filter: - paths: ["src/*", "tests/*", "examples/*"] + paths: ["src/*", "tests/*"] php_hhvm: enabled: true filter: - paths: ["src/*", "tests/*", "examples/*"] + paths: ["src/*", "tests/*"] sensiolabs_security_checker: true diff --git a/vendor/ocramius/proxy-manager/.travis.yml b/vendor/ocramius/proxy-manager/.travis.yml index 2191faaf1c5..5f42dac8274 100644 --- a/vendor/ocramius/proxy-manager/.travis.yml +++ b/vendor/ocramius/proxy-manager/.travis.yml @@ -13,7 +13,8 @@ before_script: - sh .travis.install.sh script: - - ./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml --exclude-group Performance + - ./vendor/bin/phpunit --disallow-test-output --report-useless-tests --coverage-clover ./clover.xml --group=Coverage + - ./vendor/bin/phpunit --disallow-test-output --report-useless-tests --strict --exclude-group=Performance,Coverage - php -n ./vendor/bin/phpunit --group=Performance - ./vendor/bin/phpcs --standard=PSR2 ./src/ ./tests/ @@ -24,4 +25,4 @@ matrix: after_script: - wget https://scrutinizer-ci.com/ocular.phar - - php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml + - php ocular.phar code-coverage:upload --format=php-clover ./clover.xml diff --git a/vendor/ocramius/proxy-manager/README.md b/vendor/ocramius/proxy-manager/README.md index c4848795c02..c377830f646 100644 --- a/vendor/ocramius/proxy-manager/README.md +++ b/vendor/ocramius/proxy-manager/README.md @@ -16,19 +16,22 @@ This library aims at providing abstraction for generating various kinds of [prox [](https://packagist.org/packages/ocramius/proxy-manager) [](https://packagist.org/packages/ocramius/proxy-manager) + +## Documentation + +You can learn about the proxy pattern and how to use the **ProxyManager** on the [online documentation](http://ocramius.github.io/ProxyManager). + ## Installation The suggested installation method is via [composer](https://getcomposer.org/): ```sh -php composer.phar require ocramius/proxy-manager:0.5.* +php composer.phar require ocramius/proxy-manager:1.0.* ``` -## Lazy Loading Value Holders (Virtual Proxy) +## Proxy example -ProxyManager can generate [lazy loading value holders](http://www.martinfowler.com/eaaCatalog/lazyLoad.html), -which are virtual proxies capable of saving performance and memory for objects that require a lot of dependencies or -CPU cycles to be loaded: particularly useful when you may not always need the object, but are constructing it anyways. +Here's how you build a lazy loadable object with ProxyManager using a *Virtual Proxy* ```php $factory = new \ProxyManager\Factory\LazyLoadingValueHolderFactory(); @@ -38,147 +41,10 @@ $proxy = $factory->createProxy( function (& $wrappedObject, $proxy, $method, $parameters, & $initializer) { $wrappedObject = new HeavyComplexObject(); // instantiation logic here $initializer = null; // turning off further lazy initialization - - return true; - } -); - -$proxy->doFoo(); -``` - -See the [complete documentation about lazy loading value holders](/docs/lazy-loading-value-holder.md) -in the `docs/` directory. - -## Access Interceptor Value Holder - -An access interceptor value holder is a smart reference that allows you to execute logic before -and after a particular method is executed or a particular property is accessed, and it allows to -manipulate parameters and return values depending on your needs. - -```php -$factory = new \ProxyManager\Factory\AccessInterceptorValueHolderFactory(); - -$proxy = $factory->createProxy( - new \My\Db\Connection(), - array('query' => function () { echo "Query being executed!\n"; }), - array('query' => function () { echo "Query completed!\n"; }) -); - -$proxy->query(); // produces "Query being executed!\nQuery completed!\n" -``` - -See the [complete documentation about access interceptor value holders](/docs/access-interceptor-value-holder.md) -in the `docs/` directory. - -## Access Interceptor Scope Localizer - -An access interceptor scope localizer works exactly like an access interceptor value holder, -but it is safe to use to proxy fluent interfaces. - -See the [complete documentation about access interceptor scope localizer](/docs/access-interceptor-scope-localizer.md) -in the `docs/` directory. - -## Null Objects - -A Null Object proxy implements the [null object pattern](http://en.wikipedia.org/wiki/Null_Object_pattern). - -This kind of proxy allows you to have fallback logic in case loading of the wrapped value failed. - -```php -$factory = new \ProxyManager\Factory\NullObjectFactory(); - -$proxy = $factory->createProxy('My\EntityObject'); - -$proxy->getName(); // empty return -``` - -A Null Object Proxy can be created from an object, a class name or an interface name: - -```php -$factory = new \ProxyManager\Factory\NullObjectFactory(); - -$proxy = $factory->createProxy('My\EntityObjectInterface'); -$proxy->getName(); // empty return - -$proxy = $factory->createProxy($entity); // created from object -$proxy->getName(); // empty return -``` - -See the [complete documentation about null object proxy](/docs/null-object.md) -in the `docs/` directory. - -## Ghost Objects - - -Similar to value holder, a ghost object is usually created to handle lazy loading. - -The difference between a value holder and a ghost object is that the ghost object does not contain a real instance of -the required object, but handles lazy loading by initializing its own inherited properties. - -ProxyManager can generate [lazy loading ghost objects](http://www.martinfowler.com/eaaCatalog/lazyLoad.html), -which are proxies used to save performance and memory for large datasets and graphs representing relational data. -Ghost objects are particularly useful when building data-mappers. - -Additionally, the overhead introduced by ghost objects is very low when compared to the memory and performance overhead -caused by virtual proxies. - -```php -$factory = new \ProxyManager\Factory\LazyLoadingGhostFactory(); - -$proxy = $factory->createProxy( - 'MyApp\HeavyComplexObject', - function ($proxy, $method, $parameters, & $initializer) { - $initializer = null; // turning off further lazy initialization - - // modify the proxy instance - $proxy->setFoo('foo'); - $proxy->setBar('bar'); - - return true; } ); $proxy->doFoo(); ``` -See the [complete documentation about lazy loading ghost objects](/docs/lazy-loading-ghost-object.md) -in the `docs/` directory. - -## Remote Object - -A remote object proxy is an object that is located on a different system, but is used as if it was available locally. -There's various possible remote proxy implementations, which could be based on xmlrpc/jsonrpc/soap/dnode/etc. - -This example uses the XML-RPC client of Zend Framework 2: - -```php -interface FooServiceInterface -{ - public function foo(); -} - -$factory = new \ProxyManager\Factory\RemoteObjectFactory( - new \ProxyManager\Factory\RemoteObject\Adapter\XmlRpc( - new \Zend\XmlRpc\Client('https://example.com/rpc-endpoint') - ) -); - -// proxy is your remote implementation -$proxy = $factory->createProxy('FooServiceInterface'); - -var_dump($proxy->foo()); -``` - -See the [complete documentation about remote objects](https://github.com/Ocramius/ProxyManager/tree/master/docs/remote-object.md) -in the `docs/` directory. - -## Contributing - -Please read the [CONTRIBUTING.md](https://github.com/Ocramius/ProxyManager/blob/master/CONTRIBUTING.md) contents if you -wish to help out! - -## Credits - -The idea was originated by a [talk about Proxies in PHP OOP](http://marco-pivetta.com/proxy-pattern-in-php/) that I gave -at the [@phpugffm](https://twitter.com/phpugffm) in January 2013. - +See the [online documentation](http://ocramius.github.io/ProxyManager) for more supported proxy types and examples. diff --git a/vendor/ocramius/proxy-manager/STABILITY.md b/vendor/ocramius/proxy-manager/STABILITY.md new file mode 100644 index 00000000000..6da8cb6bcef --- /dev/null +++ b/vendor/ocramius/proxy-manager/STABILITY.md @@ -0,0 +1,19 @@ +This is a list of supported versions, with their expected release/support time-frames: + +# 0.5.x + + * Release date: 2013-12-01 + * Bug fixes: till 2015-03-11 + * Security fixes: till 2015-12-11 + +# 1.0.x + + * Release date: 2014-12-12 + * Bug fixes: till 2015-12-11 + * Security fixes: till 2016-12-11 + +# 2.0.x + + * Release date: TBA + * Bug fixes: TBA + * Security fixes: TBA diff --git a/vendor/ocramius/proxy-manager/build/.gitignore b/vendor/ocramius/proxy-manager/build/.gitignore deleted file mode 100644 index 6d8e8bfe3be..00000000000 --- a/vendor/ocramius/proxy-manager/build/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -* -!logs -!.gitignore -!coverage-checker.php \ No newline at end of file diff --git a/vendor/ocramius/proxy-manager/composer.json b/vendor/ocramius/proxy-manager/composer.json index cde5eca13c8..0c5d2062278 100644 --- a/vendor/ocramius/proxy-manager/composer.json +++ b/vendor/ocramius/proxy-manager/composer.json @@ -47,7 +47,7 @@ }, "extra": { "branch-alias": { - "dev-master": "0.6.x-dev" + "dev-master": "2.0.x-dev" } } } diff --git a/vendor/ocramius/proxy-manager/html-docs/access-interceptor-scope-localizer-proxy.html b/vendor/ocramius/proxy-manager/html-docs/access-interceptor-scope-localizer-proxy.html new file mode 100644 index 00000000000..6e62a678947 --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/access-interceptor-scope-localizer-proxy.html @@ -0,0 +1,197 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager - Tuning the ProxyManager for production</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php, production" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/default.min.css"> + <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script> + <script>hljs.initHighlightingOnLoad();</script> + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <div class="bcms-clearfix"></div> + <h3 class="section-title">Access Interceptor Scope Localizer Proxy</h3> + + <p>An access interceptor scope localizer is a smart reference proxy that allows you to dynamically define logic to be executed before or after any of the proxied object's methods' logic.</p> + + <p>It works exactly like the <a href="access-interceptor-value-holder-proxy.html">access interceptor value holder</a>, with some minor differences in behavior.</p> + + <p>The working concept of an access interceptor scope localizer is to localize scope of a proxied object:</p> + + <pre> + <code class="php"> +class Example +{ + protected $foo; + protected $bar; + protected $baz; + + public function doFoo() + { + // ... + } +} + +class ExampleProxy extends Example +{ + public function __construct(Example $example) + { + $this->foo = & $example->foo; + $this->bar = & $example->bar; + $this->baz = & $example->baz; + } + + public function doFoo() + { + return parent::doFoo(); + } +} + </code> + </pre> + + <p>This allows to create a mirror copy of the real instance, where any change in the proxy or in the real instance is reflected in both objects.</p> + + <p>The main advantage of this approach is that the proxy is now safe against fluent interfaces, which would break an <a href="access-interceptor-value-holder-proxy.html">access interceptor value holder</a> instead.</p> +<hr /> + <h3>Differences with <a href="access-interceptor-value-holder-proxy.html">access interceptor value holder</a>:</h3> + + <ul> + <li>It does <strong>NOT</strong> implement the <code>ProxyManager\Proxy\ValueHolderInterface</code>, since the proxy itself does not keep a reference to the original object being proxied</li> + <li>In all interceptor methods (see <a href="access-interceptor-value-holder-proxy.html">access interceptor value holder</a>), the $instance passed in is the proxy itself. There is no way to gather a reference to the original object right now, and that's mainly to protect from misuse.</li> + </ul> +<hr /> + + <h3>Known limitations</h3> + + <ul> + <li>It is <strong>NOT</strong> possible to intercept access to public properties</li> + <li>It is <strong>NOT</strong> possible to proxy interfaces, since this proxy relies on <code>parent::method()</code> calls. Interfaces obviously don't provide a parent method implementation.</li> + <li>calling unset on a property of an access interceptor scope localizer (or the real instance) will cause the two objects to be un-synchronized, with possible unexpected behaviour.</li> + <li>serializing or un-serializing an access interceptor scope localizer (or the real instance) will not cause the real instance (or the proxy) to be serialized or un-serialized</li> + <li>if a proxied object contains private properties, then an exception will be thrown if you use PHP <code>< 5.4.0</code>.</li> + </ul> +<hr /> + <h3>Example</h3> + + <p>Here's an example of how you can create and use an access interceptor scope localizer :</p> + + <pre> + <code class="php"> +<?php + +use ProxyManager\Factory\AccessInterceptorScopeLocalizerFactory as Factory; + +require_once __DIR__ . '/vendor/autoload.php'; + +class Foo +{ + public function doFoo() + { + echo "Foo!\n"; + } +} + +$factory = new Factory(); + +$proxy = $factory->createProxy( + new Foo(), + array('doFoo' => function () { echo "PreFoo!\n"; }), + array('doFoo' => function () { echo "PostFoo!\n"; }) +); + +$proxy->doFoo(); + </code> + </pre> + + <p>This send something like following to your output:</p> + + <pre> + <code class="php"> +PreFoo! +Foo! +PostFoo! + </code> + </pre> + + <p>This is pretty much the same logic that you can find in <a href="access-interceptor-value-holder-proxy.html">access interceptor value holder</a>.</p> + +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/html-docs/access-interceptor-value-holder-proxy.html b/vendor/ocramius/proxy-manager/html-docs/access-interceptor-value-holder-proxy.html new file mode 100644 index 00000000000..30633e402d2 --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/access-interceptor-value-holder-proxy.html @@ -0,0 +1,208 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager - Tuning the ProxyManager for production</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php, production" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/default.min.css"> + <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script> + <script>hljs.initHighlightingOnLoad();</script> + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <div class="bcms-clearfix"></div> + <h3 class="section-title">Access Interceptor Value Holder Proxy</h3> + + <p>An access interceptor value holder is a smart reference proxy that allows you to dynamically define logic to be executed before or after any of the wrapped object's methods logic.</p> + + <p>It wraps around a real instance of the object to be proxied, and can be useful for things like:</p> + + <ul> + <li>caching execution of slow and heavy methods</li> + <li>log method calls</li> + <li>debugging</li> + <li>event triggering</li> + <li>handling of orthogonal logic, and <a href="http://en.wikipedia.org/wiki/Aspect-oriented_programming" target="_blank">AOP</a> in general</li> + </ul> +<hr /> + <h3>Example</h3> + + <p>Here's an example of how you can create and use an access interceptor value holder:</p> + + <pre> + <code class="php"> +<?php + +use ProxyManager\Factory\AccessInterceptorValueHolderFactory as Factory; + +require_once __DIR__ . '/vendor/autoload.php'; + +class Foo +{ + public function doFoo() + { + echo "Foo!\n"; + } +} + +$factory = new Factory(); + +$proxy = $factory->createProxy( + new Foo(), + array('doFoo' => function () { echo "PreFoo!\n"; }), + array('doFoo' => function () { echo "PostFoo!\n"; }) +); + +$proxy->doFoo(); + </code> + </pre> + + <p>This send something like following to your output:</p> + + <pre> + <code class="php"> +PreFoo! +Foo! +PostFoo! + </code> + </pre> + +<hr /> + <h3>Implementing pre- and post- access interceptors</h3> + + <p>A proxy produced by the <code><a href="https://github.com/Ocramius/ProxyManager/blob/master/src/ProxyManager/Factory/AccessInterceptorValueHolderFactory.php" target="_blank">ProxyManager\Factory\AccessInterceptorValueHolderFactory</a></code> implements both the <code><a href="https://github.com/Ocramius/ProxyManager/blob/master/src/ProxyManager/Proxy/ValueHolderInterface.php" target="_blank">ProxyManager\Proxy\ValueHolderInterface</a></code> and the <code><a href="https://github.com/Ocramius/ProxyManager/blob/master/src/ProxyManager/Proxy/ValueHolderInterface.php" target="_blank">ProxyManager\Proxy\AccessInterceptorInterface</a></code>.</p> + + + <p>Therefore, you can set an access interceptor callback by calling:</p> + + <pre> + <code class="php"> +$proxy->setMethodPrefixInterceptor('methodName', function () { echo 'pre'; }); +$proxy->setMethodSuffixInterceptor('methodName', function () { echo 'post'; }); + </code> + </pre> + + <p>You can also listen to public properties access by attaching interceptors to <code>__get</code>, <code>__set</code>, <code>__isset</code> and <code>__unset</code>.</p> + + <p>A prefix interceptor (executed before method logic) should have following signature:</p> + + <pre> + <code class="php"> +/** + * @var object $proxy the proxy that intercepted the method call + * @var object $instance the wrapped instance within the proxy + * @var string $method name of the called method + * @var array $params sorted array of parameters passed to the intercepted + * method, indexed by parameter name + * @var bool $returnEarly flag to tell the interceptor proxy to return early, returning + * the interceptor's return value instead of executing the method logic + * + * @return mixed + */ +$prefixInterceptor = function ($proxy, $instance, $method, $params, & $returnEarly) {}; + </code> + </pre> + + A suffix interceptor (executed after method logic) should have following signature: + + <pre> + <code class="php"> +/** + * @var object $proxy the proxy that intercepted the method call + * @var object $instance the wrapped instance within the proxy + * @var string $method name of the called method + * @var array $params sorted array of parameters passed to the intercepted + * method, indexed by parameter name + * @var mixed $returnValue the return value of the intercepted method + * @var bool $returnEarly flag to tell the proxy to return early, returning the interceptor's + * return value instead of the value produced by the method + * + * @return mixed + */ +$suffixInterceptor = function ($proxy, $instance, $method, $params, $returnValue, & $returnEarly) {}; + </code> + </pre> + +<hr /> + <h3>Tuning performance for production</h3> + + <p>See <a href="production.html">Tuning ProxyManager for Production</a>.</p> +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/html-docs/contributing.html b/vendor/ocramius/proxy-manager/html-docs/contributing.html new file mode 100644 index 00000000000..fd77f342e12 --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/contributing.html @@ -0,0 +1,139 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager - Contributing</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php, contributing" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/default.min.css"> + <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script> + <script>hljs.initHighlightingOnLoad();</script> + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <div class="bcms-clearfix"></div> + <h3 class="section-title">Contributing</h3> + + <ul> + <li>Coding standard for the project is <a href="https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md" target-"_blank">PSR-2</a></li> + <li>The project will follow strict <a href="http://www.slideshare.net/guilhermeblanco/object-calisthenics-applied-to-php" target-"_blank">object calisthenics</a></li> + <li>Any contribution must provide tests for additional introduced conditions</li> + <li>Any un-confirmed issue needs a failing test case before being accepted</li> + <li>Pull requests must be sent from a new hotfix/feature branch, not from master.</li> + </ul> + + +<hr /> + + <h3 class="section-title">Installation</h3> + + <p>To install the project and run the tests, you need to clone it first:</p> + + <pre> + <code class="sh"> +$ git clone git://github.com/Ocramius/ProxyManager.git + </code> + </pre> + + <p>You will then need to run a composer installation:</p> + + <pre> + <code class="sh"> +$ cd ProxyManager +$ curl -s https://getcomposer.org/installer | php +$ php composer.phar update + </code> + </pre> + +<hr /> + + <h3 class="section-title">Testing</h3> + + <p>The PHPUnit version to be used is the one installed as a dev- dependency via composer:</p> + + <pre> + <code class="sh"> +$ ./vendor/bin/phpunit + </code> + </pre> + + <p>Accepted coverage for new contributions is 80%. Any contribution not satisfying this requirement won't be merged.</p> + +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/html-docs/copyright.html b/vendor/ocramius/proxy-manager/html-docs/copyright.html new file mode 100644 index 00000000000..9eaafb30f2b --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/copyright.html @@ -0,0 +1,100 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <div class="bcms-clearfix"></div> + <h3 class="section-title">License</h3> + <p>Copyright (c) 2013 Marco Pivetta</p> + + <p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p> + + <p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p> + + <p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p> +<hr /> + +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/html-docs/credits.html b/vendor/ocramius/proxy-manager/html-docs/credits.html new file mode 100644 index 00000000000..673543920ad --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/credits.html @@ -0,0 +1,113 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager - Credits</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php, credits" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <div class="bcms-clearfix"></div> + <h3 class="section-title">Credits</h3> + + <p>The idea was originated by a <a href="http://marco-pivetta.com/proxy-pattern-in-php/" target="_blank">talk about Proxies in PHP OOP</a> that I gave at the <a href="https://twitter.com/phpugffm" target="_blank">@phpugffm</a> in January 2013.</p> +<hr /> + <h3>Contributors</h3> + + <ul> + <li><a href="https://github.com/Ocramius" target="_blank">Marco Pivetta</a></li> + <li><a href="https://github.com/malukenho" target="_blank">Jefersson Nathan</a></li> + <li><a href="https://github.com/blanchonvincent" target="_blank">Blanchon Vincent</a></li> + <li><a href="https://github.com/staabm" target="_blank">Markus Staab</a></li> + <li><a href="https://github.com/gws" target="_blank">Gordon Stratton</a></li> + <li><a href="https://github.com/prolic" target="_blank">Prolic</a></li> + <li><a href="https://github.com/guilro" target="_blank">Guillaume Royer</a></li> + <li><a href="https://github.com/reiz" target="_blank">Robert Reiz</a></li> + <li><a href="https://github.com/leedavis81" target="_blank">Lee Davis</a></li> + <li><a href="https://github.com/flip111" target="_blank">flip111</a></li> + <li><a href="https://github.com/krymen" target="_blank">Krzysztof Menzyk</a></li> + <li><a href="https://github.com/Xerkus" target="_blank">Aleksey Khudyakov</a></li> + <li><a href="https://github.com/asm89" target="_blank">Alexander</a></li> + <li><a href="https://github.com/raulfraile" target="_blank">Raul Fraile</a></li> + </ul> + +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/html-docs/css/styles.css b/vendor/ocramius/proxy-manager/html-docs/css/styles.css new file mode 100644 index 00000000000..ae1dceb55b7 --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/css/styles.css @@ -0,0 +1,203 @@ +html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } +body { margin: 0; } +article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } +audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } +audio:not([controls]) { display: none; height: 0; } +[hidden], template { display: none; } +a { background: transparent; } +a:active, a:hover { outline: 0; } +abbr[title] { border-bottom: 1px dotted; } +b, strong { font-weight: bold; } +dfn { font-style: italic; } +h1 { font-size: 2em; margin: 0.67em 0; } +mark { background: #ff0; color: #000; } +small { font-size: 80%; } +sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } +sup { top: -0.5em; } +sub { bottom: -0.25em; } +img { border: 0; } +svg:not(:root) { overflow: hidden; } +figure { margin: 1em 40px; } +hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } +pre { overflow: auto; } +code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } +button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } +button { overflow: visible; } +button, select { text-transform: none; } +button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } +button[disabled], html input[disabled] { cursor: default; } +button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } +input { line-height: normal; } +input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } +input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } +input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; } +input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } +fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } +legend { border: 0; padding: 0; } +textarea { overflow: auto; } +optgroup { font-weight: bold; } +table { border-collapse: collapse; border-spacing: 0; } +td, th { padding: 0; } +h1, h2, h3, h4, h5, h6, p, ul, ol, li { margin: 0; padding: 0; line-height: normal; } +a { color: #31811D; text-decoration: none; } +a:hover { color: #2F611C; text-decoration: none; } +strong { font-weight: 600; } +h3 { margin-bottom: 1em; color: #17324f; font-weight: 400; font-size: 3em; } +h4 { margin-bottom: 1em; font-weight: 400; font-size: 1.375em; } +p { margin-bottom: 1.5em; font-size: 1.125em; } +hr { margin: 2.5em 0; padding: 0; width: 100%; height: 3px; border: 0; background: #e6eaef; } +pre code { padding: 20px; border: 1px solid #EBEBEB; background: #F5F5F5; color: #08468a; font-weight: 200; font-size: .875em; } +code { background: transparent; color: #08468a; font-size: .875em; } +form { margin: 0; } +label { display: block; color: #18324f; font-weight: 400; font-size: 1.5em; margin-bottom: 2em; } +legend { position: static; margin: 0; padding: 0; font-weight: normal; } +legend span { position: absolute; top: 0; right: 0; left: 0; display: block; padding: 7px 0; border-bottom: 1px solid #e0dede; color: #ed4a21; font-size: 18px; line-height: 1em; } + +/* Menu Sidebar*/ +.button-block { padding-top: 15px; } +.button-block .btn-1 { margin-right: 6px; } +.btn, .spy-nav a { position: relative; display: inline-block; margin: 0; padding: 0 20px; height: 57px; border: 0; vertical-align: top; text-align: center; text-transform: uppercase; font-weight: 400; font-size: 1.125em; transitionP: all .2s; line-height: 57px; } +.btn.btn-action, .spy-nav a.btn-action { background: #ee2d4d; color: #fff; } +.btn.btn-action:hover, .spy-nav a.btn-action:hover { background: #bf0f2d; } +.btn.btn-default, .spy-nav a { background: #31811D; color: #fff; } +.btn.btn-default:hover, .spy-nav a:hover { background: #2F611C; color: #fff; } +.btn.btn-text, .spy-nav a.btn-text { color: #18324f; font-weight: 600; } +.btn.btn-full, .spy-nav a { display: block; } +@media only screen and (max-width: 480px) { + .site-header{ position: fixed !important; top: 0; z-index: 999999} + .page-title-wrapper{ margin-top: 70px;} + .main-wrapper iframe{ width: 42% !important; float: left; margin-left: 8%;} + .content iframe{width: 100%; height: 100%;} +} + +.btn-top { position: relative; display: inline-block; float: right; margin: 20px 0 0; padding: 0 30px 0 50px; height: 57px; border: 2px solid ##31811D; color: #31811D; vertical-align: top; text-align: center; text-transform: uppercase; font-weight: 600; font-size: 1.125em; line-height: 53px; transition: all .2s; } +.btn-top:before { background-position: 0 -140px; width: 52px; height: 52px; position: absolute; top: 0; left: 0; content: ''; } +@media only screen and (min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 2) { .btn-top:before { background-position: 0 -140px; background-size: 152px auto; width: 52px; height: 52px; } } +.btn-top:hover { border-color: #2F611C; color: #2F611C; } +@media only screen and (max-width: 768px) { .btn-top { float: none; margin-top: 0; margin-bottom: 30px; white-space: nowrap; } } +@media only screen and (max-width: 480px) { .btn-top { font-size: 0.9em; line-height: 46px; height: 48px; padding-right: 22px; padding-left: 47px; } } + +.btn-download { float: right; padding-left: 50px; } +.btn-download:before { background-position: -18px -116px; width: 16px; height: 16px; position: absolute; top: 50%; left: 20px; margin-top: -7px; content: ''; } +@media only screen and (min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 2) { .btn-download:before { background-position: -18px -116px; background-size: 152px auto; width: 16px; height: 16px; } } + +.btn-done { float: right; padding-left: 50px; } +.btn-done:before { background-position: 0 -116px; width: 18px; height: 14px; position: absolute; top: 50%; margin-top: -7px; left: 20px; content: ''; } +@media only screen and (min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 2) { .btn-done:before { background-position: 0 -116px; background-size: 152px auto; width: 18px; height: 13.5px; margin-top: -6.75px; } } + +.btn-cancel { float: right; } + +*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } + +html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; min-width: 280px; } +@media only screen and (min-width: 64.063em) and (max-width: 90em) { html { min-width: 960px; } } + +body { font-size: 16px; font-family: 'Source Sans Pro', sans-serif; min-width: 290px; } +@media only screen and (max-width: 480px) { body.page-home { background-image: none; } } + +img { max-width: 100%; height: auto !important; } + +input { -webkit-appearance: none; -webkit-border-radius: 0; border-radius: 0; } + +main { overflow: hidden; } + +.clearfix:after { content: ""; display: table; clear: both; } + +.container { width: 60em; margin-left: auto; margin-right: auto; } +.container:after { content: " "; display: block; clear: both; } +@media only screen and (max-width: 1024px) { .container { margin-left: 15px; margin-right: 15px; width: auto; } } + +.content ul { padding-left: 19px; list-style-type: square; margin-top: 15px; } + +/* Menu top */ +.main-nav { float: right; } +.fixed-wrapper .main-nav { display: none; } +.active .main-nav { display: block; } +.main-nav > ul { list-style: none; } +.main-nav > ul > li { float: left; } +.main-nav > ul > li > a { display: block; padding: 22px 30px; color: #fff; text-decoration: none; text-transform: uppercase; font-weight: 600; font-size: 1.375em; line-height: 29px; transition: all .2s; } +.main-nav > ul > li > a:hover { color: #bfe5f1; background-color: #2F611C; } +.main-nav > ul > li > a.active { background-color: #2F611C; color: #fff; } +.main-nav > ul > li > a.opened { background-color: #18324f; } +@media only screen and (max-width: 600px) { .main-nav { font-size: 0.86em; } + .main-nav > ul > li > a { padding-left: 18px; padding-right: 18px; } } +@media only screen and (max-width: 480px) { .main-nav > ul > li > a { font-size: 0.95em; padding: 22px 6px; } } + +.site-header { position: relative; width: 100%; background: #31811D; } +.site-header h1 { float: left; margin: 15px 0; } +.site-header h1 a { display: block; } +.site-header h1 img { display: block; max-height: 42px; } +@media only screen and (max-width: 480px) { .site-header h1 img { max-height: 42px; } } + +.page-title-wrapper { position: relative; padding: 26px 0 55px; text-align: center; } +.page-title-wrapper .page-title { margin-top: 44px; color: #17324f; font-weight: 400; font-size: 3.75em; } +.page-title-wrapper .linguistics { padding: 0 2em 13px; border-bottom: 1px solid #D4DBE3; color: #18324f; text-transform: uppercase; font-weight: 400; font-size: 1.25em; } +@media only screen and (max-width: 768px) { .page-title-wrapper { font-size: 0.8em; } } +@media only screen and (max-width: 480px) { .page-title-wrapper { font-size: 0.65em; } } + +.site-footer { margin-top: 20px; padding-top: 50px; padding-bottom: 50px; background: #18324f; color: #7c8ea3; text-align: center; } +.site-footer .container { position: relative; } +.site-footer + .bcms-clearfix:after { content: ""; } +.about + .site-footer .main { padding-top: 150px; } +.footer-logos ul li{ list-style: none; display: inline-block;} +.footer-logos ul li a{ padding-left: 10px; padding-right: 10px} +.site-footer a{ color: white !important;} +.site-footer p { text-align: left; display: block; margin-bottom: 1.5em; font-size: 1.125em; } +@media only screen and (max-width: 1024px) { .site-footer p { margin-left: 0; } } +@media only screen and (max-width: 768px) { .site-footer p { text-align: center; margin-left: auto; } } +@media only screen and (max-width: 600px) { .site-footer { font-size: 0.9em; } } + +.main-logo { display: block; float: left; margin: 30px 0; } +.fixed-wrapper .main-logo { display: none; } +.main-logo img { display: block; } +.main-logo figure { position: relative; margin: 0; max-width: 56px; } +.main-logo figcaption { position: absolute; width: 160px; top: 20px; left: 68px; } +.active .main-logo { display: block; margin: 0; } +.active .main-logo figure { max-width: 42px; } +.active .main-logo figcaption { width: 120px; top: 15px; left: 55px; } +@media only screen and (max-width: 480px) { .main-logo figcaption { display: none; } } + +.container { width: 60em; margin-left: auto; margin-right: auto; } +.container:after { content: " "; display: block; clear: both; } +@media only screen and (max-width: 1024px) { .container { margin-left: 15px; margin-right: 15px; width: auto; } } + +.component-demo { position: relative; padding: 1px 0 0; background: #e6eaef; } +.component-demo:before { background-image: url("../img/enf.png"); } +@media only screen and (max-width: 480px) { .component-demo { padding: 40px 0 0; } } + +.component-info .container { position: relative; } +.component-info .sidebar { width: 220px; float: left; margin-top: 75px; } +.component-info .sidebar .component-meta { margin-top: 10px; font-size: 1.125em; } +.component-info .sidebar .component-meta span { white-space: nowrap; margin-bottom: 10px; padding-left: 25px; color: #18324f; } +.component-info .sidebar.sticky { position: fixed; margin-top: 38px; } +.component-info .content { width: 64.58333333%; float: right; margin-top: 60px; margin-bottom: 75px; } +.component-info .content h3 { margin-bottom: .75em; font-size: 2.75em; } +.component-info .content p { margin-bottom: 1.75em; line-height: 1.45; } +@media only screen and (max-width: 480px) { .component-info .content .section-title { font-size: 2.1em; } } +@media only screen and (max-width: 768px) { .component-info .sidebar { float: none; margin-left: auto; margin-right: auto; } + .component-info .sidebar .component-meta { margin-top: 30px; text-align: center; } + .component-info .sidebar.sticky { position: relative; margin-top: 75px; } + .component-info .content { float: none; width: 100%; } } +@media only screen and (max-width: 480px) { .component-info .content { margin-bottom: 0; } } + +.spy-nav { margin-bottom: 10px; } +.spy-nav ul { list-style: none; } +.spy-nav a { padding-top: 9px; padding-bottom: 10px; height: auto; border-bottom: 1px solid #4B8B20; text-align: left; text-transform: none; font-size: 1.375em; line-height: normal; } +.spy-nav .active a { border-bottom-color: #fff; background: #fff; color: #17324f; } +@media only screen and (max-width: 768px) { /*.spy-nav { display: none; } */} + +.main-wrapper { margin: 44px auto 44px; max-width: 600px; } +.main-wrapper label { display: block; margin-bottom: .75em; color: #3f4e5e; font-size: 1.25em; } +.main-wrapper .text-field { padding: 0 15px; width: 100%; height: 40px; border: 1px solid #CBD3DD; font-size: 1.125em; } +.main-wrapper ::-webkit-input-placeholder { color: #CBD3DD; font-style: italic; font-size: 18px; } +.main-wrapper :-moz-placeholder { color: #CBD3DD; font-style: italic; font-size: 18px; } +.main-wrapper ::-moz-placeholder { color: #CBD3DD; font-style: italic; font-size: 18px; } +.main-wrapper :-ms-input-placeholder { color: #CBD3DD; font-style: italic; font-size: 18px; } + +.page-icon-wrapper:before, .page-icon-wrapper .logo-asp:before, .page-icon-wrapper .logo-hibernate:before, .page-icon-wrapper .logo-angularjs:before, .page-icon-wrapper .logo-requirejs:before, .page-icon-wrapper .logo-reward:before, .component-demo:before {background-repeat: no-repeat; background-size: 100%; width: 92px; height: 108px; position: absolute; left: 50%; margin-left: -46px; top: 0; bottom: auto; margin-top: -28px; content: ''; } + +.container { width: 60em; margin-left: auto; margin-right: auto; } +.container:after { content: " "; display: block; clear: both; } +@media only screen and (max-width: 1024px) { .container { margin-left: 15px; margin-right: 15px; width: auto; } } + +.bcms-clearfix:after {content: ""; visibility: hidden; display: block; height: 0; clear: both; } diff --git a/vendor/ocramius/proxy-manager/html-docs/download.html b/vendor/ocramius/proxy-manager/html-docs/download.html new file mode 100644 index 00000000000..07e9def216a --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/download.html @@ -0,0 +1,97 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/default.min.css"> + <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script> + <script>hljs.initHighlightingOnLoad();</script> + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <div class="bcms-clearfix"></div> + <h3 class="section-title">Installation</h3> + <p>The suggested installation method is via <a href="https://getcomposer.org/" target="_blank">composer</a>.</p> + <pre><code class="sh">php composer.phar require ocramius/proxy-manager:1.0.*</code></pre> +<hr /> + +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/html-docs/favicon.ico b/vendor/ocramius/proxy-manager/html-docs/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..1eb8d69efd190f50a37efab69ad16a5e1226cdaf GIT binary patch literal 173250 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 literal 0 HcmV?d00001 diff --git a/vendor/ocramius/proxy-manager/html-docs/ghost-object.html b/vendor/ocramius/proxy-manager/html-docs/ghost-object.html new file mode 100644 index 00000000000..d9c96d4fa8a --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/ghost-object.html @@ -0,0 +1,314 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager - Ghost object</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php, ghost object" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/default.min.css"> + <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script> + <script>hljs.initHighlightingOnLoad();</script> + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <div class="bcms-clearfix"></div> + <h3 class="section-title">Lazy Loading Ghost Object Proxies</h3> + + <p>A lazy loading ghost object proxy is a ghost proxy that looks exactly like the real instance of the proxied subject, but which has all properties nulled before initialization.</p> +<hr /> + + <h3 class="section-title">Lazy loading with the Ghost Object</h3> + + <p>In pseudo-code, in userland, <a href="http://www.martinfowler.com/eaaCatalog/lazyLoad.html" target="_blank">lazy loading</a> in a ghost object looks like following:</p> + + <pre> + <code class="php"> +class MyObjectProxy +{ + private $initialized = false; + private $name; + private $surname; + + public function doFoo() + { + $this->init(); + + // Perform doFoo routine using loaded variables + } + + private function init() + { + if (! $this->initialized) { + $data = some_logic_that_loads_data(); + + $this->name = $data['name']; + $this->surname = $data['surname']; + + $this->initialized = true; + } + } +} + </code> + </pre> + + <p>Ghost objects work similarly to virtual proxies, but since they don't wrap around a "real" instance of the proxied subject, they are better suited for representing dataset rows.</p> + +<hr /> + + <h3 class="section-title">When do I use a ghost object?</h3> + + <p>You usually need a ghost object in cases where following applies</p> + + <ul> + <li>you are building a small data-mapper and want to lazily load data across associations in your object graph</li> + <li>you want to initialize objects representing rows in a large dataset</li> + <li>you want to compare instances of lazily initialized objects without the risk of comparing a proxy with a real subject</li> + <li>you are aware of the internal state of the object and are confident in working with its internals via reflection or direct property access</li> + </ul> + +<hr /> + + <h3 class="section-title">Usage examples</h3> + + <p><a href="https://github.com/Ocramius/ProxyManager" target="_blank">ProxyManager</a> provides a factory that creates lazy loading ghost objects. To use it, follow these steps:</p> + + <p>First of all, define your object's logic without taking care of lazy loading:</p> + + <pre> + <code class="php"> +namespace MyApp; + +class Customer +{ + private $name; + private $surname; + + // just write your business logic or generally logic + // don't worry about how complex this object will be! + // don't code lazy-loading oriented optimizations in here! + public function getName() { return $this->name; } + public function setName($name) { $this->name = (string) $name; } + public function getSurname() { return $this->surname; } + public function setSurname($surname) { $this->surname = (string) $surname; } +} + </code> + </pre> + + <p>Then use the proxy manager to create a ghost object of it. You will be responsible of setting its state during lazy loading:</p> + + <pre> + <code class="php"> +namespace MyApp; + +use ProxyManager\Factory\LazyLoadingGhostFactory; +use ProxyManager\Proxy\LazyLoadingInterface; + +require_once __DIR__ . '/vendor/autoload.php'; + +$factory = new LazyLoadingGhostFactory(); +$initializer = function (LazyLoadingInterface $proxy, $method, array $parameters, & $initializer) { + $initializer = null; // disable initialization + + // load data and modify the object here + $proxy->setName('Agent'); + $proxy->setSurname('Smith'); + + return true; // confirm that initialization occurred correctly +}; + +$instance = $factory->createProxy('MyApp\Customer', $initializer); + </code> + </pre> + + <p>You can now simply use your object as before:</p> + + <pre> + <code class="php"> +// this will just work as before +echo $proxy->getName() . ' ' . $proxy->getSurname(); // Agent Smith + </code> + </pre> +<hr /> + + <h3 class="section-title">Lazy Initialization</h3> + + <p>As you can see, we use a closure to handle lazy initialization of the proxy instance at runtime. The initializer closure signature for ghost objects should be as following:</p> + + <pre> + <code class="php"> +/** + * @var object $proxy the instance the ghost object proxy that is being initialized + * @var string $method the name of the method that triggered lazy initialization + * @var array $parameters an ordered list of parameters passed to the method that + * triggered initialization, indexed by parameter name + * @var Closure $initializer a reference to the property that is the initializer for the + * proxy. Set it to null to disable further initialization + * + * @return bool true on success + */ +$initializer = function ($proxy, $method, $parameters, & $initializer) {}; + </code> + </pre> + + <p>The initializer closure should usually be coded like following:</p> + + <pre> + <code class="php"> +$initializer = function ($proxy, $method, $parameters, & $initializer) { + $initializer = null; // disable initializer for this proxy instance + + // modify the object with loaded data + $proxy->setFoo(/* ... */); + $proxy->setBar(/* ... */); + + return true; // report success +}; + </code> + </pre> + + <p>The <code>ProxyManager\Factory\LazyLoadingGhostFactory</code> produces proxies that implement both the <code>ProxyManager\Proxy\GhostObjectInterface</code> and the <code>ProxyManager\Proxy\LazyLoadingInterface</code>.</p> + + <p>At any point in time, you can set a new initializer for the proxy:</p> + + <pre> + <code class="php"> +$proxy->setProxyInitializer($initializer); + </code> + </pre> + + <p>In your initializer, you <strong>MUST</strong> turn off any further initialization:</p> + + <pre> + <code class="php"> +$proxy->setProxyInitializer(null); + </code> + </pre> + + <p>or</p> + + <pre> + <code class="php"> +$initializer = null; // if you use the initializer passed by reference to the closure + </code> + </pre> +<hr /> + + <h3 class="section-title">Triggering Initialization</h3> + + <p>A lazy loading ghost object is initialized whenever you access any property or method of it. Any of the following interactions would trigger lazy initialization:</p> + + <pre> + <code class="php"> +// calling a method +$proxy->someMethod(); + +// reading a property +echo $proxy->someProperty; + +// writing a property +$proxy->someProperty = 'foo'; + +// checking for existence of a property +isset($proxy->someProperty); + +// removing a property +unset($proxy->someProperty); + +// cloning the entire proxy +clone $proxy; + +// serializing the proxy +$unserialized = unserialize(serialize($proxy)); + </code> + </pre> + + <p>Remember to call <code>$proxy->setProxyInitializer(null);</code> to disable initialization of your proxy, or it will happen more than once.</p> + +<hr /> + + <h3 class="section-title">Proxying interfaces</h3> + + <p>You can also generate proxies from an interface FQCN. By proxying an interface, you will only be able to access the methods defined by the interface itself, even if the <code>wrappedObject</code> implements more methods. This will anyway save some memory since the proxy won't contain any properties.</p> + + <p>Tuning performance for production</p> + + <p>See <a href="production.html">Tuning ProxyManager for Production.</a></p> + +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/html-docs/img/block.png b/vendor/ocramius/proxy-manager/html-docs/img/block.png new file mode 100644 index 0000000000000000000000000000000000000000..fb8f17aaf8479d5e92fb9715d81f5f7c1b262c04 GIT binary patch literal 2373 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 P>wj#hlt6N=Z?y7n2#Vl( literal 0 HcmV?d00001 diff --git a/vendor/ocramius/proxy-manager/html-docs/img/enf.png b/vendor/ocramius/proxy-manager/html-docs/img/enf.png new file mode 100644 index 0000000000000000000000000000000000000000..7e15bdda716cc1ce495de59800877f4965ce335e GIT binary patch literal 3738 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 Ef{OK7t^fc4 literal 0 HcmV?d00001 diff --git a/vendor/ocramius/proxy-manager/html-docs/index.html b/vendor/ocramius/proxy-manager/html-docs/index.html new file mode 100644 index 00000000000..a1b2113679c --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/index.html @@ -0,0 +1,295 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/default.min.css"> + <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script> + <script>hljs.initHighlightingOnLoad();</script> + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"><div class="page-title-wrapper"> +<div class="container"> + <img src="https://github.com/Ocramius/ProxyManager/raw/master/proxy-manager.png"> + <h2 class="page-title">Proxy Manager</h2> +</div> +</div> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> + +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <h3>Proxy Manager</h3> + <p>This library aims at providing abstraction for generating various kinds of <a href="http://ocramius.github.io/presentations/proxy-pattern-in-php/" target="_blank">proxy classes</a>.</p> + <p>If you want to learn more about proxy pattern watch this video:</p> + + <iframe width="640" height="390" src="//www.youtube.com/embed/Ka8wlV8M6Vg" frameborder="0" allowfullscreen></iframe> +<hr /> + <div class="bcms-clearfix"></div> + <h3 class="section-title">Installation</h3> + <p>The suggested installation method is via <a href="https://getcomposer.org/" target="_blank">composer</a>.</p> + <pre><code class="sh">php composer.phar require ocramius/proxy-manager:1.0.*</code></pre> +<hr /> + + <h3 class="section-title" id="virtualproxy">Lazy Loading Value Holders (Virtual Proxy)</h3> + + <p>ProxyManager can generate + <a href="http://www.martinfowler.com/eaaCatalog/lazyLoad.html" target="_blank">lazy loading value holders</a>, + which are virtual proxies capable of saving performance and memory for objects that + require a lot of dependencies or CPU cycles to be loaded: + particularly useful when you may not always need the object, + but are constructing it anyways.</p> + + <pre> + <code class="php"> +$factory = new \ProxyManager\Factory\LazyLoadingValueHolderFactory(); + +$proxy = $factory->createProxy( + 'MyApp\HeavyComplexObject', + function (& $wrappedObject, $proxy, $method, $parameters, & $initializer) { + $wrappedObject = new HeavyComplexObject(); // instantiation logic here + $initializer = null; // turning off further lazy initialization + + return true; + } +); + +$proxy->doFoo(); + </code> + </pre> + + <p>See the <a href="virtual-proxy.html">complete documentation about lazy loading value holders</a>.</p> +<hr /> + + <h3 class="section-title">Access Interceptor Value Holder</h3> + + <p>An access interceptor value holder is a smart reference that allows you to execute + logic before and after a particular method is executed or a particular property is + accessed, and it allows to manipulate parameters and return values depending on + your needs.</p> + + <pre> + <code class="php"> +$factory = new \ProxyManager\Factory\AccessInterceptorValueHolderFactory(); + +$proxy = $factory->createProxy( + new \My\Db\Connection(), + array('query' => function () { echo "Query being executed!\n"; }), + array('query' => function () { echo "Query completed!\n"; }) +); + +$proxy->query(); // produces "Query being executed!\nQuery completed!\n" + </code> + </pre> + + <p>See the <a href="access-interceptor-value-holder-proxy.html">complete documentation about access interceptor value holders</a>.</p> +<hr /> + + <h3 class="section-title">Access Interceptor Scope Localizer</h3> + + <p>An access interceptor scope localizer works exactly like an access interceptor + value holder, but it is safe to use to proxy fluent interfaces.</p> + + <p>See the <a href="access-interceptor-scope-localizer-proxy.html">complete documentation about access interceptor scope localizer</a>.</p> +<hr /> + + + <h3 class="section-title">Null Objects</h3> + + <p>A Null Object proxy implements the null object pattern.</p> + + <p>This kind of proxy allows you to have fallback logic in case loading of the wrapped value failed.</p> + <pre> + <code class="php"> +$factory = new \ProxyManager\Factory\NullObjectFactory(); + +$proxy = $factory->createProxy('My\EntityObject'); + +$proxy->getName(); // empty return + </code> + </pre> + + <p>A Null Object Proxy can be created from an object, a class name or an interface name:</p> + <pre> + <code class="php"> +$factory = new \ProxyManager\Factory\NullObjectFactory(); + +$proxy = $factory->createProxy('My\EntityObjectInterface'); +$proxy->getName(); // empty return + +$proxy = $factory->createProxy($entity); // created from object +$proxy->getName(); // empty return + </code> + </pre> + + <p>See the <a href="null-object.html">complete documentation about null object proxy</a>.</p> + +<hr /> + + <h3 class="section-title">Ghost Objects</h3> + + <p>Similar to value holder, a ghost object is usually created to handle lazy loading.</p> + + <p>The difference between a value holder and a ghost object is that the ghost + object does not contain a real instance of the required object, but handles + lazy loading by initializing its own inherited properties.</p> + + <p>ProxyManager can generate + <a href="http://www.martinfowler.com/eaaCatalog/lazyLoad.html" target="_blank">lazy loading ghost objects</a>, + which are proxies used to save performance and memory for large datasets and + graphs representing relational data. Ghost objects are particularly useful + when building data-mappers.</p> + + <p>Additionally, the overhead introduced by ghost objects is very low when + compared to the memory and performance overhead caused by virtual proxies.</p> + + <pre> + <code class="php"> +$factory = new \ProxyManager\Factory\LazyLoadingGhostFactory(); + +$proxy = $factory->createProxy( + 'MyApp\HeavyComplexObject', + function ($proxy, $method, $parameters, & $initializer) { + $initializer = null; // turning off further lazy initialization + + // modify the proxy instance + $proxy->setFoo('foo'); + $proxy->setBar('bar'); + + return true; + } +); + +$proxy->doFoo(); + </code> + </pre> + + <p>See the <a href="ghost-object.html">complete documentation about lazy loading ghost objects</a>.</p> + +<hr /> + + <h3 class="section-title">Remote Object</h3> + + <p>A remote object proxy is an object that is located on a different system, + but is used as if it was available locally. There's various possible + remote proxy implementations, which could be based on xmlrpc/jsonrpc/soap/dnode/etc.</p> + + <p>This example uses the XML-RPC client of Zend Framework 2:</p> + + <pre> + <code class="php"> +interface FooServiceInterface +{ + public function foo(); +} + +$factory = new \ProxyManager\Factory\RemoteObjectFactory( + new \ProxyManager\Factory\RemoteObject\Adapter\XmlRpc( + new \Zend\XmlRpc\Client('https://example.com/rpc-endpoint') + ) +); + +// proxy is your remote implementation +$proxy = $factory->createProxy('FooServiceInterface'); + +var_dump($proxy->foo()); + </code> + </pre> + + <p>See the <a href="remote-object.html">complete documentation about remote objects</a>.</p> +<hr /> + + +<h3 class="section-title">Contributing</h3> + <p>Please read the <a href="contributing.html">CONTRIBUTING</a> contents if you wish to help out!</p> + +<hr /> + +<h3 class="section-title">Credits</h3> + + <p>The idea was originated by a <a href="http://marco-pivetta.com/proxy-pattern-in-php/" target="_blank">talk about Proxies in PHP OOP</a> that I gave at the <a href="https://twitter.com/phpugffm" target="_blank">@phpugffm</a> in January 2013.</p> + + + <div class="bcms-clearfix"></div> + + </div> + </div> +</div> + + +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/html-docs/null-object.html b/vendor/ocramius/proxy-manager/html-docs/null-object.html new file mode 100644 index 00000000000..c0f5395ba58 --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/null-object.html @@ -0,0 +1,185 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager - Null object</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php, null object" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/default.min.css"> + <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script> + <script>hljs.initHighlightingOnLoad();</script> + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <div class="bcms-clearfix"></div> + <h3 class="section-title">Null Object Proxy</h3> + <p>A Null Object proxy is a <a href="http://en.wikipedia.org/wiki/Null_Object_pattern" target="_blank">null object pattern</a> implementation. The proxy factory creates a new object with defined neutral behavior based on an other object, class name or interface.</p> +<hr /> + + <h3 class="section-title">What is null object proxy ?</h3> + + <p>In your application, when you can't return the object related to the request, the consumer of the model must check for the return value and handle the failing condition gracefully, thus generating an explosion of conditionals throughout your code. Fortunately, this seemingly-tangled situation can be sorted out simply by creating a polymorphic implementation of the domain object, which would implement the same interface as the one of the object in question, only that its methods wouldn’t do anything, therefore offloading client code from doing repetitive checks for ugly null values when the operation is executed.</p> + +<hr /> + + <h3 class="section-title">Usage examples</h3> + + <pre> + <code class="php"> +class UserMapper +{ + private $adapter; + + public function __construct(DatabaseAdapterInterface $adapter) { + $this->adapter = $adapter; + } + + public function fetchById($id) { + $this->adapter->select("users", array("id" => $id)); + if (!$row = $this->adapter->fetch()) { + return null; + } + return $this->createUser($row); + } + + private function createUser(array $row) { + $user = new Entity\User($row["name"], $row["email"]); + $user->setId($row["id"]); + return $user; + } +} + </code> + </pre> + + <p>If you want to remove conditionals from client code, you need to have a version of the entity conforming to the corresponding interface. With the Null Object Proxy, you can build this object :</p> + + <pre> + <code class="php"> +$factory = new \ProxyManager\Factory\NullObjectFactory(); + +$nullUser = $factory->createProxy('Entity\User'); + +var_dump($nullUser->getName()); // empty return + </code> + </pre> + + <p>You can now return a valid entity :</p> + + <pre> + <code class="php"> +class UserMapper +{ + private $adapter; + + public function __construct(DatabaseAdapterInterface $adapter) { + $this->adapter = $adapter; + } + + public function fetchById($id) { + $this->adapter->select("users", array("id" => $id)); + return $this->createUser($this->adapter->fetch()); + } + + private function createUser($row) { + if (!$row) { + $factory = new \ProxyManager\Factory\NullObjectFactory(); + + return $factory->createProxy('Entity\User'); + } + $user = new Entity\User($row["name"], $row["email"]); + $user->setId($row["id"]); + return $user; + } +} + </code> + </pre> + + +<hr /> + + <h3 class="section-title">Proxying interfaces</h3> + + <p>You can also generate proxies from an interface FQCN. By proxying an interface, you will only be able to access the methods defined by the interface itself, and like with the object, the methods are empty.</p> + + <p>Tuning performance for production</p> + + <p>See <a href="production.html">Tuning ProxyManager for Production.</a></p> + +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/html-docs/production.html b/vendor/ocramius/proxy-manager/html-docs/production.html new file mode 100644 index 00000000000..c9b4f03fbd5 --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/production.html @@ -0,0 +1,114 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager - Tuning the ProxyManager for production</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php, production" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/default.min.css"> + <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script> + <script>hljs.initHighlightingOnLoad();</script> + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <div class="bcms-clearfix"></div> + <h3 class="section-title">Tuning the ProxyManager for production</h3> + + <p>By default, all proxy factories generate the required proxy classes at runtime.</p> + + <p>Proxy generation causes I/O operations and uses a lot of reflection, so be sure to have generated all of your proxies <strong>before deploying your code on a live system</strong>, or you may experience poor performance.</p> + + <p>You can configure ProxyManager so that it will try autoloading the proxies first. Generating them "bulk" is not yet implemented:</p> + + <pre> + <code class="php"> +$config = new \ProxyManager\Configuration(); +$config->setProxiesTargetDir(__DIR__ . '/my/generated/classes/cache/dir'); + +// then register the autoloader +spl_autoload_register($config->getProxyAutoloader()); + </code> + </pre> + + <p>Generating a classmap with all your proxy classes in it will also work perfectly.</p> + + <p>Please note that all the currently implemented <code>ProxyManager\Factory\*</code> classes accept a <code>ProxyManager\Configuration</code> object as optional constructor parameter. This allows for fine-tuning of ProxyManager according to your needs.</p> + +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/html-docs/remote-object.html b/vendor/ocramius/proxy-manager/html-docs/remote-object.html new file mode 100644 index 00000000000..b04d566346e --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/remote-object.html @@ -0,0 +1,203 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager - Remote object</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php, remote object" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/default.min.css"> + <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script> + <script>hljs.initHighlightingOnLoad();</script> + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <div class="bcms-clearfix"></div> + <h3 class="section-title">Remote Object Proxy</h3> + + <p>The remote object implementation is a mechanism that enables an local object to control an other object on an other server. Each call method on the local object will do a network call to get information or execute operations on the remote object.</p> +<hr /> + + <h3 class="section-title">What is remote object proxy ?</h3> + + <p>A remote object is based on an interface. The remote interface defines the API that a consumer can call. This interface must be implemented both by the client and the RPC server.</p> +<hr /> + + <h3 class="section-title">Adapters</h3> + + <p>ZendFramework's RPC components (XmlRpc, JsonRpc & Soap) can be used easily with the remote object. You will need to require the one you need via composer, though:</p> + + <pre> + <code class="sh"> +$ php composer.phar require zendframework/zend-xmlrpc:2.* +$ php composer.phar require zendframework/zend-json:2.* +$ php composer.phar require zendframework/zend-soap:2.* + </code> + </pre> + + <p>ProxyManager comes with 3 adapters:</p> + + <ul> + <li><code>ProxyManager\Factory\RemoteObject\Adapter\XmlRpc</code></li> + <li><code>ProxyManager\Factory\RemoteObject\Adapter\JsonRpc</code></li> + <li><code>ProxyManager\Factory\RemoteObject\Adapter\Soap</code></li> + </ul> + +<hr /> + + <h3 class="section-title">Usage examples</h3> + + <p>RPC server side code (<code>xmlrpc.php</code> in your local webroot):</p> + + <pre> + <code class="php"> +interface FooServiceInterface +{ + public function foo(); +} + +class Foo implements FooServiceInterface +{ + /** + * Foo function + * @return string + */ + public function foo() + { + return 'bar remote'; + } +} + +$server = new Zend\XmlRpc\Server(); +$server->setClass('Foo', 'FooServiceInterface'); // my FooServiceInterface implementation +$server->handle(); + </code> + </pre> + + <p>Client side code (proxy) :</p> + + <pre> + <code class="php"> +interface FooServiceInterface +{ + public function foo(); +} + +$factory = new \ProxyManager\Factory\RemoteObjectFactory( + new \ProxyManager\Factory\RemoteObject\Adapter\XmlRpc( + new \Zend\XmlRpc\Client('https://localhost/xmlrpc.php') + ) +); + +$proxy = $factory->createProxy('FooServiceInterface'); + +var_dump($proxy->foo()); // "bar remote" + </code> + </pre> +<hr /> + + <h3 class="section-title">Implementing custom adapters</h3> + + <p>Your adapters must implement <code>ProxyManager\Factory\RemoteObject\AdapterInterface</code> :</p> + + <pre> + <code class="php"> +interface AdapterInterface +{ + /** + * Call remote object + * + * @param string $wrappedClass + * @param string $method + * @param array $params + * + * @return mixed + */ + public function call($wrappedClass, $method, array $params = array()); +} + </code> + </pre> + + <p>It is very easy to create your own implementation (for RESTful web services, for example). Simply pass your own adapter instance to your factory at construction time</p> + + <p>Tuning performance for production</p> + + <p>See <a href="production.html">Tuning ProxyManager for Production.</a></p> + +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/html-docs/virtual-proxy.html b/vendor/ocramius/proxy-manager/html-docs/virtual-proxy.html new file mode 100644 index 00000000000..71ab39dbd46 --- /dev/null +++ b/vendor/ocramius/proxy-manager/html-docs/virtual-proxy.html @@ -0,0 +1,305 @@ +<!DOCTYPE html> +<html class="no-js" id="top"> +<head> + <title>ProxyManager - Virtual Proxy</title> + + <meta name="description" content="A proxyManager write in php" /> + <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php, virtual proxy" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> + <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'> + <link href="css/styles.css" rel="stylesheet" /> + <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/default.min.css"> + <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script> + <script>hljs.initHighlightingOnLoad();</script> + <link rel="shortcut icon" href="favicon.ico"> +</head> +<body> + +<header class="site-header"> +<div class="container"> +<h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1> + +<nav class="main-nav" role="navigation"> +<ul> + <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a> + <div class="bcms-clearfix"></div> +</li> +</ul> +</nav> +</div> +</header> +<main role="main"> +<section class="component-content"> + +<div class="component-demo" id="live-demo"> + <div class="container"> + <div class="main-wrapper" style="text-align: right"> + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=fork&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe> + + <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&repo=ProxyManager&type=watch&count=true&size=large" + allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe> + + </div> + <div class="bcms-clearfix bcms-clearfix"></div> + </div> +</div> +<div class="component-info"> +<div class="container"> +<aside class="sidebar"> + <nav class="spy-nav"> + <ul> + <li><a href="index.html">Intro</a></li> + <li><a href="virtual-proxy.html">Virtual Proxy</a></li> + <li><a href="null-object.html">Null Objects</a></li> + <li><a href="ghost-object.html">Ghost Objects</a></li> + <li><a href="remote-object.html">Remote Object</a></li> + <li><a href="contributing.html">Contributing</a></li> + <li><a href="credits.html">Credits</a></li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </nav> +<div class="bcms-clearfix bcms-clearfix"></div> +<a class="btn btn-action btn-full download-component" + href="download.html">Download</a> + <div class="bcms-clearfix"></div> +</aside> + +<div class="content"> + <div class="bcms-clearfix"></div> + <h3 class="section-title">Lazy Loading Value Holder Proxy</h3> + <p>A lazy loading value holder proxy is a virtual proxy that wraps and lazily initializes a "real" instance of the proxied class.</p> +<hr /> + + <h3 class="section-title">What is lazy loading?</h3> + + <p>In pseudo-code, in userland, <a href="http://www.martinfowler.com/eaaCatalog/lazyLoad.html" target="_blank">lazy loading</a> looks like following:</p> + + <pre> + <code class="php"> +class MyObjectProxy +{ + private $wrapped; + + public function doFoo() + { + $this->init(); + + return $this->wrapped->doFoo(); + } + + private function init() + { + if (null === $this->wrapped) { + $this->wrapped = new MyObject(); + } + } +} + </code> +</pre> + + <p>This code is problematic, and adds a lot of complexity that makes your unit tests' code even worse.</p> + + <p>Also, this kind of usage often ends up in coupling your code with a particular <a href="http://martinfowler.com/articles/injection.html" target="_blank">Dependency Injection Container</a> or a framework that fetches dependencies for you. That way, further complexity is introduced, and some problems related with service location raise, as I've explained <a href="http://ocramius.github.io/blog/zf2-and-symfony-service-proxies-with-doctrine-proxies/" target="_blank">in this article</a>.</p> + + <p>Lazy loading value holders abstract this logic for you, hiding your complex, slow, performance-impacting objects behind tiny wrappers that have their same API, and that get initialized at first usage.</p> + +<hr /> + + <h3 class="section-title">When do I use a lazy value holder?</h3> + + <p>You usually need a lazy value holder in cases where following applies</p> + + <ul> + <li>your object takes a lot of time and memory to be initialized (with all dependencies)</li> + <li>your object is not always used, and the instantiation overhead can be avoided</li> + </ul> + +<hr /> + + <h3 class="section-title">Usage examples</h3> + + <p>ProxyManager provides a factory that eases instantiation of lazy loading value holders. To use it, follow these steps:</p> + + <p>First of all, define your object's logic without taking care of lazy loading:</p> + +<pre> + <code class="php"> +namespace MyApp; + +class HeavyComplexObject +{ + public function __construct() + { + // just write your business logic + // don't worry about how heavy initialization of this will be! + } + + public function doFoo() { + echo "OK!" + } +} + </code> +</pre> + +<p>Then use the proxy manager to create a lazy version of the object (as a proxy):</p> + +<pre> + <code class="php"> +namespace MyApp; + +use ProxyManager\Factory\LazyLoadingValueHolderFactory; +use ProxyManager\Proxy\LazyLoadingInterface; + +require_once __DIR__ . '/vendor/autoload.php'; + +$factory = new LazyLoadingValueHolderFactory(); +$initializer = function (& $wrappedObject, LazyLoadingInterface $proxy, $method, array $parameters, & $initializer) { + $initializer = null; // disable initialization + $wrappedObject = new HeavyComplexObject(); // fill your object with values here + + return true; // confirm that initialization occurred correctly +}; + +$instance = $factory->createProxy('MyApp\HeavyComplexObject', $initializer); + </code> +</pre> + +<p>You can now simply use your object as before:</p> + +<pre> + <code class="php"> +// this will just work as before +$proxy->doFoo(); // OK! + </code> +</pre> +<hr /> + + + <h3 class="section-title">Lazy Initialization</h3> + + <p>As you can see, we use a closure to handle lazy initialization of the proxy instance at runtime. The initializer closure signature should be as following:</p> + +<pre> + <code class="php"> +/** + * @var object $wrappedObject the instance (passed by reference) of the wrapped object, + * set it to your real object + * @var object $proxy the instance proxy that is being initialized + * @var string $method the name of the method that triggered lazy initialization + * @var string $parameters an ordered list of parameters passed to the method that + * triggered initialization, indexed by parameter name + * @var Closure $initializer a reference to the property that is the initializer for the + * proxy. Set it to null to disable further initialization + * + * @return bool true on success + */ +$initializer = function (& $wrappedObject, $proxy, $method, $parameters, & $initializer) {}; + </code> +</pre> + +<p>The initializer closure should usually be coded like following:</p> + +<pre> + <code class="php"> +$initializer = function (& $wrappedObject, $proxy, $method, $parameters, & $initializer) { + $newlyCreatedObject = new Foo(); // instantiation logic + $newlyCreatedObject->setBar('baz') // instantiation logic + $newlyCreatedObject->setBat('bam') // instantiation logic + + $wrappedObject = $newlyCreatedObject; // set wrapped object in the proxy + $initializer = null; // disable initializer + + return true; // report success +}; + </code> +</pre> + +<p>The <code>ProxyManager\Factory\LazyLoadingValueHolderFactory</code> produces proxies that implement both the <code>ProxyManager\Proxy\ValueHolderInterface</code> and the <code>ProxyManager\Proxy\LazyLoadingInterface</code>.</p> + +<p>At any point in time, you can set a new initializer for the proxy:</p> + +<pre><code class="php">$proxy->setProxyInitializer($initializer);</code></pre> + +<p>In your initializer, you currently <strong>MUST</strong> turn off any further initialization:</p> + +<pre><code class="php">$proxy->setProxyInitializer(null);</code></pre> + +<p>or</p> + +<pre><code class="php">$initializer = null; // if you use the initializer by reference</code></pre> +<hr /> + + <h3 class="section-title">Triggering Initialization</h3> + + <p>A lazy loading proxy is initialized whenever you access any property or method of it. Any of the following interactions would trigger lazy initialization:</p> + +<pre> + <code class="php"> +// calling a method +$proxy->someMethod(); + +// reading a property +echo $proxy->someProperty; + +// writing a property +$proxy->someProperty = 'foo'; + +// checking for existence of a property +isset($proxy->someProperty); + +// removing a property +unset($proxy->someProperty); + +// cloning the entire proxy +clone $proxy; + +// serializing the proxy +$unserialized = serialize(unserialize($proxy)); + </code> +</pre> + + <p>Remember to call <code>$proxy->setProxyInitializer(null);</code> to disable initialization of your proxy, or it will happen more than once.</p> + + + + + + + + +<hr /> + + <h3 class="section-title">Proxying interfaces</h3> + + <p>You can also generate proxies from an interface FQCN. By proxying an interface, you will only be able to access the methods defined by the interface itself, even if the wrappedObject implements more methods. This will anyway save some memory since the proxy won't contain useless inherited properties.</p> + + <p>Tuning performance for production</p> + + <p>See <a href="production.html">Tuning ProxyManager for Production.</a></p> + + + +</main> + + <footer class="site-footer" role="contentinfo"> + <div class="container"> + <div class="footer-logos"> + <ul> + <li><a href="index.html">Intro</a> | </li> + <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li> + <li><a href="null-object.html">Null Objects</a> | </li> + <li><a href="ghost-object.html">Ghost Objects</a> | </li> + <li><a href="remote-object.html">Remote Object</a> | </li> + <li><a href="contributing.html">Contributing</a> | </li> + <li><a href="credits.html">Credits</a> | </li> + <li><a href="copyright.html">Copyright</a></li> + </ul> + </div> + </div> + + <div class="bcms-clearfix"></div> + </footer> + <div class="bcms-clearfix"></div> + </body> +</html> diff --git a/vendor/ocramius/proxy-manager/index.html b/vendor/ocramius/proxy-manager/index.html new file mode 100644 index 00000000000..0ca8c043664 --- /dev/null +++ b/vendor/ocramius/proxy-manager/index.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta http-equiv="refresh" content="0;URL=html-docs/"> + <title></title> +</head> +<body> + +</body> +</html> diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Configuration.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Configuration.php index 77ff28c4810..3bf1d9a7227 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/Configuration.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Configuration.php @@ -18,13 +18,19 @@ namespace ProxyManager; -use ProxyManager\Autoloader\AutoloaderInterface; use ProxyManager\Autoloader\Autoloader; +use ProxyManager\Autoloader\AutoloaderInterface; use ProxyManager\FileLocator\FileLocator; use ProxyManager\GeneratorStrategy\FileWriterGeneratorStrategy; use ProxyManager\GeneratorStrategy\GeneratorStrategyInterface; -use ProxyManager\Inflector\ClassNameInflectorInterface; use ProxyManager\Inflector\ClassNameInflector; +use ProxyManager\Inflector\ClassNameInflectorInterface; +use ProxyManager\Signature\ClassSignatureGenerator; +use ProxyManager\Signature\ClassSignatureGeneratorInterface; +use ProxyManager\Signature\SignatureChecker; +use ProxyManager\Signature\SignatureCheckerInterface; +use ProxyManager\Signature\SignatureGenerator; +use ProxyManager\Signature\SignatureGeneratorInterface; /** * Base configuration class for the proxy manager - serves as micro disposable DIC/facade @@ -47,7 +53,7 @@ class Configuration protected $proxiesNamespace = self::DEFAULT_PROXY_NAMESPACE; /** - * @var \ProxyManager\GeneratorStrategy\GeneratorStrategyInterface|null + * @var GeneratorStrategyInterface|null */ protected $generatorStrategy; @@ -57,10 +63,25 @@ class Configuration protected $proxyAutoloader; /** - * @var \ProxyManager\Inflector\ClassNameInflectorInterface|null + * @var ClassNameInflectorInterface|null */ protected $classNameInflector; + /** + * @var SignatureGeneratorInterface|null + */ + protected $signatureGenerator; + + /** + * @var SignatureCheckerInterface|null + */ + protected $signatureChecker; + + /** + * @var ClassSignatureGeneratorInterface|null + */ + protected $classSignatureGenerator; + /** * @deprecated deprecated since version 0.5 * @codeCoverageIgnore @@ -81,7 +102,7 @@ class Configuration } /** - * @param \ProxyManager\Autoloader\AutoloaderInterface $proxyAutoloader + * @param AutoloaderInterface $proxyAutoloader */ public function setProxyAutoloader(AutoloaderInterface $proxyAutoloader) { @@ -89,18 +110,15 @@ class Configuration } /** - * @return \ProxyManager\Autoloader\AutoloaderInterface + * @return AutoloaderInterface */ public function getProxyAutoloader() { - if (null === $this->proxyAutoloader) { - $this->proxyAutoloader = new Autoloader( + return $this->proxyAutoloader + ?: $this->proxyAutoloader = new Autoloader( new FileLocator($this->getProxiesTargetDir()), $this->getClassNameInflector() ); - } - - return $this->proxyAutoloader; } /** @@ -132,15 +150,11 @@ class Configuration */ public function getProxiesTargetDir() { - if (null === $this->proxiesTargetDir) { - $this->proxiesTargetDir = sys_get_temp_dir(); - } - - return $this->proxiesTargetDir; + return $this->proxiesTargetDir ?: $this->proxiesTargetDir = sys_get_temp_dir(); } /** - * @param \ProxyManager\GeneratorStrategy\GeneratorStrategyInterface $generatorStrategy + * @param GeneratorStrategyInterface $generatorStrategy */ public function setGeneratorStrategy(GeneratorStrategyInterface $generatorStrategy) { @@ -148,19 +162,18 @@ class Configuration } /** - * @return \ProxyManager\GeneratorStrategy\GeneratorStrategyInterface + * @return GeneratorStrategyInterface */ public function getGeneratorStrategy() { - if (null === $this->generatorStrategy) { - $this->generatorStrategy = new FileWriterGeneratorStrategy(new FileLocator($this->getProxiesTargetDir())); - } - - return $this->generatorStrategy; + return $this->generatorStrategy + ?: $this->generatorStrategy = new FileWriterGeneratorStrategy( + new FileLocator($this->getProxiesTargetDir()) + ); } /** - * @param \ProxyManager\Inflector\ClassNameInflectorInterface $classNameInflector + * @param ClassNameInflectorInterface $classNameInflector */ public function setClassNameInflector(ClassNameInflectorInterface $classNameInflector) { @@ -168,14 +181,61 @@ class Configuration } /** - * @return \ProxyManager\Inflector\ClassNameInflectorInterface + * @return ClassNameInflectorInterface */ public function getClassNameInflector() { - if (null === $this->classNameInflector) { - $this->classNameInflector = new ClassNameInflector($this->getProxiesNamespace()); - } + return $this->classNameInflector + ?: $this->classNameInflector = new ClassNameInflector($this->getProxiesNamespace()); + } + + /** + * @param SignatureGeneratorInterface $signatureGenerator + */ + public function setSignatureGenerator(SignatureGeneratorInterface $signatureGenerator) + { + $this->signatureGenerator = $signatureGenerator; + } + + /** + * @return SignatureGeneratorInterface + */ + public function getSignatureGenerator() + { + return $this->signatureGenerator ?: $this->signatureGenerator = new SignatureGenerator(); + } + + /** + * @param SignatureCheckerInterface $signatureChecker + */ + public function setSignatureChecker(SignatureCheckerInterface $signatureChecker) + { + $this->signatureChecker = $signatureChecker; + } - return $this->classNameInflector; + /** + * @return SignatureCheckerInterface + */ + public function getSignatureChecker() + { + return $this->signatureChecker + ?: $this->signatureChecker = new SignatureChecker($this->getSignatureGenerator()); + } + + /** + * @param ClassSignatureGeneratorInterface $classSignatureGenerator + */ + public function setClassSignatureGenerator(ClassSignatureGeneratorInterface $classSignatureGenerator) + { + $this->classSignatureGenerator = $classSignatureGenerator; + } + + /** + * @return ClassSignatureGeneratorInterface + */ + public function getClassSignatureGenerator() + { + return $this->classSignatureGenerator + ?: new ClassSignatureGenerator($this->getSignatureGenerator()); } } diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Exception/InvalidProxiedClassException.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Exception/InvalidProxiedClassException.php index fff18b75b78..5dc08d14db3 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/Exception/InvalidProxiedClassException.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Exception/InvalidProxiedClassException.php @@ -20,6 +20,7 @@ namespace ProxyManager\Exception; use InvalidArgumentException; use ReflectionClass; +use ReflectionMethod; /** * Exception for invalid proxied classes @@ -38,4 +39,41 @@ class InvalidProxiedClassException extends InvalidArgumentException implements E { return new self(sprintf('Provided interface "%s" cannot be proxied', $reflection->getName())); } + + /** + * @param ReflectionClass $reflection + * + * @return self + */ + public static function finalClassNotSupported(ReflectionClass $reflection) + { + return new self(sprintf('Provided class "%s" is final and cannot be proxied', $reflection->getName())); + } + + /** + * @param ReflectionClass $reflection + * + * @return self + */ + public static function abstractProtectedMethodsNotSupported(ReflectionClass $reflection) + { + return new self(sprintf( + 'Provided class "%s" has following protected abstract methods, and therefore cannot be proxied:' . "\n%s", + $reflection->getName(), + implode( + "\n", + array_map( + function (ReflectionMethod $reflectionMethod) { + return $reflectionMethod->getDeclaringClass()->getName() . '::' . $reflectionMethod->getName(); + }, + array_filter( + $reflection->getMethods(), + function (ReflectionMethod $method) { + return $method->isAbstract() && $method->isProtected(); + } + ) + ) + ) + )); + } } diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AbstractBaseFactory.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AbstractBaseFactory.php index b3de2aa47b1..cbc7b1a5293 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AbstractBaseFactory.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AbstractBaseFactory.php @@ -20,6 +20,7 @@ namespace ProxyManager\Factory; use ProxyManager\Configuration; use ProxyManager\Generator\ClassGenerator; +use ProxyManager\Version; use ReflectionClass; /** @@ -36,21 +37,11 @@ abstract class AbstractBaseFactory protected $configuration; /** - * @var \ProxyManager\Inflector\ClassNameInflectorInterface - */ - protected $inflector; - - /** - * Cached generated class names + * Cached checked class names * * @var string[] */ - protected $generatedClasses = array(); - - /** - * @var \ProxyManager\ProxyGenerator\LazyLoadingValueHolderGenerator - */ - protected $generator; + private $checkedClasses = array(); /** * @param \ProxyManager\Configuration $configuration @@ -58,8 +49,6 @@ abstract class AbstractBaseFactory public function __construct(Configuration $configuration = null) { $this->configuration = $configuration ?: new Configuration(); - // localizing some properties for performance - $this->inflector = $this->configuration->getClassNameInflector(); } /** @@ -69,29 +58,55 @@ abstract class AbstractBaseFactory */ protected function generateProxy($className) { - if (! isset($this->generatedClasses[$className])) { - $this->generatedClasses[$className] = $this->inflector->getProxyClassName( - $className, - array('factory' => get_class($this)) - ); + if (isset($this->checkedClasses[$className])) { + return $this->checkedClasses[$className]; } - $proxyClassName = $this->generatedClasses[$className]; + $proxyParameters = array( + 'className' => $className, + 'factory' => get_class($this), + 'proxyManagerVersion' => Version::VERSION + ); + $proxyClassName = $this + ->configuration + ->getClassNameInflector() + ->getProxyClassName($className, $proxyParameters); if (! class_exists($proxyClassName)) { - $className = $this->inflector->getUserClassName($className); - $phpClass = new ClassGenerator($proxyClassName); - - $this->getGenerator()->generate(new ReflectionClass($className), $phpClass); - $this->configuration->getGeneratorStrategy()->generate($phpClass); - $this->configuration->getProxyAutoloader()->__invoke($proxyClassName); + $this->generateProxyClass($proxyClassName, $className, $proxyParameters); } - return $proxyClassName; + $this + ->configuration + ->getSignatureChecker() + ->checkSignature(new ReflectionClass($proxyClassName), $proxyParameters); + + return $this->checkedClasses[$className] = $proxyClassName; } /** * @return \ProxyManager\ProxyGenerator\ProxyGeneratorInterface */ abstract protected function getGenerator(); + + /** + * Generates the provided `$proxyClassName` from the given `$className` and `$proxyParameters` + * @param string $proxyClassName + * @param string $className + * @param array $proxyParameters + * + * @return void + */ + private function generateProxyClass($proxyClassName, $className, array $proxyParameters) + { + $className = $this->configuration->getClassNameInflector()->getUserClassName($className); + $phpClass = new ClassGenerator($proxyClassName); + + $this->getGenerator()->generate(new ReflectionClass($className), $phpClass); + + $phpClass = $this->configuration->getClassSignatureGenerator()->addSignature($phpClass, $proxyParameters); + + $this->configuration->getGeneratorStrategy()->generate($phpClass); + $this->configuration->getProxyAutoloader()->__invoke($proxyClassName); + } } diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AccessInterceptorScopeLocalizerFactory.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AccessInterceptorScopeLocalizerFactory.php index 629b67691b4..57d78e7e275 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AccessInterceptorScopeLocalizerFactory.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AccessInterceptorScopeLocalizerFactory.php @@ -28,6 +28,11 @@ use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizerGenerator; */ class AccessInterceptorScopeLocalizerFactory extends AbstractBaseFactory { + /** + * @var \ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizerGenerator|null + */ + private $generator; + /** * @param object $instance the object to be localized within the access interceptor * @param \Closure[] $prefixInterceptors an array (indexed by method name) of interceptor closures to be called diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AccessInterceptorValueHolderFactory.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AccessInterceptorValueHolderFactory.php index c18d95d9f4f..d5ef5044a69 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AccessInterceptorValueHolderFactory.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/AccessInterceptorValueHolderFactory.php @@ -28,6 +28,11 @@ use ProxyManager\ProxyGenerator\AccessInterceptorValueHolderGenerator; */ class AccessInterceptorValueHolderFactory extends AbstractBaseFactory { + /** + * @var \ProxyManager\ProxyGenerator\AccessInterceptorValueHolderGenerator|null + */ + private $generator; + /** * @param object $instance the object to be wrapped within the value holder * @param \Closure[] $prefixInterceptors an array (indexed by method name) of interceptor closures to be called @@ -39,8 +44,7 @@ class AccessInterceptorValueHolderFactory extends AbstractBaseFactory */ public function createProxy($instance, array $prefixInterceptors = array(), array $suffixInterceptors = array()) { - $className = get_class($instance); - $proxyClassName = $this->generateProxy($className); + $proxyClassName = $this->generateProxy(get_class($instance)); return new $proxyClassName($instance, $prefixInterceptors, $suffixInterceptors); } diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/LazyLoadingGhostFactory.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/LazyLoadingGhostFactory.php index 995f1688a20..73e030c781e 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/LazyLoadingGhostFactory.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/LazyLoadingGhostFactory.php @@ -30,6 +30,11 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhostGenerator; */ class LazyLoadingGhostFactory extends AbstractLazyFactory { + /** + * @var \ProxyManager\ProxyGenerator\LazyLoadingGhostGenerator|null + */ + private $generator; + /** * {@inheritDoc} */ diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/LazyLoadingValueHolderFactory.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/LazyLoadingValueHolderFactory.php index 02a273e9e8c..c1449be73c1 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/LazyLoadingValueHolderFactory.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/LazyLoadingValueHolderFactory.php @@ -30,6 +30,11 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolderGenerator; */ class LazyLoadingValueHolderFactory extends AbstractLazyFactory { + /** + * @var \ProxyManager\ProxyGenerator\LazyLoadingValueHolderGenerator|null + */ + private $generator; + /** * {@inheritDoc} */ diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/NullObjectFactory.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/NullObjectFactory.php index 121f6ba7fbe..9c605cbaf94 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/NullObjectFactory.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/NullObjectFactory.php @@ -28,6 +28,11 @@ use ProxyManager\ProxyGenerator\NullObjectGenerator; */ class NullObjectFactory extends AbstractBaseFactory { + /** + * @var \ProxyManager\ProxyGenerator\NullObjectGenerator|null + */ + private $generator; + /** * @param object $instanceOrClassName the object to be wrapped or interface to transform to null object * diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/RemoteObjectFactory.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/RemoteObjectFactory.php index f65049b3b75..52778d3ce83 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/RemoteObjectFactory.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Factory/RemoteObjectFactory.php @@ -35,6 +35,11 @@ class RemoteObjectFactory extends AbstractBaseFactory */ protected $adapter; + /** + * @var \ProxyManager\ProxyGenerator\RemoteObjectGenerator|null + */ + private $generator; + /** * {@inheritDoc} * diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Generator/Util/ClassGeneratorUtils.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Generator/Util/ClassGeneratorUtils.php new file mode 100644 index 00000000000..62e130c13ef --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Generator/Util/ClassGeneratorUtils.php @@ -0,0 +1,53 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\Generator\Util; + +use ReflectionClass; +use Zend\Code\Generator\ClassGenerator; +use Zend\Code\Generator\MethodGenerator; + +/** + * Util class to help to generate code + * + * @author Jefersson Nathan <malukenho@phpse.net> + * @license MIT + */ +final class ClassGeneratorUtils +{ + /** + * @param ReflectionClass $originalClass + * @param ClassGenerator $classGenerator + * @param MethodGenerator $generatedMethod + * + * @return void|false + */ + public static function addMethodIfNotFinal( + ReflectionClass $originalClass, + ClassGenerator $classGenerator, + MethodGenerator $generatedMethod + ) { + $methodName = $generatedMethod->getName(); + + if ($originalClass->hasMethod($methodName) && $originalClass->getMethod($methodName)->isFinal()) { + return false; + } + + $classGenerator->addMethodFromGenerator($generatedMethod); + } +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/ClassNameInflector.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/ClassNameInflector.php index c911b25fe63..934d82c8260 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/ClassNameInflector.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/ClassNameInflector.php @@ -18,7 +18,7 @@ namespace ProxyManager\Inflector; -use ProxyManager\Inflector\Util\ParameterEncoder; +use ProxyManager\Inflector\Util\ParameterHasher; /** * {@inheritDoc} @@ -26,7 +26,7 @@ use ProxyManager\Inflector\Util\ParameterEncoder; * @author Marco Pivetta <ocramius@gmail.com> * @license MIT */ -class ClassNameInflector implements ClassNameInflectorInterface +final class ClassNameInflector implements ClassNameInflectorInterface { /** * @var string @@ -44,9 +44,9 @@ class ClassNameInflector implements ClassNameInflectorInterface private $proxyMarker; /** - * @var \ProxyManager\Inflector\Util\ParameterEncoder + * @var \ProxyManager\Inflector\Util\ParameterHasher */ - private $parameterEncoder; + private $parameterHasher; /** * @param string $proxyNamespace @@ -56,7 +56,7 @@ class ClassNameInflector implements ClassNameInflectorInterface $this->proxyNamespace = (string) $proxyNamespace; $this->proxyMarker = '\\' . static::PROXY_MARKER . '\\'; $this->proxyMarkerLength = strlen($this->proxyMarker); - $this->parameterEncoder = new ParameterEncoder(); + $this->parameterHasher = new ParameterHasher(); } /** @@ -85,7 +85,7 @@ class ClassNameInflector implements ClassNameInflectorInterface return $this->proxyNamespace . $this->proxyMarker . $this->getUserClassName($className) - . '\\' . $this->parameterEncoder->encodeParameters($options); + . '\\Generated' . $this->parameterHasher->hashParameters($options); } /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/Util/ParameterEncoder.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/Util/ParameterEncoder.php index 82d6d8c209d..a1a4b172cfd 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/Util/ParameterEncoder.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/Util/ParameterEncoder.php @@ -36,6 +36,6 @@ class ParameterEncoder */ public function encodeParameters(array $parameters) { - return strtr(base64_encode(serialize($parameters)), '+/=', '†‡•'); + return base64_encode(serialize($parameters)); } } diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/Util/ParameterHasher.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/Util/ParameterHasher.php new file mode 100644 index 00000000000..970b1583c53 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Inflector/Util/ParameterHasher.php @@ -0,0 +1,40 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\Inflector\Util; + +/** + * Converts given parameters into a likely unique hash + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +class ParameterHasher +{ + /** + * Converts the given parameters into a likely-unique hash + * + * @param array $parameters + * + * @return string + */ + public function hashParameters(array $parameters) + { + return md5(serialize($parameters)); + } +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodPrefixInterceptors.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodPrefixInterceptors.php index 7462d6ef22e..b9c44a20c68 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodPrefixInterceptors.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodPrefixInterceptors.php @@ -18,8 +18,8 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptor\PropertyGenerator; -use Zend\Code\Generator\PropertyGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; +use Zend\Code\Generator\PropertyGenerator; /** * Property that contains the interceptor for operations to be executed before method execution diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodSuffixInterceptors.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodSuffixInterceptors.php index 2b809a60861..a11d6c24c0a 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodSuffixInterceptors.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodSuffixInterceptors.php @@ -18,8 +18,8 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptor\PropertyGenerator; -use Zend\Code\Generator\PropertyGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; +use Zend\Code\Generator\PropertyGenerator; /** * Property that contains the interceptor for operations to be executed after method execution diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/InterceptedMethod.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/InterceptedMethod.php index b865ca0c4e0..22068f7e715 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/InterceptedMethod.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/InterceptedMethod.php @@ -18,8 +18,8 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator; -use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\Util\InterceptorGenerator; use ProxyManager\Generator\MethodGenerator; +use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\Util\InterceptorGenerator; use Zend\Code\Generator\PropertyGenerator; use Zend\Code\Reflection\MethodReflection; diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicGet.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicGet.php index b6c241fcd9f..930b9d7e446 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicGet.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicGet.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\Util\InterceptorGenerator; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicIsset.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicIsset.php index 0021e22a25f..26eb275aeab 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicIsset.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicIsset.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\Util\InterceptorGenerator; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSet.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSet.php index c24780806be..e7562075b9c 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSet.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSet.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\Util\InterceptorGenerator; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicUnset.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicUnset.php index b2edaaf467d..3d404202f3d 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicUnset.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicUnset.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\Util\InterceptorGenerator; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizerGenerator.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizerGenerator.php index 1247f36cb7a..b6edee35a8d 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizerGenerator.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorScopeLocalizerGenerator.php @@ -18,25 +18,24 @@ namespace ProxyManager\ProxyGenerator; -use ProxyManager\Exception\InvalidProxiedClassException; - +use ProxyManager\Generator\Util\ClassGeneratorUtils; use ProxyManager\ProxyGenerator\AccessInterceptor\MethodGenerator\SetMethodPrefixInterceptor; use ProxyManager\ProxyGenerator\AccessInterceptor\MethodGenerator\SetMethodSuffixInterceptor; use ProxyManager\ProxyGenerator\AccessInterceptor\PropertyGenerator\MethodPrefixInterceptors; - use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\Constructor; use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\InterceptedMethod; use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\MagicClone; use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\MagicGet; -use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\MagicSet; use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\MagicIsset; - +use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\MagicSet; use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\MagicSleep; use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\MagicUnset; - +use ProxyManager\ProxyGenerator\Assertion\CanProxyAssertion; use ProxyManager\ProxyGenerator\Util\ProxiedMethodsFilter; use ReflectionClass; +use ReflectionMethod; use Zend\Code\Generator\ClassGenerator; +use Zend\Code\Generator\MethodGenerator; use Zend\Code\Reflection\MethodReflection; /** @@ -55,52 +54,43 @@ class AccessInterceptorScopeLocalizerGenerator implements ProxyGeneratorInterfac */ public function generate(ReflectionClass $originalClass, ClassGenerator $classGenerator) { - if ($originalClass->isInterface()) { - throw InvalidProxiedClassException::interfaceNotSupported($originalClass); - } + CanProxyAssertion::assertClassCanBeProxied($originalClass, false); $classGenerator->setExtendedClass($originalClass->getName()); $classGenerator->setImplementedInterfaces(array('ProxyManager\\Proxy\\AccessInterceptorInterface')); $classGenerator->addPropertyFromGenerator($prefixInterceptors = new MethodPrefixInterceptors()); $classGenerator->addPropertyFromGenerator($suffixInterceptors = new MethodPrefixInterceptors()); - $methods = ProxiedMethodsFilter::getProxiedMethods( - $originalClass, - array('__get', '__set', '__isset', '__unset', '__clone', '__sleep') - ); - - foreach ($methods as $method) { - $classGenerator->addMethodFromGenerator( - InterceptedMethod::generateMethod( - new MethodReflection($method->getDeclaringClass()->getName(), $method->getName()), - $prefixInterceptors, - $suffixInterceptors + array_map( + function (MethodGenerator $generatedMethod) use ($originalClass, $classGenerator) { + ClassGeneratorUtils::addMethodIfNotFinal($originalClass, $classGenerator, $generatedMethod); + }, + array_merge( + array_map( + function (ReflectionMethod $method) use ($prefixInterceptors, $suffixInterceptors) { + return InterceptedMethod::generateMethod( + new MethodReflection($method->getDeclaringClass()->getName(), $method->getName()), + $prefixInterceptors, + $suffixInterceptors + ); + }, + ProxiedMethodsFilter::getProxiedMethods( + $originalClass, + array('__get', '__set', '__isset', '__unset', '__clone', '__sleep') + ) + ), + array( + new Constructor($originalClass, $prefixInterceptors, $suffixInterceptors), + new SetMethodPrefixInterceptor($prefixInterceptors), + new SetMethodSuffixInterceptor($suffixInterceptors), + new MagicGet($originalClass, $prefixInterceptors, $suffixInterceptors), + new MagicSet($originalClass, $prefixInterceptors, $suffixInterceptors), + new MagicIsset($originalClass, $prefixInterceptors, $suffixInterceptors), + new MagicUnset($originalClass, $prefixInterceptors, $suffixInterceptors), + new MagicSleep($originalClass, $prefixInterceptors, $suffixInterceptors), + new MagicClone($originalClass, $prefixInterceptors, $suffixInterceptors), ) - ); - } - - $classGenerator->addMethodFromGenerator( - new Constructor($originalClass, $prefixInterceptors, $suffixInterceptors) - ); - $classGenerator->addMethodFromGenerator(new SetMethodPrefixInterceptor($prefixInterceptors)); - $classGenerator->addMethodFromGenerator(new SetMethodSuffixInterceptor($suffixInterceptors)); - $classGenerator->addMethodFromGenerator( - new MagicGet($originalClass, $prefixInterceptors, $suffixInterceptors) - ); - $classGenerator->addMethodFromGenerator( - new MagicSet($originalClass, $prefixInterceptors, $suffixInterceptors) - ); - $classGenerator->addMethodFromGenerator( - new MagicIsset($originalClass, $prefixInterceptors, $suffixInterceptors) - ); - $classGenerator->addMethodFromGenerator( - new MagicUnset($originalClass, $prefixInterceptors, $suffixInterceptors) - ); - $classGenerator->addMethodFromGenerator( - new MagicSleep($originalClass, $prefixInterceptors, $suffixInterceptors) - ); - $classGenerator->addMethodFromGenerator( - new MagicClone($originalClass, $prefixInterceptors, $suffixInterceptors) + ) ); } } diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/Constructor.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/Constructor.php index a2e9c8acfe0..925ee6b51ed 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/Constructor.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/Constructor.php @@ -18,10 +18,10 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator; -use ReflectionClass; -use ReflectionProperty; use ProxyManager\Generator\MethodGenerator; use ProxyManager\Generator\ParameterGenerator; +use ReflectionClass; +use ReflectionProperty; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/InterceptedMethod.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/InterceptedMethod.php index 46aab2d03d2..e882e3291a6 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/InterceptedMethod.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/InterceptedMethod.php @@ -18,8 +18,8 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator; -use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Util\InterceptorGenerator; use ProxyManager\Generator\MethodGenerator; +use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Util\InterceptorGenerator; use Zend\Code\Generator\PropertyGenerator; use Zend\Code\Reflection\MethodReflection; diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicGet.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicGet.php index 77e6c0c94a2..80962811ebd 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicGet.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicGet.php @@ -19,11 +19,11 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Util\InterceptorGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicIsset.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicIsset.php index daa6b742bff..2647b35297b 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicIsset.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicIsset.php @@ -19,11 +19,11 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Util\InterceptorGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicSet.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicSet.php index f79747dff3a..b443b770c9e 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicSet.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicSet.php @@ -19,11 +19,11 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Util\InterceptorGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicUnset.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicUnset.php index 1484c14c097..bdf3a1aa091 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicUnset.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicUnset.php @@ -19,11 +19,11 @@ namespace ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Util\InterceptorGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolderGenerator.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolderGenerator.php index 6abac1fb572..4b055495e0b 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolderGenerator.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/AccessInterceptorValueHolderGenerator.php @@ -18,12 +18,12 @@ namespace ProxyManager\ProxyGenerator; +use ProxyManager\Generator\Util\ClassGeneratorUtils; use ProxyManager\ProxyGenerator\AccessInterceptor\MethodGenerator\MagicWakeup; use ProxyManager\ProxyGenerator\AccessInterceptor\MethodGenerator\SetMethodPrefixInterceptor; use ProxyManager\ProxyGenerator\AccessInterceptor\MethodGenerator\SetMethodSuffixInterceptor; use ProxyManager\ProxyGenerator\AccessInterceptor\PropertyGenerator\MethodPrefixInterceptors; use ProxyManager\ProxyGenerator\AccessInterceptor\PropertyGenerator\MethodSuffixInterceptors; - use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Constructor; use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\InterceptedMethod; use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\MagicClone; @@ -31,16 +31,16 @@ use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Mag use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\MagicIsset; use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\MagicSet; use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\MagicUnset; - +use ProxyManager\ProxyGenerator\Assertion\CanProxyAssertion; +use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\PropertyGenerator\ValueHolderProperty; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\ProxiedMethodsFilter; use ProxyManager\ProxyGenerator\ValueHolder\MethodGenerator\GetWrappedValueHolderValue; - -use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\PropertyGenerator\ValueHolderProperty; - use ProxyManager\ProxyGenerator\ValueHolder\MethodGenerator\MagicSleep; use ReflectionClass; +use ReflectionMethod; use Zend\Code\Generator\ClassGenerator; +use Zend\Code\Generator\MethodGenerator; use Zend\Code\Reflection\MethodReflection; /** @@ -59,6 +59,8 @@ class AccessInterceptorValueHolderGenerator implements ProxyGeneratorInterface */ public function generate(ReflectionClass $originalClass, ClassGenerator $classGenerator) { + CanProxyAssertion::assertClassCanBeProxied($originalClass); + $publicProperties = new PublicPropertiesMap($originalClass); $interfaces = array( 'ProxyManager\\Proxy\\AccessInterceptorInterface', @@ -77,54 +79,60 @@ class AccessInterceptorValueHolderGenerator implements ProxyGeneratorInterface $classGenerator->addPropertyFromGenerator($suffixInterceptors = new MethodSuffixInterceptors()); $classGenerator->addPropertyFromGenerator($publicProperties); - foreach (ProxiedMethodsFilter::getProxiedMethods($originalClass) as $method) { - $classGenerator->addMethodFromGenerator( - InterceptedMethod::generateMethod( - new MethodReflection($method->getDeclaringClass()->getName(), $method->getName()), - $valueHolder, - $prefixInterceptors, - $suffixInterceptors + array_map( + function (MethodGenerator $generatedMethod) use ($originalClass, $classGenerator) { + ClassGeneratorUtils::addMethodIfNotFinal($originalClass, $classGenerator, $generatedMethod); + }, + array_merge( + array_map( + function (ReflectionMethod $method) use ($prefixInterceptors, $suffixInterceptors, $valueHolder) { + return InterceptedMethod::generateMethod( + new MethodReflection($method->getDeclaringClass()->getName(), $method->getName()), + $valueHolder, + $prefixInterceptors, + $suffixInterceptors + ); + }, + ProxiedMethodsFilter::getProxiedMethods($originalClass) + ), + array( + new Constructor($originalClass, $valueHolder, $prefixInterceptors, $suffixInterceptors), + new GetWrappedValueHolderValue($valueHolder), + new SetMethodPrefixInterceptor($prefixInterceptors), + new SetMethodSuffixInterceptor($suffixInterceptors), + new MagicGet( + $originalClass, + $valueHolder, + $prefixInterceptors, + $suffixInterceptors, + $publicProperties + ), + new MagicSet( + $originalClass, + $valueHolder, + $prefixInterceptors, + $suffixInterceptors, + $publicProperties + ), + new MagicIsset( + $originalClass, + $valueHolder, + $prefixInterceptors, + $suffixInterceptors, + $publicProperties + ), + new MagicUnset( + $originalClass, + $valueHolder, + $prefixInterceptors, + $suffixInterceptors, + $publicProperties + ), + new MagicClone($originalClass, $valueHolder, $prefixInterceptors, $suffixInterceptors), + new MagicSleep($originalClass, $valueHolder), + new MagicWakeup($originalClass, $valueHolder), ) - ); - } - - $classGenerator->addMethodFromGenerator( - new Constructor($originalClass, $valueHolder, $prefixInterceptors, $suffixInterceptors) - ); - $classGenerator->addMethodFromGenerator( - new GetWrappedValueHolderValue($valueHolder) - ); - $classGenerator->addMethodFromGenerator( - new SetMethodPrefixInterceptor($prefixInterceptors) - ); - $classGenerator->addMethodFromGenerator( - new SetMethodSuffixInterceptor($suffixInterceptors) - ); - - $classGenerator->addMethodFromGenerator( - new MagicGet($originalClass, $valueHolder, $prefixInterceptors, $suffixInterceptors, $publicProperties) - ); - - $classGenerator->addMethodFromGenerator( - new MagicSet($originalClass, $valueHolder, $prefixInterceptors, $suffixInterceptors, $publicProperties) - ); - - $classGenerator->addMethodFromGenerator( - new MagicIsset($originalClass, $valueHolder, $prefixInterceptors, $suffixInterceptors, $publicProperties) - ); - - $classGenerator->addMethodFromGenerator( - new MagicUnset($originalClass, $valueHolder, $prefixInterceptors, $suffixInterceptors, $publicProperties) - ); - - $classGenerator->addMethodFromGenerator( - new MagicClone($originalClass, $valueHolder, $prefixInterceptors, $suffixInterceptors) - ); - $classGenerator->addMethodFromGenerator( - new MagicSleep($originalClass, $valueHolder) - ); - $classGenerator->addMethodFromGenerator( - new MagicWakeup($originalClass, $valueHolder) + ) ); } } diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/Assertion/CanProxyAssertion.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/Assertion/CanProxyAssertion.php new file mode 100644 index 00000000000..213e15d9d65 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/Assertion/CanProxyAssertion.php @@ -0,0 +1,102 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\ProxyGenerator\Assertion; + +use BadMethodCallException; +use ProxyManager\Exception\InvalidProxiedClassException; +use ReflectionClass; +use ReflectionMethod; + +/** + * Assertion that verifies that a class can be proxied + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +final class CanProxyAssertion +{ + /** + * Disabled constructor: not meant to be instantiated + * + * @throws BadMethodCallException + */ + public function __construct() + { + throw new BadMethodCallException('Unsupported constructor.'); + } + + /** + * @param ReflectionClass $originalClass + * @param bool $allowInterfaces + * + * @throws InvalidProxiedClassException + */ + public static function assertClassCanBeProxied(ReflectionClass $originalClass, $allowInterfaces = true) + { + self::isNotFinal($originalClass); + self::hasNoAbstractProtectedMethods($originalClass); + + if (! $allowInterfaces) { + self::isNotInterface($originalClass); + } + } + + /** + * @param ReflectionClass $originalClass + * + * @throws InvalidProxiedClassException + */ + private static function isNotFinal(ReflectionClass $originalClass) + { + if ($originalClass->isFinal()) { + throw InvalidProxiedClassException::finalClassNotSupported($originalClass); + } + } + + /** + * @param ReflectionClass $originalClass + * + * @throws InvalidProxiedClassException + */ + private static function hasNoAbstractProtectedMethods(ReflectionClass $originalClass) + { + $protectedAbstract = array_filter( + $originalClass->getMethods(), + function (ReflectionMethod $method) { + return $method->isAbstract() && $method->isProtected(); + } + ); + + if ($protectedAbstract) { + throw InvalidProxiedClassException::abstractProtectedMethodsNotSupported($originalClass); + } + } + + /** + * @param ReflectionClass $originalClass + * + * @throws InvalidProxiedClassException + */ + private static function isNotInterface(ReflectionClass $originalClass) + { + if ($originalClass->isInterface()) { + throw InvalidProxiedClassException::interfaceNotSupported($originalClass); + } + } +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoading/MethodGenerator/Constructor.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoading/MethodGenerator/Constructor.php index 6f80e2f255a..224370b3325 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoading/MethodGenerator/Constructor.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoading/MethodGenerator/Constructor.php @@ -18,10 +18,10 @@ namespace ProxyManager\ProxyGenerator\LazyLoading\MethodGenerator; -use ReflectionClass; -use ReflectionProperty; use ProxyManager\Generator\MethodGenerator; use ProxyManager\Generator\ParameterGenerator; +use ReflectionClass; +use ReflectionProperty; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/InitializeProxy.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/InitializeProxy.php index cf5d417d7bf..90723c31c17 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/InitializeProxy.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/InitializeProxy.php @@ -19,8 +19,8 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator; use ProxyManager\Generator\MethodGenerator; -use Zend\Code\Generator\PropertyGenerator; use Zend\Code\Generator\MethodGenerator as ZendMethodGenerator; +use Zend\Code\Generator\PropertyGenerator; /** * Implementation for {@see \ProxyManager\Proxy\LazyLoadingInterface::initializeProxy} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/LazyLoadingMethodInterceptor.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/LazyLoadingMethodInterceptor.php index c5ce434e35e..d511a48298d 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/LazyLoadingMethodInterceptor.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/LazyLoadingMethodInterceptor.php @@ -19,8 +19,8 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator; use ProxyManager\Generator\MethodGenerator; -use Zend\Code\Generator\PropertyGenerator; use Zend\Code\Generator\MethodGenerator as ZendMethodGenerator; +use Zend\Code\Generator\PropertyGenerator; use Zend\Code\Reflection\MethodReflection; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicGet.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicGet.php index 6ede4695ebf..007b65974be 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicGet.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicGet.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\MethodGenerator; use Zend\Code\Generator\PropertyGenerator; diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicIsset.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicIsset.php index 6c0f67688c4..84c77fa9c4e 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicIsset.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicIsset.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\MethodGenerator; use Zend\Code\Generator\PropertyGenerator; diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSet.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSet.php index 76edc5097d4..902a16d8428 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSet.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSet.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\MethodGenerator; use Zend\Code\Generator\PropertyGenerator; diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicUnset.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicUnset.php index 7ad1357d607..5a5bd23cbda 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicUnset.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicUnset.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\MethodGenerator; use Zend\Code\Generator\PropertyGenerator; diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializationTracker.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializationTracker.php index 41b10d9a444..c303f1c5fa3 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializationTracker.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializationTracker.php @@ -18,8 +18,8 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingGhost\PropertyGenerator; -use Zend\Code\Generator\PropertyGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; +use Zend\Code\Generator\PropertyGenerator; /** * Property that contains the initializer for a lazy object diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializerProperty.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializerProperty.php index 3a3a65076b5..554889fd826 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializerProperty.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializerProperty.php @@ -18,8 +18,8 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingGhost\PropertyGenerator; -use Zend\Code\Generator\PropertyGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; +use Zend\Code\Generator\PropertyGenerator; /** * Property that contains the initializer for a lazy object diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhostGenerator.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhostGenerator.php index b8e7ffa9a90..1f9d88e5acf 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhostGenerator.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingGhostGenerator.php @@ -18,8 +18,9 @@ namespace ProxyManager\ProxyGenerator; +use ProxyManager\Generator\Util\ClassGeneratorUtils; +use ProxyManager\ProxyGenerator\Assertion\CanProxyAssertion; use ProxyManager\ProxyGenerator\LazyLoading\MethodGenerator\Constructor; - use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\CallInitializer; use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\GetProxyInitializer; use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\InitializeProxy; @@ -32,15 +33,15 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\MagicSet; use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\MagicSleep; use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\MagicUnset; use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\SetProxyInitializer; - use ProxyManager\ProxyGenerator\LazyLoadingGhost\PropertyGenerator\InitializationTracker; use ProxyManager\ProxyGenerator\LazyLoadingGhost\PropertyGenerator\InitializerProperty; - use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesDefaults; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\ProxiedMethodsFilter; use ReflectionClass; +use ReflectionMethod; use Zend\Code\Generator\ClassGenerator; +use Zend\Code\Generator\MethodGenerator; use Zend\Code\Reflection\MethodReflection; /** @@ -58,6 +59,8 @@ class LazyLoadingGhostGenerator implements ProxyGeneratorInterface */ public function generate(ReflectionClass $originalClass, ClassGenerator $classGenerator) { + CanProxyAssertion::assertClassCanBeProxied($originalClass); + $interfaces = array('ProxyManager\\Proxy\\GhostObjectInterface'); $publicProperties = new PublicPropertiesMap($originalClass); $publicPropsDefaults = new PublicPropertiesDefaults($originalClass); @@ -76,30 +79,36 @@ class LazyLoadingGhostGenerator implements ProxyGeneratorInterface $init = new CallInitializer($initializer, $publicPropsDefaults, $initializationTracker); - $classGenerator->addMethodFromGenerator($init); - - foreach (ProxiedMethodsFilter::getProxiedMethods($originalClass) as $method) { - $classGenerator->addMethodFromGenerator( - LazyLoadingMethodInterceptor::generateMethod( - new MethodReflection($method->getDeclaringClass()->getName(), $method->getName()), - $initializer, - $init + array_map( + function (MethodGenerator $generatedMethod) use ($originalClass, $classGenerator) { + ClassGeneratorUtils::addMethodIfNotFinal($originalClass, $classGenerator, $generatedMethod); + }, + array_merge( + array_map( + function (ReflectionMethod $method) use ($initializer, $init) { + return LazyLoadingMethodInterceptor::generateMethod( + new MethodReflection($method->getDeclaringClass()->getName(), $method->getName()), + $initializer, + $init + ); + }, + ProxiedMethodsFilter::getProxiedMethods($originalClass) + ), + array( + $init, + new Constructor($originalClass, $initializer), + new MagicGet($originalClass, $initializer, $init, $publicProperties), + new MagicSet($originalClass, $initializer, $init, $publicProperties), + new MagicIsset($originalClass, $initializer, $init, $publicProperties), + new MagicUnset($originalClass, $initializer, $init, $publicProperties), + new MagicClone($originalClass, $initializer, $init, $publicProperties), + new MagicSleep($originalClass, $initializer, $init, $publicProperties), + new SetProxyInitializer($initializer), + new GetProxyInitializer($initializer), + new InitializeProxy($initializer, $init), + new IsProxyInitialized($initializer), ) - ); - } - - $classGenerator->addMethodFromGenerator(new Constructor($originalClass, $initializer)); - - $classGenerator->addMethodFromGenerator(new MagicGet($originalClass, $initializer, $init, $publicProperties)); - $classGenerator->addMethodFromGenerator(new MagicSet($originalClass, $initializer, $init, $publicProperties)); - $classGenerator->addMethodFromGenerator(new MagicIsset($originalClass, $initializer, $init, $publicProperties)); - $classGenerator->addMethodFromGenerator(new MagicUnset($originalClass, $initializer, $init, $publicProperties)); - $classGenerator->addMethodFromGenerator(new MagicClone($originalClass, $initializer, $init)); - $classGenerator->addMethodFromGenerator(new MagicSleep($originalClass, $initializer, $init)); - - $classGenerator->addMethodFromGenerator(new SetProxyInitializer($initializer)); - $classGenerator->addMethodFromGenerator(new GetProxyInitializer($initializer)); - $classGenerator->addMethodFromGenerator(new InitializeProxy($initializer, $init)); - $classGenerator->addMethodFromGenerator(new IsProxyInitialized($initializer)); + ) + ); } } diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGet.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGet.php index ea7fcbcf000..43b3ec51aba 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGet.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGet.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicIsset.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicIsset.php index 09e4a85d3cb..11607a4cecb 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicIsset.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicIsset.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSet.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSet.php index b797b572519..45303191744 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSet.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSet.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicUnset.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicUnset.php index 7ee256ee215..0c339541f32 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicUnset.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicUnset.php @@ -19,10 +19,10 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; +use ProxyManager\Generator\ParameterGenerator; use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; use ProxyManager\ProxyGenerator\Util\PublicScopeSimulator; use ReflectionClass; -use ProxyManager\Generator\ParameterGenerator; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/InitializerProperty.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/InitializerProperty.php index 317306515f8..e7b436bac49 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/InitializerProperty.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/InitializerProperty.php @@ -18,8 +18,8 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingValueHolder\PropertyGenerator; -use Zend\Code\Generator\PropertyGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; +use Zend\Code\Generator\PropertyGenerator; /** * Property that contains the initializer for a lazy object diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/ValueHolderProperty.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/ValueHolderProperty.php index 7053e6d3d42..71895dca6d5 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/ValueHolderProperty.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/ValueHolderProperty.php @@ -18,8 +18,8 @@ namespace ProxyManager\ProxyGenerator\LazyLoadingValueHolder\PropertyGenerator; -use Zend\Code\Generator\PropertyGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; +use Zend\Code\Generator\PropertyGenerator; /** * Property that contains the wrapped value of a lazy loading proxy diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolderGenerator.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolderGenerator.php index b4be5abd4f5..0a9ab363a77 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolderGenerator.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolderGenerator.php @@ -18,14 +18,10 @@ namespace ProxyManager\ProxyGenerator; -use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; -use ProxyManager\ProxyGenerator\Util\ProxiedMethodsFilter; -use ProxyManager\ProxyGenerator\ValueHolder\MethodGenerator\GetWrappedValueHolderValue; - +use ProxyManager\Generator\Util\ClassGeneratorUtils; use ProxyManager\ProxyGenerator\AccessInterceptor\MethodGenerator\MagicWakeup; - +use ProxyManager\ProxyGenerator\Assertion\CanProxyAssertion; use ProxyManager\ProxyGenerator\LazyLoading\MethodGenerator\Constructor; - use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\GetProxyInitializer; use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\InitializeProxy; use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\IsProxyInitialized; @@ -37,12 +33,15 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicSet; use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicSleep; use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicUnset; use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\SetProxyInitializer; - use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\PropertyGenerator\InitializerProperty; use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\PropertyGenerator\ValueHolderProperty; - +use ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap; +use ProxyManager\ProxyGenerator\Util\ProxiedMethodsFilter; +use ProxyManager\ProxyGenerator\ValueHolder\MethodGenerator\GetWrappedValueHolderValue; use ReflectionClass; +use ReflectionMethod; use Zend\Code\Generator\ClassGenerator; +use Zend\Code\Generator\MethodGenerator; use Zend\Code\Reflection\MethodReflection; /** @@ -60,6 +59,8 @@ class LazyLoadingValueHolderGenerator implements ProxyGeneratorInterface */ public function generate(ReflectionClass $originalClass, ClassGenerator $classGenerator) { + CanProxyAssertion::assertClassCanBeProxied($originalClass); + $interfaces = array('ProxyManager\\Proxy\\VirtualProxyInterface'); $publicProperties = new PublicPropertiesMap($originalClass); @@ -74,39 +75,37 @@ class LazyLoadingValueHolderGenerator implements ProxyGeneratorInterface $classGenerator->addPropertyFromGenerator($initializer = new InitializerProperty()); $classGenerator->addPropertyFromGenerator($publicProperties); - foreach (ProxiedMethodsFilter::getProxiedMethods($originalClass) as $method) { - $classGenerator->addMethodFromGenerator( - LazyLoadingMethodInterceptor::generateMethod( - new MethodReflection($method->getDeclaringClass()->getName(), $method->getName()), - $initializer, - $valueHolder + array_map( + function (MethodGenerator $generatedMethod) use ($originalClass, $classGenerator) { + ClassGeneratorUtils::addMethodIfNotFinal($originalClass, $classGenerator, $generatedMethod); + }, + array_merge( + array_map( + function (ReflectionMethod $method) use ($initializer, $valueHolder) { + return LazyLoadingMethodInterceptor::generateMethod( + new MethodReflection($method->getDeclaringClass()->getName(), $method->getName()), + $initializer, + $valueHolder + ); + }, + ProxiedMethodsFilter::getProxiedMethods($originalClass) + ), + array( + new Constructor($originalClass, $initializer), + new MagicGet($originalClass, $initializer, $valueHolder, $publicProperties), + new MagicSet($originalClass, $initializer, $valueHolder, $publicProperties), + new MagicIsset($originalClass, $initializer, $valueHolder, $publicProperties), + new MagicUnset($originalClass, $initializer, $valueHolder, $publicProperties), + new MagicClone($originalClass, $initializer, $valueHolder), + new MagicSleep($originalClass, $initializer, $valueHolder), + new MagicWakeup($originalClass), + new SetProxyInitializer($initializer), + new GetProxyInitializer($initializer), + new InitializeProxy($initializer, $valueHolder), + new IsProxyInitialized($valueHolder), + new GetWrappedValueHolderValue($valueHolder), ) - ); - } - - $classGenerator->addMethodFromGenerator(new Constructor($originalClass, $initializer)); - - $classGenerator->addMethodFromGenerator( - new MagicGet($originalClass, $initializer, $valueHolder, $publicProperties) + ) ); - $classGenerator->addMethodFromGenerator( - new MagicSet($originalClass, $initializer, $valueHolder, $publicProperties) - ); - $classGenerator->addMethodFromGenerator( - new MagicIsset($originalClass, $initializer, $valueHolder, $publicProperties) - ); - $classGenerator->addMethodFromGenerator( - new MagicUnset($originalClass, $initializer, $valueHolder, $publicProperties) - ); - $classGenerator->addMethodFromGenerator(new MagicClone($originalClass, $initializer, $valueHolder)); - $classGenerator->addMethodFromGenerator(new MagicSleep($originalClass, $initializer, $valueHolder)); - $classGenerator->addMethodFromGenerator(new MagicWakeup($originalClass)); - - $classGenerator->addMethodFromGenerator(new SetProxyInitializer($initializer)); - $classGenerator->addMethodFromGenerator(new GetProxyInitializer($initializer)); - $classGenerator->addMethodFromGenerator(new InitializeProxy($initializer, $valueHolder)); - $classGenerator->addMethodFromGenerator(new IsProxyInitialized($valueHolder)); - - $classGenerator->addMethodFromGenerator(new GetWrappedValueHolderValue($valueHolder)); } } diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/NullObject/MethodGenerator/Constructor.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/NullObject/MethodGenerator/Constructor.php index 79dc165564d..7f4c4cec1b6 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/NullObject/MethodGenerator/Constructor.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/NullObject/MethodGenerator/Constructor.php @@ -18,9 +18,9 @@ namespace ProxyManager\ProxyGenerator\NullObject\MethodGenerator; +use ProxyManager\Generator\MethodGenerator; use ReflectionClass; use ReflectionProperty; -use ProxyManager\Generator\MethodGenerator; /** * The `__construct` implementation for null object proxies diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/NullObjectGenerator.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/NullObjectGenerator.php index 61983a2593a..db177ac4fe4 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/NullObjectGenerator.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/NullObjectGenerator.php @@ -18,12 +18,12 @@ namespace ProxyManager\ProxyGenerator; -use ProxyManager\ProxyGenerator\NullObject\MethodGenerator\NullObjectMethodInterceptor; +use ProxyManager\Generator\Util\ClassGeneratorUtils; +use ProxyManager\ProxyGenerator\Assertion\CanProxyAssertion; use ProxyManager\ProxyGenerator\NullObject\MethodGenerator\Constructor; - +use ProxyManager\ProxyGenerator\NullObject\MethodGenerator\NullObjectMethodInterceptor; use ProxyManager\ProxyGenerator\Util\ProxiedMethodsFilter; use ReflectionClass; - use Zend\Code\Generator\ClassGenerator; use Zend\Code\Reflection\MethodReflection; @@ -42,14 +42,12 @@ class NullObjectGenerator implements ProxyGeneratorInterface */ public function generate(ReflectionClass $originalClass, ClassGenerator $classGenerator) { + CanProxyAssertion::assertClassCanBeProxied($originalClass); + $interfaces = array('ProxyManager\\Proxy\\NullObjectInterface'); if ($originalClass->isInterface()) { $interfaces[] = $originalClass->getName(); - } else { - foreach ($originalClass->getInterfaceNames() as $name) { - $interfaces[] = $name; - } } $classGenerator->setImplementedInterfaces($interfaces); @@ -62,6 +60,6 @@ class NullObjectGenerator implements ProxyGeneratorInterface ); } - $classGenerator->addMethodFromGenerator(new Constructor($originalClass)); + ClassGeneratorUtils::addMethodIfNotFinal($originalClass, $classGenerator, new Constructor($originalClass)); } } diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/PropertyGenerator/PublicPropertiesDefaults.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/PropertyGenerator/PublicPropertiesDefaults.php index d13d7c77037..55822f3693f 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/PropertyGenerator/PublicPropertiesDefaults.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/PropertyGenerator/PublicPropertiesDefaults.php @@ -19,9 +19,9 @@ namespace ProxyManager\ProxyGenerator\PropertyGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; -use Zend\Code\Generator\PropertyGenerator; use ReflectionClass; use ReflectionProperty; +use Zend\Code\Generator\PropertyGenerator; /** * Map of public properties that exist in the class being proxied diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/PropertyGenerator/PublicPropertiesMap.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/PropertyGenerator/PublicPropertiesMap.php index 8b26a7e75c0..5682a4a6ded 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/PropertyGenerator/PublicPropertiesMap.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/PropertyGenerator/PublicPropertiesMap.php @@ -19,9 +19,9 @@ namespace ProxyManager\ProxyGenerator\PropertyGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; -use Zend\Code\Generator\PropertyGenerator; use ReflectionClass; use ReflectionProperty; +use Zend\Code\Generator\PropertyGenerator; /** * Map of public properties that exist in the class being proxied diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/Constructor.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/Constructor.php index 1a3ae69c14f..d1fcb8926ce 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/Constructor.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/Constructor.php @@ -18,9 +18,9 @@ namespace ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator; -use ReflectionClass; use ProxyManager\Generator\MethodGenerator; use ProxyManager\Generator\ParameterGenerator; +use ReflectionClass; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicGet.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicGet.php index e321263bbda..c1841dc2636 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicGet.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicGet.php @@ -19,8 +19,8 @@ namespace ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; -use ReflectionClass; use ProxyManager\Generator\ParameterGenerator; +use ReflectionClass; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicIsset.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicIsset.php index cf24797acf6..254977c3314 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicIsset.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicIsset.php @@ -19,8 +19,8 @@ namespace ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; -use ReflectionClass; use ProxyManager\Generator\ParameterGenerator; +use ReflectionClass; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicSet.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicSet.php index 6efaaf232e9..2b3c917a541 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicSet.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicSet.php @@ -19,8 +19,8 @@ namespace ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; -use ReflectionClass; use ProxyManager\Generator\ParameterGenerator; +use ReflectionClass; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicUnset.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicUnset.php index ffe34fbef38..fa7aba86976 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicUnset.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/MagicUnset.php @@ -19,8 +19,8 @@ namespace ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator; use ProxyManager\Generator\MagicMethodGenerator; -use ReflectionClass; use ProxyManager\Generator\ParameterGenerator; +use ReflectionClass; use Zend\Code\Generator\PropertyGenerator; /** diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/RemoteObjectMethod.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/RemoteObjectMethod.php index 3d0d1de5e29..e8476a69bd0 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/RemoteObjectMethod.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/MethodGenerator/RemoteObjectMethod.php @@ -19,9 +19,9 @@ namespace ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator; use ProxyManager\Generator\MethodGenerator; +use ReflectionClass; use Zend\Code\Generator\PropertyGenerator; use Zend\Code\Reflection\MethodReflection; -use ReflectionClass; /** * Method decorator for remote objects diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/PropertyGenerator/AdapterProperty.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/PropertyGenerator/AdapterProperty.php index 10b3dc64ed3..5ab1dd13382 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/PropertyGenerator/AdapterProperty.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObject/PropertyGenerator/AdapterProperty.php @@ -18,8 +18,8 @@ namespace ProxyManager\ProxyGenerator\RemoteObject\PropertyGenerator; -use Zend\Code\Generator\PropertyGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; +use Zend\Code\Generator\PropertyGenerator; /** * Property that contains the remote object adapter diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObjectGenerator.php b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObjectGenerator.php index d84f02f82a2..8a4a4e97bbb 100644 --- a/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObjectGenerator.php +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/ProxyGenerator/RemoteObjectGenerator.php @@ -18,17 +18,20 @@ namespace ProxyManager\ProxyGenerator; -use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\RemoteObjectMethod; -use ProxyManager\ProxyGenerator\RemoteObject\PropertyGenerator\AdapterProperty; +use ProxyManager\Generator\Util\ClassGeneratorUtils; +use ProxyManager\ProxyGenerator\Assertion\CanProxyAssertion; use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\Constructor; use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\MagicGet; -use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\MagicSet; use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\MagicIsset; +use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\MagicSet; use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\MagicUnset; - +use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\RemoteObjectMethod; +use ProxyManager\ProxyGenerator\RemoteObject\PropertyGenerator\AdapterProperty; use ProxyManager\ProxyGenerator\Util\ProxiedMethodsFilter; use ReflectionClass; +use ReflectionMethod; use Zend\Code\Generator\ClassGenerator; +use Zend\Code\Generator\MethodGenerator; use Zend\Code\Reflection\MethodReflection; /** @@ -46,6 +49,8 @@ class RemoteObjectGenerator implements ProxyGeneratorInterface */ public function generate(ReflectionClass $originalClass, ClassGenerator $classGenerator) { + CanProxyAssertion::assertClassCanBeProxied($originalClass); + $interfaces = array('ProxyManager\\Proxy\\RemoteObjectInterface'); if ($originalClass->isInterface()) { @@ -57,28 +62,32 @@ class RemoteObjectGenerator implements ProxyGeneratorInterface $classGenerator->setImplementedInterfaces($interfaces); $classGenerator->addPropertyFromGenerator($adapter = new AdapterProperty()); - $methods = ProxiedMethodsFilter::getProxiedMethods( - $originalClass, - array('__get', '__set', '__isset', '__unset') - ); - - foreach ($methods as $method) { - $classGenerator->addMethodFromGenerator( - RemoteObjectMethod::generateMethod( - new MethodReflection( - $method->getDeclaringClass()->getName(), - $method->getName() - ), - $adapter, - $originalClass + array_map( + function (MethodGenerator $generatedMethod) use ($originalClass, $classGenerator) { + ClassGeneratorUtils::addMethodIfNotFinal($originalClass, $classGenerator, $generatedMethod); + }, + array_merge( + array_map( + function (ReflectionMethod $method) use ($adapter, $originalClass) { + return RemoteObjectMethod::generateMethod( + new MethodReflection($method->getDeclaringClass()->getName(), $method->getName()), + $adapter, + $originalClass + ); + }, + ProxiedMethodsFilter::getProxiedMethods( + $originalClass, + array('__get', '__set', '__isset', '__unset') + ) + ), + array( + new Constructor($originalClass, $adapter), + new MagicGet($originalClass, $adapter), + new MagicSet($originalClass, $adapter), + new MagicIsset($originalClass, $adapter), + new MagicUnset($originalClass, $adapter), ) - ); - } - - $classGenerator->addMethodFromGenerator(new Constructor($originalClass, $adapter)); - $classGenerator->addMethodFromGenerator(new MagicGet($originalClass, $adapter)); - $classGenerator->addMethodFromGenerator(new MagicSet($originalClass, $adapter)); - $classGenerator->addMethodFromGenerator(new MagicIsset($originalClass, $adapter)); - $classGenerator->addMethodFromGenerator(new MagicUnset($originalClass, $adapter)); + ) + ); } } diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/ClassSignatureGenerator.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/ClassSignatureGenerator.php new file mode 100644 index 00000000000..70e90acd9e1 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/ClassSignatureGenerator.php @@ -0,0 +1,58 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\Signature; + +use Zend\Code\Generator\ClassGenerator; +use Zend\Code\Generator\PropertyGenerator; + +/** + * Applies a signature to a given class generator + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +final class ClassSignatureGenerator implements ClassSignatureGeneratorInterface +{ + /** + * @var SignatureGeneratorInterface + */ + private $signatureGenerator; + + /** + * @param SignatureGeneratorInterface $signatureGenerator + */ + public function __construct(SignatureGeneratorInterface $signatureGenerator) + { + $this->signatureGenerator = $signatureGenerator; + } + + /** + * {@inheritDoc} + */ + public function addSignature(ClassGenerator $classGenerator, array $parameters) + { + $classGenerator->addPropertyFromGenerator(new PropertyGenerator( + 'signature' . $this->signatureGenerator->generateSignatureKey($parameters), + $this->signatureGenerator->generateSignature($parameters), + PropertyGenerator::FLAG_STATIC | PropertyGenerator::FLAG_PRIVATE + )); + + return $classGenerator; + } +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/ClassSignatureGeneratorInterface.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/ClassSignatureGeneratorInterface.php new file mode 100644 index 00000000000..a5553ed2375 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/ClassSignatureGeneratorInterface.php @@ -0,0 +1,40 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\Signature; + +use Zend\Code\Generator\ClassGenerator; + +/** + * Applies a signature to a given class generator + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +interface ClassSignatureGeneratorInterface +{ + /** + * Applies a signature to a given class generator + * + * @param ClassGenerator $classGenerator + * @param array $parameters + * + * @return ClassGenerator + */ + public function addSignature(ClassGenerator $classGenerator, array $parameters); +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/ExceptionInterface.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/ExceptionInterface.php new file mode 100644 index 00000000000..c103153f780 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/ExceptionInterface.php @@ -0,0 +1,29 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\Signature\Exception; + +/** + * Exception marker for exceptions from the signature sub-component + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +interface ExceptionInterface +{ +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/InvalidSignatureException.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/InvalidSignatureException.php new file mode 100644 index 00000000000..7e974fcb995 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/InvalidSignatureException.php @@ -0,0 +1,50 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\Signature\Exception; + +use ReflectionClass; +use UnexpectedValueException; + +/** + * Exception for invalid provided signatures + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +class InvalidSignatureException extends UnexpectedValueException implements ExceptionInterface +{ + /** + * @param ReflectionClass $class + * @param array $parameters + * @param string $signature + * @param string $expected + * + * @return self + */ + public static function fromInvalidSignature(ReflectionClass $class, array $parameters, $signature, $expected) + { + return new self(sprintf( + 'Found signature "%s" for class "%s" does not correspond to expected signature "%s" for %d parameters', + $signature, + $class->getName(), + $expected, + count($parameters) + )); + } +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/MissingSignatureException.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/MissingSignatureException.php new file mode 100644 index 00000000000..e53f5277f32 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/Exception/MissingSignatureException.php @@ -0,0 +1,48 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\Signature\Exception; + +use ReflectionClass; +use UnexpectedValueException; + +/** + * Exception for no found signatures + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +class MissingSignatureException extends UnexpectedValueException implements ExceptionInterface +{ + /** + * @param ReflectionClass $class + * @param array $parameters + * @param string $expected + * + * @return self + */ + public static function fromMissingSignature(ReflectionClass $class, array $parameters, $expected) + { + return new self(sprintf( + 'No signature found for class "%s", expected signature "%s" for %d parameters', + $class->getName(), + $expected, + count($parameters) + )); + } +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureChecker.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureChecker.php new file mode 100644 index 00000000000..0a674eca610 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureChecker.php @@ -0,0 +1,68 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\Signature; + +use ProxyManager\Signature\Exception\InvalidSignatureException; +use ProxyManager\Signature\Exception\MissingSignatureException; +use ReflectionClass; + +/** + * Generator for signatures to be used to check the validity of generated code + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +final class SignatureChecker implements SignatureCheckerInterface +{ + /** + * @var SignatureGeneratorInterface + */ + private $signatureGenerator; + + /** + * @param SignatureGeneratorInterface $signatureGenerator + */ + public function __construct(SignatureGeneratorInterface $signatureGenerator) + { + $this->signatureGenerator = $signatureGenerator; + } + + /** + * {@inheritDoc} + */ + public function checkSignature(ReflectionClass $class, array $parameters) + { + $propertyName = 'signature' . $this->signatureGenerator->generateSignatureKey($parameters); + $signature = $this->signatureGenerator->generateSignature($parameters); + $defaultProperties = $class->getDefaultProperties(); + + if (! isset($defaultProperties[$propertyName])) { + throw MissingSignatureException::fromMissingSignature($class, $parameters, $signature); + } + + if ($defaultProperties[$propertyName] !== $signature) { + throw InvalidSignatureException::fromInvalidSignature( + $class, + $parameters, + $defaultProperties[$propertyName], + $signature + ); + } + } +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureCheckerInterface.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureCheckerInterface.php new file mode 100644 index 00000000000..ded656140c3 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureCheckerInterface.php @@ -0,0 +1,43 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\Signature; + +use ReflectionClass; + +/** + * Generator for signatures to be used to check the validity of generated code + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +interface SignatureCheckerInterface +{ + /** + * Checks whether the given signature is valid or not + * + * @param ReflectionClass $class + * @param array $parameters + * + * @return void + * + * @throws \ProxyManager\Signature\Exception\InvalidSignatureException + * @throws \ProxyManager\Signature\Exception\MissingSignatureException + */ + public function checkSignature(ReflectionClass $class, array $parameters); +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureGenerator.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureGenerator.php new file mode 100644 index 00000000000..473d3eab740 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureGenerator.php @@ -0,0 +1,66 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\Signature; + +use ProxyManager\Inflector\Util\ParameterEncoder; +use ProxyManager\Inflector\Util\ParameterHasher; + +/** + * {@inheritDoc} + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +final class SignatureGenerator implements SignatureGeneratorInterface +{ + /** + * @var ParameterEncoder + */ + private $parameterEncoder; + + /** + * @var ParameterHasher + */ + private $parameterHasher; + + /** + * Constructor. + */ + public function __construct() + { + $this->parameterEncoder = new ParameterEncoder(); + $this->parameterHasher = new ParameterHasher(); + } + + /** + * {@inheritDoc} + */ + public function generateSignature(array $parameters) + { + return $this->parameterEncoder->encodeParameters($parameters); + } + + /** + * {@inheritDoc} + */ + public function generateSignatureKey(array $parameters) + { + return $this->parameterHasher->hashParameters($parameters); + } +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureGeneratorInterface.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureGeneratorInterface.php new file mode 100644 index 00000000000..68ad30bd029 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Signature/SignatureGeneratorInterface.php @@ -0,0 +1,46 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager\Signature; + +/** + * Generator for signatures to be used to check the validity of generated code + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +interface SignatureGeneratorInterface +{ + /** + * Generates a signature to be used to verify generated code validity + * + * @param array $parameters + * + * @return string + */ + public function generateSignature(array $parameters); + + /** + * Generates a signature key to be looked up when verifying generated code validity + * + * @param array $parameters + * + * @return string + */ + public function generateSignatureKey(array $parameters); +} diff --git a/vendor/ocramius/proxy-manager/src/ProxyManager/Version.php b/vendor/ocramius/proxy-manager/src/ProxyManager/Version.php new file mode 100644 index 00000000000..a0367114c62 --- /dev/null +++ b/vendor/ocramius/proxy-manager/src/ProxyManager/Version.php @@ -0,0 +1,39 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManager; + +/** + * Version class - to be adjusted when a new release is created. + * + * Note that we cannot check the version at runtime via `git` because that would cause a lot of I/O operations. + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +final class Version +{ + const VERSION = '1.0.0'; + + /** + * Private constructor - this class is not meant to be instantiated + */ + private function __construct() + { + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Autoloader/AutoloaderTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Autoloader/AutoloaderTest.php index 0a662c2042b..aba8cf0fc3f 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Autoloader/AutoloaderTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Autoloader/AutoloaderTest.php @@ -27,6 +27,9 @@ use ProxyManager\Generator\Util\UniqueIdentifierGenerator; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @covers \ProxyManager\Autoloader\Autoloader + * @group Coverage */ class AutoloaderTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ConfigurationTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ConfigurationTest.php index 34354636acb..17ea4510035 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ConfigurationTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ConfigurationTest.php @@ -26,6 +26,8 @@ use ProxyManager\Configuration; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class ConfigurationTest extends PHPUnit_Framework_TestCase { @@ -69,6 +71,7 @@ class ConfigurationTest extends PHPUnit_Framework_TestCase $this->configuration->getClassNameInflector() ); + /* @var $inflector \ProxyManager\Inflector\ClassNameInflectorInterface */ $inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); $this->configuration->setClassNameInflector($inflector); @@ -87,6 +90,7 @@ class ConfigurationTest extends PHPUnit_Framework_TestCase $this->configuration->getGeneratorStrategy() ); + /* @var $strategy \ProxyManager\GeneratorStrategy\GeneratorStrategyInterface */ $strategy = $this->getMock('ProxyManager\\GeneratorStrategy\\GeneratorStrategyInterface'); $this->configuration->setGeneratorStrategy($strategy); @@ -116,9 +120,64 @@ class ConfigurationTest extends PHPUnit_Framework_TestCase $this->configuration->getProxyAutoloader() ); + /* @var $autoloader \ProxyManager\Autoloader\AutoloaderInterface */ $autoloader = $this->getMock('ProxyManager\\Autoloader\\AutoloaderInterface'); $this->configuration->setProxyAutoloader($autoloader); $this->assertSame($autoloader, $this->configuration->getProxyAutoloader()); } + + /** + * @covers \ProxyManager\Configuration::getSignatureGenerator + * @covers \ProxyManager\Configuration::setSignatureGenerator + */ + public function testSetGetSignatureGenerator() + { + $this->assertInstanceOf( + 'ProxyManager\\Signature\\SignatureGeneratorInterface', + $this->configuration->getSignatureGenerator() + ); + + /* @var $signatureGenerator \ProxyManager\Signature\SignatureGeneratorInterface */ + $signatureGenerator = $this->getMock('ProxyManager\\Signature\\SignatureGeneratorInterface'); + + $this->configuration->setSignatureGenerator($signatureGenerator); + $this->assertSame($signatureGenerator, $this->configuration->getSignatureGenerator()); + } + + /** + * @covers \ProxyManager\Configuration::getSignatureChecker + * @covers \ProxyManager\Configuration::setSignatureChecker + */ + public function testSetGetSignatureChecker() + { + $this->assertInstanceOf( + 'ProxyManager\\Signature\\SignatureCheckerInterface', + $this->configuration->getSignatureChecker() + ); + + /* @var $signatureChecker \ProxyManager\Signature\SignatureCheckerInterface */ + $signatureChecker = $this->getMock('ProxyManager\\Signature\\SignatureCheckerInterface'); + + $this->configuration->setSignatureChecker($signatureChecker); + $this->assertSame($signatureChecker, $this->configuration->getSignatureChecker()); + } + + /** + * @covers \ProxyManager\Configuration::getClassSignatureGenerator + * @covers \ProxyManager\Configuration::setClassSignatureGenerator + */ + public function testSetGetClassSignatureGenerator() + { + $this->assertInstanceOf( + 'ProxyManager\\Signature\\ClassSignatureGeneratorInterface', + $this->configuration->getClassSignatureGenerator() + ); + + /* @var $classSignatureGenerator \ProxyManager\Signature\ClassSignatureGeneratorInterface */ + $classSignatureGenerator = $this->getMock('ProxyManager\\Signature\\ClassSignatureGeneratorInterface'); + + $this->configuration->setClassSignatureGenerator($classSignatureGenerator); + $this->assertSame($classSignatureGenerator, $this->configuration->getClassSignatureGenerator()); + } } diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/DisabledMethodExceptionTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/DisabledMethodExceptionTest.php index 57cae41b881..5dc574e917c 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/DisabledMethodExceptionTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/DisabledMethodExceptionTest.php @@ -26,6 +26,9 @@ use ProxyManager\Exception\DisabledMethodException; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @covers \ProxyManager\Exception\DisabledMethodException + * @group Coverage */ class DisabledMethodExceptionTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/InvalidProxiedClassExceptionTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/InvalidProxiedClassExceptionTest.php index b7b63c9369a..0656dad7454 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/InvalidProxiedClassExceptionTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/InvalidProxiedClassExceptionTest.php @@ -27,12 +27,12 @@ use ReflectionClass; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @covers \ProxyManager\Exception\InvalidProxiedClassException + * @group Coverage */ class InvalidProxiedClassExceptionTest extends PHPUnit_Framework_TestCase { - /** - * @covers \ProxyManager\Exception\InvalidProxiedClassException::interfaceNotSupported - */ public function testInterfaceNotSupported() { $this->assertSame( @@ -42,4 +42,26 @@ class InvalidProxiedClassExceptionTest extends PHPUnit_Framework_TestCase )->getMessage() ); } + + public function testFinalClassNotSupported() + { + $this->assertSame( + 'Provided class "ProxyManagerTestAsset\FinalClass" is final and cannot be proxied', + InvalidProxiedClassException::finalClassNotSupported( + new ReflectionClass('ProxyManagerTestAsset\FinalClass') + )->getMessage() + ); + } + + public function testAbstractProtectedMethodsNotSupported() + { + $this->assertSame( + 'Provided class "ProxyManagerTestAsset\ClassWithAbstractProtectedMethod" has following protected abstract' + . ' methods, and therefore cannot be proxied:' . "\n" + . 'ProxyManagerTestAsset\ClassWithAbstractProtectedMethod::protectedAbstractMethod', + InvalidProxiedClassException::abstractProtectedMethodsNotSupported( + new ReflectionClass('ProxyManagerTestAsset\ClassWithAbstractProtectedMethod') + )->getMessage() + ); + } } diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/InvalidProxyDirectoryExceptionTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/InvalidProxyDirectoryExceptionTest.php index c80ff7e444f..71edab11b5c 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/InvalidProxyDirectoryExceptionTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/InvalidProxyDirectoryExceptionTest.php @@ -26,6 +26,9 @@ use ProxyManager\Exception\InvalidProxyDirectoryException; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @covers \ProxyManager\Exception\InvalidProxyDirectoryException + * @group Coverage */ class InvalidProxyDirectoryExceptionTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/UnsupportedProxiedClassExceptionTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/UnsupportedProxiedClassExceptionTest.php index 7370c7f1c62..68977c8a155 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/UnsupportedProxiedClassExceptionTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Exception/UnsupportedProxiedClassExceptionTest.php @@ -27,6 +27,9 @@ use ReflectionProperty; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @covers \ProxyManager\Exception\UnsupportedProxiedClassException + * @group Coverage */ class UnsupportedProxiedClassExceptionTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AbstractBaseFactoryTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AbstractBaseFactoryTest.php index e33f41bcd70..2c1b759a58f 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AbstractBaseFactoryTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AbstractBaseFactoryTest.php @@ -29,6 +29,7 @@ use ReflectionMethod; * @license MIT * * @covers \ProxyManager\Factory\AbstractBaseFactory + * @group Coverage */ class AbstractBaseFactoryTest extends PHPUnit_Framework_TestCase { @@ -57,16 +58,28 @@ class AbstractBaseFactoryTest extends PHPUnit_Framework_TestCase */ private $proxyAutoloader; + /** + * @var \ProxyManager\Signature\SignatureCheckerInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $signatureChecker; + + /** + * @var \ProxyManager\Signature\ClassSignatureGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $classSignatureGenerator; + /** * {@inheritDoc} */ public function setUp() { - $configuration = $this->getMock('ProxyManager\\Configuration'); - $this->generator = $this->getMock('ProxyManager\\ProxyGenerator\\ProxyGeneratorInterface'); - $this->classNameInflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); - $this->generatorStrategy = $this->getMock('ProxyManager\\GeneratorStrategy\\GeneratorStrategyInterface'); - $this->proxyAutoloader = $this->getMock('ProxyManager\\Autoloader\\AutoloaderInterface'); + $configuration = $this->getMock('ProxyManager\\Configuration'); + $this->generator = $this->getMock('ProxyManager\\ProxyGenerator\\ProxyGeneratorInterface'); + $this->classNameInflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->generatorStrategy = $this->getMock('ProxyManager\\GeneratorStrategy\\GeneratorStrategyInterface'); + $this->proxyAutoloader = $this->getMock('ProxyManager\\Autoloader\\AutoloaderInterface'); + $this->signatureChecker = $this->getMock('ProxyManager\\Signature\\SignatureCheckerInterface'); + $this->classSignatureGenerator = $this->getMock('ProxyManager\\Signature\\ClassSignatureGeneratorInterface'); $configuration ->expects($this->any()) @@ -83,6 +96,16 @@ class AbstractBaseFactoryTest extends PHPUnit_Framework_TestCase ->method('getProxyAutoloader') ->will($this->returnValue($this->proxyAutoloader)); + $configuration + ->expects($this->any()) + ->method('getSignatureChecker') + ->will($this->returnValue($this->signatureChecker)); + + $configuration + ->expects($this->any()) + ->method('getClassSignatureGenerator') + ->will($this->returnValue($this->classSignatureGenerator)); + $this ->classNameInflector ->expects($this->any()) @@ -125,6 +148,9 @@ class AbstractBaseFactoryTest extends PHPUnit_Framework_TestCase eval('class ' . $className . ' {}'); })); + $this->signatureChecker->expects($this->atLeastOnce())->method('checkSignature'); + $this->classSignatureGenerator->expects($this->once())->method('addSignature')->will($this->returnArgument(0)); + $this->assertSame($generatedClass, $generateProxy->invoke($this->factory, 'stdClass')); $this->assertTrue(class_exists($generatedClass, false)); $this->assertSame($generatedClass, $generateProxy->invoke($this->factory, 'stdClass')); diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AccessInterceptorScopeLocalizerFactoryTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AccessInterceptorScopeLocalizerFactoryTest.php index 61f83a4692f..ce10d0cb266 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AccessInterceptorScopeLocalizerFactoryTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AccessInterceptorScopeLocalizerFactoryTest.php @@ -30,6 +30,8 @@ use stdClass; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class AccessInterceptorScopeLocalizerFactoryTest extends PHPUnit_Framework_TestCase { @@ -38,6 +40,16 @@ class AccessInterceptorScopeLocalizerFactoryTest extends PHPUnit_Framework_TestC */ protected $inflector; + /** + * @var \PHPUnit_Framework_MockObject_MockObject + */ + protected $signatureChecker; + + /** + * @var \ProxyManager\Signature\ClassSignatureGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $classSignatureGenerator; + /** * @var \ProxyManager\Configuration|\PHPUnit_Framework_MockObject_MockObject */ @@ -48,13 +60,28 @@ class AccessInterceptorScopeLocalizerFactoryTest extends PHPUnit_Framework_TestC */ public function setUp() { - $this->config = $this->getMock('ProxyManager\\Configuration'); - $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->config = $this->getMock('ProxyManager\\Configuration'); + $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->signatureChecker = $this->getMock('ProxyManager\\Signature\\SignatureCheckerInterface'); + $this->classSignatureGenerator = $this->getMock('ProxyManager\\Signature\\ClassSignatureGeneratorInterface'); + $this ->config ->expects($this->any()) ->method('getClassNameInflector') ->will($this->returnValue($this->inflector)); + + $this + ->config + ->expects($this->any()) + ->method('getSignatureChecker') + ->will($this->returnValue($this->signatureChecker)); + + $this + ->config + ->expects($this->any()) + ->method('getClassSignatureGenerator') + ->will($this->returnValue($this->classSignatureGenerator)); } /** @@ -157,6 +184,9 @@ class AccessInterceptorScopeLocalizerFactoryTest extends PHPUnit_Framework_TestC ->with('stdClass') ->will($this->returnValue('ProxyManagerTestAsset\\LazyLoadingMock')); + $this->signatureChecker->expects($this->atLeastOnce())->method('checkSignature'); + $this->classSignatureGenerator->expects($this->once())->method('addSignature')->will($this->returnArgument(0)); + $factory = new AccessInterceptorScopeLocalizerFactory($this->config); /* @var $proxy \ProxyManagerTestAsset\AccessInterceptorValueHolderMock */ $proxy = $factory->createProxy($instance, array('foo'), array('bar')); diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AccessInterceptorValueHolderFactoryTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AccessInterceptorValueHolderFactoryTest.php index e3995a05496..a9a881cdafe 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AccessInterceptorValueHolderFactoryTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/AccessInterceptorValueHolderFactoryTest.php @@ -29,6 +29,8 @@ use stdClass; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class AccessInterceptorValueHolderFactoryTest extends PHPUnit_Framework_TestCase { @@ -37,6 +39,16 @@ class AccessInterceptorValueHolderFactoryTest extends PHPUnit_Framework_TestCase */ protected $inflector; + /** + * @var \PHPUnit_Framework_MockObject_MockObject + */ + protected $signatureChecker; + + /** + * @var \ProxyManager\Signature\ClassSignatureGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $classSignatureGenerator; + /** * @var \ProxyManager\Configuration|\PHPUnit_Framework_MockObject_MockObject */ @@ -47,13 +59,28 @@ class AccessInterceptorValueHolderFactoryTest extends PHPUnit_Framework_TestCase */ public function setUp() { - $this->config = $this->getMock('ProxyManager\\Configuration'); - $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->config = $this->getMock('ProxyManager\\Configuration'); + $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->signatureChecker = $this->getMock('ProxyManager\\Signature\\SignatureCheckerInterface'); + $this->classSignatureGenerator = $this->getMock('ProxyManager\\Signature\\ClassSignatureGeneratorInterface'); + $this ->config ->expects($this->any()) ->method('getClassNameInflector') ->will($this->returnValue($this->inflector)); + + $this + ->config + ->expects($this->any()) + ->method('getSignatureChecker') + ->will($this->returnValue($this->signatureChecker)); + + $this + ->config + ->expects($this->any()) + ->method('getClassSignatureGenerator') + ->will($this->returnValue($this->classSignatureGenerator)); } /** @@ -156,6 +183,9 @@ class AccessInterceptorValueHolderFactoryTest extends PHPUnit_Framework_TestCase ->with('stdClass') ->will($this->returnValue('ProxyManagerTestAsset\\LazyLoadingMock')); + $this->signatureChecker->expects($this->atLeastOnce())->method('checkSignature'); + $this->classSignatureGenerator->expects($this->once())->method('addSignature')->will($this->returnArgument(0)); + $factory = new AccessInterceptorValueHolderFactory($this->config); /* @var $proxy \ProxyManagerTestAsset\AccessInterceptorValueHolderMock */ $proxy = $factory->createProxy($instance, array('foo'), array('bar')); diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/LazyLoadingGhostFactoryTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/LazyLoadingGhostFactoryTest.php index 9a7d376bead..2089f58883a 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/LazyLoadingGhostFactoryTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/LazyLoadingGhostFactoryTest.php @@ -28,6 +28,8 @@ use ProxyManager\Generator\Util\UniqueIdentifierGenerator; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class LazyLoadingGhostFactoryTest extends PHPUnit_Framework_TestCase { @@ -36,6 +38,16 @@ class LazyLoadingGhostFactoryTest extends PHPUnit_Framework_TestCase */ protected $inflector; + /** + * @var \PHPUnit_Framework_MockObject_MockObject + */ + protected $signatureChecker; + + /** + * @var \ProxyManager\Signature\ClassSignatureGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $classSignatureGenerator; + /** * @var \ProxyManager\Configuration|\PHPUnit_Framework_MockObject_MockObject */ @@ -46,13 +58,28 @@ class LazyLoadingGhostFactoryTest extends PHPUnit_Framework_TestCase */ public function setUp() { - $this->config = $this->getMock('ProxyManager\\Configuration'); - $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->config = $this->getMock('ProxyManager\\Configuration'); + $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->signatureChecker = $this->getMock('ProxyManager\\Signature\\SignatureCheckerInterface'); + $this->classSignatureGenerator = $this->getMock('ProxyManager\\Signature\\ClassSignatureGeneratorInterface'); + $this ->config ->expects($this->any()) ->method('getClassNameInflector') ->will($this->returnValue($this->inflector)); + + $this + ->config + ->expects($this->any()) + ->method('getSignatureChecker') + ->will($this->returnValue($this->signatureChecker)); + + $this + ->config + ->expects($this->any()) + ->method('getClassSignatureGenerator') + ->will($this->returnValue($this->classSignatureGenerator)); } /** @@ -151,6 +178,9 @@ class LazyLoadingGhostFactoryTest extends PHPUnit_Framework_TestCase ->with($className) ->will($this->returnValue('ProxyManagerTestAsset\\LazyLoadingMock')); + $this->signatureChecker->expects($this->atLeastOnce())->method('checkSignature'); + $this->classSignatureGenerator->expects($this->once())->method('addSignature')->will($this->returnArgument(0)); + $factory = new LazyLoadingGhostFactory($this->config); $initializer = function () { }; diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/LazyLoadingValueHolderFactoryTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/LazyLoadingValueHolderFactoryTest.php index c9da4512f7d..31c0f3b05e7 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/LazyLoadingValueHolderFactoryTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/LazyLoadingValueHolderFactoryTest.php @@ -28,6 +28,8 @@ use ProxyManager\Generator\Util\UniqueIdentifierGenerator; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class LazyLoadingValueHolderFactoryTest extends PHPUnit_Framework_TestCase { @@ -36,6 +38,16 @@ class LazyLoadingValueHolderFactoryTest extends PHPUnit_Framework_TestCase */ protected $inflector; + /** + * @var \PHPUnit_Framework_MockObject_MockObject + */ + protected $signatureChecker; + + /** + * @var \ProxyManager\Signature\ClassSignatureGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $classSignatureGenerator; + /** * @var \ProxyManager\Configuration|\PHPUnit_Framework_MockObject_MockObject */ @@ -46,13 +58,28 @@ class LazyLoadingValueHolderFactoryTest extends PHPUnit_Framework_TestCase */ public function setUp() { - $this->config = $this->getMock('ProxyManager\\Configuration'); - $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->config = $this->getMock('ProxyManager\\Configuration'); + $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->signatureChecker = $this->getMock('ProxyManager\\Signature\\SignatureCheckerInterface'); + $this->classSignatureGenerator = $this->getMock('ProxyManager\\Signature\\ClassSignatureGeneratorInterface'); + $this ->config ->expects($this->any()) ->method('getClassNameInflector') ->will($this->returnValue($this->inflector)); + + $this + ->config + ->expects($this->any()) + ->method('getSignatureChecker') + ->will($this->returnValue($this->signatureChecker)); + + $this + ->config + ->expects($this->any()) + ->method('getClassSignatureGenerator') + ->will($this->returnValue($this->classSignatureGenerator)); } /** @@ -151,6 +178,9 @@ class LazyLoadingValueHolderFactoryTest extends PHPUnit_Framework_TestCase ->with($className) ->will($this->returnValue('ProxyManagerTestAsset\\LazyLoadingMock')); + $this->signatureChecker->expects($this->atLeastOnce())->method('checkSignature'); + $this->classSignatureGenerator->expects($this->once())->method('addSignature')->will($this->returnArgument(0)); + $factory = new LazyLoadingValueHolderFactory($this->config); $initializer = function () { }; diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/NullObjectFactoryTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/NullObjectFactoryTest.php index 7fa6b2b9ff6..ef3f2a778d7 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/NullObjectFactoryTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/NullObjectFactoryTest.php @@ -29,6 +29,8 @@ use stdClass; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class NullObjectFactoryTest extends PHPUnit_Framework_TestCase { @@ -37,6 +39,16 @@ class NullObjectFactoryTest extends PHPUnit_Framework_TestCase */ protected $inflector; + /** + * @var \PHPUnit_Framework_MockObject_MockObject + */ + protected $signatureChecker; + + /** + * @var \ProxyManager\Signature\ClassSignatureGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $classSignatureGenerator; + /** * @var \ProxyManager\Configuration|\PHPUnit_Framework_MockObject_MockObject */ @@ -47,13 +59,28 @@ class NullObjectFactoryTest extends PHPUnit_Framework_TestCase */ public function setUp() { - $this->config = $this->getMock('ProxyManager\\Configuration'); - $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->config = $this->getMock('ProxyManager\\Configuration'); + $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->signatureChecker = $this->getMock('ProxyManager\\Signature\\SignatureCheckerInterface'); + $this->classSignatureGenerator = $this->getMock('ProxyManager\\Signature\\ClassSignatureGeneratorInterface'); + $this ->config ->expects($this->any()) ->method('getClassNameInflector') ->will($this->returnValue($this->inflector)); + + $this + ->config + ->expects($this->any()) + ->method('getSignatureChecker') + ->will($this->returnValue($this->signatureChecker)); + + $this + ->config + ->expects($this->any()) + ->method('getClassSignatureGenerator') + ->will($this->returnValue($this->classSignatureGenerator)); } /** @@ -141,6 +168,9 @@ class NullObjectFactoryTest extends PHPUnit_Framework_TestCase ->with('stdClass') ->will($this->returnValue('ProxyManagerTestAsset\\NullObjectMock')); + $this->signatureChecker->expects($this->atLeastOnce())->method('checkSignature'); + $this->classSignatureGenerator->expects($this->once())->method('addSignature')->will($this->returnArgument(0)); + $factory = new NullObjectFactory($this->config); /* @var $proxy \ProxyManagerTestAsset\NullObjectMock */ $proxy = $factory->createProxy($instance); diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/BaseAdapterTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/BaseAdapterTest.php index cb7f1e7944d..df70ce8fd2f 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/BaseAdapterTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/BaseAdapterTest.php @@ -26,6 +26,8 @@ use ProxyManager\Factory\RemoteObject\Adapter\Soap; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class BaseAdapterTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/JsonRpcTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/JsonRpcTest.php index d2dd0285999..66e80d7966c 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/JsonRpcTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/JsonRpcTest.php @@ -26,6 +26,8 @@ use ProxyManager\Factory\RemoteObject\Adapter\JsonRpc; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class JsonRpcTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/SoapTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/SoapTest.php index 6dae8b783d0..fe93e000945 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/SoapTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/SoapTest.php @@ -26,6 +26,8 @@ use ProxyManager\Factory\RemoteObject\Adapter\Soap; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class SoapTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/XmlRpcTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/XmlRpcTest.php index fb6661c3bbb..d795e40db91 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/XmlRpcTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObject/Adapter/XmlRpcTest.php @@ -26,6 +26,8 @@ use ProxyManager\Factory\RemoteObject\Adapter\XmlRpc; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class XmlRpcTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObjectFactoryTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObjectFactoryTest.php index ad073e6b59f..a7385e0fa21 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObjectFactoryTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Factory/RemoteObjectFactoryTest.php @@ -28,6 +28,8 @@ use ProxyManager\Generator\Util\UniqueIdentifierGenerator; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class RemoteObjectFactoryTest extends PHPUnit_Framework_TestCase { @@ -36,6 +38,16 @@ class RemoteObjectFactoryTest extends PHPUnit_Framework_TestCase */ protected $inflector; + /** + * @var \PHPUnit_Framework_MockObject_MockObject + */ + protected $signatureChecker; + + /** + * @var \ProxyManager\Signature\ClassSignatureGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $classSignatureGenerator; + /** * @var \ProxyManager\Configuration|\PHPUnit_Framework_MockObject_MockObject */ @@ -46,13 +58,28 @@ class RemoteObjectFactoryTest extends PHPUnit_Framework_TestCase */ public function setUp() { - $this->config = $this->getMock('ProxyManager\\Configuration'); - $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->config = $this->getMock('ProxyManager\\Configuration'); + $this->inflector = $this->getMock('ProxyManager\\Inflector\\ClassNameInflectorInterface'); + $this->signatureChecker = $this->getMock('ProxyManager\\Signature\\SignatureCheckerInterface'); + $this->classSignatureGenerator = $this->getMock('ProxyManager\\Signature\\ClassSignatureGeneratorInterface'); + $this ->config ->expects($this->any()) ->method('getClassNameInflector') ->will($this->returnValue($this->inflector)); + + $this + ->config + ->expects($this->any()) + ->method('getSignatureChecker') + ->will($this->returnValue($this->signatureChecker)); + + $this + ->config + ->expects($this->any()) + ->method('getClassSignatureGenerator') + ->will($this->returnValue($this->classSignatureGenerator)); } /** @@ -138,6 +165,9 @@ class RemoteObjectFactoryTest extends PHPUnit_Framework_TestCase ->with('ProxyManagerTestAsset\\BaseInterface') ->will($this->returnValue('stdClass')); + $this->signatureChecker->expects($this->atLeastOnce())->method('checkSignature'); + $this->classSignatureGenerator->expects($this->once())->method('addSignature')->will($this->returnArgument(0)); + $adapter = $this->getMock('ProxyManager\Factory\RemoteObject\AdapterInterface'); $factory = new RemoteObjectFactory($adapter, $this->config); /* @var $proxy \stdClass */ diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/FileLocator/FileLocatorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/FileLocator/FileLocatorTest.php index 1ea2fca26a5..92991a01010 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/FileLocator/FileLocatorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/FileLocator/FileLocatorTest.php @@ -26,6 +26,8 @@ use ProxyManager\FileLocator\FileLocator; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class FileLocatorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/AccessInterceptorScopeLocalizerFunctionalTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/AccessInterceptorScopeLocalizerFunctionalTest.php index 5db91f4ab57..2e8984de8b8 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/AccessInterceptorScopeLocalizerFunctionalTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/AccessInterceptorScopeLocalizerFunctionalTest.php @@ -27,6 +27,7 @@ use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizerGenerator; use ProxyManagerTestAsset\BaseClass; use ProxyManagerTestAsset\ClassWithPublicArrayProperty; use ProxyManagerTestAsset\ClassWithPublicProperties; +use ProxyManagerTestAsset\ClassWithSelfHint; use ReflectionClass; use ProxyManager\Generator\ClassGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; @@ -306,7 +307,9 @@ class AccessInterceptorScopeLocalizerFunctionalTest extends PHPUnit_Framework_Te */ public function getProxyMethods() { - return array( + $selfHintParam = new ClassWithSelfHint(); + + $data = array( array( 'ProxyManagerTestAsset\\BaseClass', new BaseClass(), @@ -329,6 +332,19 @@ class AccessInterceptorScopeLocalizerFunctionalTest extends PHPUnit_Framework_Te 'publicByReferenceMethodDefault' ), ); + + if (PHP_VERSION_ID >= 50401) { + // PHP < 5.4.1 misbehaves, throwing strict standards, see https://bugs.php.net/bug.php?id=60573 + $data[] = array( + 'ProxyManagerTestAsset\\ClassWithSelfHint', + new ClassWithSelfHint(), + 'selfHintMethod', + array('parameter' => $selfHintParam), + $selfHintParam + ); + } + + return $data; } /** diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/AccessInterceptorValueHolderFunctionalTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/AccessInterceptorValueHolderFunctionalTest.php index c71edb60a91..7740e2e58b6 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/AccessInterceptorValueHolderFunctionalTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/AccessInterceptorValueHolderFunctionalTest.php @@ -24,6 +24,7 @@ use ProxyManager\ProxyGenerator\AccessInterceptorValueHolderGenerator; use ProxyManagerTestAsset\BaseClass; use ProxyManagerTestAsset\ClassWithPublicArrayProperty; use ProxyManagerTestAsset\ClassWithPublicProperties; +use ProxyManagerTestAsset\ClassWithSelfHint; use ReflectionClass; use ProxyManager\Generator\ClassGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; @@ -282,7 +283,9 @@ class AccessInterceptorValueHolderFunctionalTest extends PHPUnit_Framework_TestC */ public function getProxyMethods() { - return array( + $selfHintParam = new ClassWithSelfHint(); + + $data = array( array( 'ProxyManagerTestAsset\\BaseClass', new BaseClass(), @@ -312,6 +315,19 @@ class AccessInterceptorValueHolderFunctionalTest extends PHPUnit_Framework_TestC 'publicMethodDefault' ), ); + + if (PHP_VERSION_ID >= 50401) { + // PHP < 5.4.1 misbehaves, throwing strict standards, see https://bugs.php.net/bug.php?id=60573 + $data[] = array( + 'ProxyManagerTestAsset\\ClassWithSelfHint', + new ClassWithSelfHint(), + 'selfHintMethod', + array('parameter' => $selfHintParam), + $selfHintParam + ); + } + + return $data; } /** diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/FatalPreventionFunctionalTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/FatalPreventionFunctionalTest.php new file mode 100644 index 00000000000..290d52bba5f --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/FatalPreventionFunctionalTest.php @@ -0,0 +1,171 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTest\Functional; + +use PHPUnit_Framework_TestCase; +use PHPUnit_Util_PHP; +use ReflectionClass; + +/** + * Verifies that proxy-manager will not attempt to `eval()` code that will cause fatal errors + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + * + * @group Functional + * @coversNothing + */ +class FatalPreventionFunctionalTest extends PHPUnit_Framework_TestCase +{ + private $template = <<<'PHP' +<?php + +require_once %s; + +$className = %s; +$generatedClass = new ProxyManager\Generator\ClassGenerator(uniqid('generated')); +$generatorStrategy = new ProxyManager\GeneratorStrategy\EvaluatingGeneratorStrategy(); +$classGenerator = new %s; +$classSignatureGenerator = new ProxyManager\Signature\ClassSignatureGenerator( + new ProxyManager\Signature\SignatureGenerator() +); + +try { + $classGenerator->generate(new ReflectionClass($className), $generatedClass); + $classSignatureGenerator->addSignature($generatedClass, array('eval tests')); + $generatorStrategy->generate($generatedClass); +} catch (ProxyManager\Exception\ExceptionInterface $e) { +} catch (ReflectionException $e) { +} + +echo 'SUCCESS: ' . %s; +PHP; + + /** + * Verifies that code generation and evaluation will not cause fatals with any given class + * + * @param string $generatorClass an instantiable class (no arguments) implementing + * the {@see \ProxyManager\ProxyGenerator\ProxyGeneratorInterface} + * @param string $className a valid (existing/autoloadable) class name + * + * @dataProvider getTestedClasses + */ + public function testCodeGeneration($generatorClass, $className) + { + if (defined('HHVM_VERSION')) { + $this->markTestSkipped('HHVM is just too slow for this kind of test right now.'); + } + + if (PHP_VERSION_ID < 50401) { + $this->markTestSkipped('Can\'t run this test suite on php < 5.4.1'); + } + + $runner = PHPUnit_Util_PHP::factory(); + + $code = sprintf( + $this->template, + var_export(realpath(__DIR__ . '/../../../vendor/autoload.php'), true), + var_export($className, true), + $generatorClass, + var_export($className, true) + ); + + $result = $runner->runJob($code, array('-n')); + + if (('SUCCESS: ' . $className) !== $result['stdout']) { + $this->fail(sprintf( + "Crashed with class '%s' and generator '%s'.\n\nStdout:\n%s\nStderr:\n%s\nGenerated code:\n%s'", + $generatorClass, + $className, + $result['stdout'], + $result['stderr'], + $code + )); + } + + $this->assertSame('SUCCESS: ' . $className, $result['stdout']); + } + + /** + * @return string[][] + */ + public function getTestedClasses() + { + $that = $this; + + return call_user_func_array( + 'array_merge', + array_map( + function ($generator) use ($that) { + return array_map( + function ($class) use ($generator) { + return array($generator, $class); + }, + $that->getProxyTestedClasses() + ); + }, + array( + 'ProxyManager\\ProxyGenerator\\AccessInterceptorScopeLocalizerGenerator', + 'ProxyManager\\ProxyGenerator\\AccessInterceptorValueHolderGenerator', + 'ProxyManager\\ProxyGenerator\\LazyLoadingGhostGenerator', + 'ProxyManager\\ProxyGenerator\\LazyLoadingValueHolderGenerator', + 'ProxyManager\\ProxyGenerator\\NullObjectGenerator', + 'ProxyManager\\ProxyGenerator\\RemoteObjectGenerator', + ) + ) + ); + } + + /** + * @private (public only for PHP 5.3 compatibility) + * + * @return string[] + */ + public function getProxyTestedClasses() + { + $skippedPaths = array( + realpath(__DIR__ . '/../../src'), + realpath(__DIR__ . '/../../vendor'), + realpath(__DIR__ . '/../../tests/ProxyManagerTest'), + ); + + return array_filter( + get_declared_classes(), + function ($className) use ($skippedPaths) { + $reflectionClass = new ReflectionClass($className); + $fileName = $reflectionClass->getFileName(); + + if (! $fileName) { + return false; + } + + $realPath = realpath($fileName); + + foreach ($skippedPaths as $skippedPath) { + if (0 === strpos($realPath, $skippedPath)) { + // skip classes defined within ProxyManager, vendor or the test suite + return false; + } + } + + return true; + } + ); + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/LazyLoadingGhostFunctionalTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/LazyLoadingGhostFunctionalTest.php index 30b8ceb68f6..a6690f1001b 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/LazyLoadingGhostFunctionalTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/LazyLoadingGhostFunctionalTest.php @@ -30,6 +30,7 @@ use ProxyManagerTestAsset\ClassWithPublicArrayProperty; use ProxyManagerTestAsset\ClassWithPublicProperties; use ProxyManagerTestAsset\ClassWithProtectedProperties; use ProxyManagerTestAsset\ClassWithPrivateProperties; +use ProxyManagerTestAsset\ClassWithSelfHint; use ReflectionClass; use ReflectionProperty; @@ -368,7 +369,9 @@ class LazyLoadingGhostFunctionalTest extends PHPUnit_Framework_TestCase */ public function getProxyMethods() { - return array( + $selfHintParam = new ClassWithSelfHint(); + + $data = array( array( 'ProxyManagerTestAsset\\BaseClass', new BaseClass(), @@ -391,6 +394,19 @@ class LazyLoadingGhostFunctionalTest extends PHPUnit_Framework_TestCase 'publicByReferenceMethodDefault' ), ); + + if (PHP_VERSION_ID >= 50401) { + // PHP < 5.4.1 misbehaves, throwing strict standards, see https://bugs.php.net/bug.php?id=60573 + $data[] = array( + 'ProxyManagerTestAsset\\ClassWithSelfHint', + new ClassWithSelfHint(), + 'selfHintMethod', + array('parameter' => $selfHintParam), + $selfHintParam + ); + } + + return $data; } /** diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/LazyLoadingValueHolderFunctionalTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/LazyLoadingValueHolderFunctionalTest.php index 166dd0257fb..a638760b1ec 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/LazyLoadingValueHolderFunctionalTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/LazyLoadingValueHolderFunctionalTest.php @@ -28,6 +28,7 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolderGenerator; use ProxyManagerTestAsset\BaseClass; use ProxyManagerTestAsset\ClassWithPublicArrayProperty; use ProxyManagerTestAsset\ClassWithPublicProperties; +use ProxyManagerTestAsset\ClassWithSelfHint; use ReflectionClass; /** @@ -306,7 +307,9 @@ class LazyLoadingValueHolderFunctionalTest extends PHPUnit_Framework_TestCase */ public function getProxyMethods() { - return array( + $selfHintParam = new ClassWithSelfHint(); + + $data = array( array( 'ProxyManagerTestAsset\\BaseClass', new BaseClass(), @@ -336,6 +339,19 @@ class LazyLoadingValueHolderFunctionalTest extends PHPUnit_Framework_TestCase 'publicMethodDefault' ), ); + + if (PHP_VERSION_ID >= 50401) { + // PHP < 5.4.1 misbehaves, throwing strict standards, see https://bugs.php.net/bug.php?id=60573 + $data[] = array( + 'ProxyManagerTestAsset\\ClassWithSelfHint', + new ClassWithSelfHint(), + 'selfHintMethod', + array('parameter' => $selfHintParam), + $selfHintParam + ); + } + + return $data; } /** diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/MultipleProxyGenerationTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/MultipleProxyGenerationTest.php index de3bfee1c06..00be47dd477 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/MultipleProxyGenerationTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/MultipleProxyGenerationTest.php @@ -99,9 +99,11 @@ class MultipleProxyGenerationTest extends PHPUnit_Framework_TestCase */ public function getTestedClasses() { - return array( + $data = array( array('ProxyManagerTestAsset\\BaseClass'), array('ProxyManagerTestAsset\\ClassWithMagicMethods'), + array('ProxyManagerTestAsset\\ClassWithFinalMethods'), + array('ProxyManagerTestAsset\\ClassWithFinalMagicMethods'), array('ProxyManagerTestAsset\\ClassWithByRefMagicMethods'), array('ProxyManagerTestAsset\\ClassWithMixedProperties'), array('ProxyManagerTestAsset\\ClassWithPrivateProperties'), @@ -110,5 +112,12 @@ class MultipleProxyGenerationTest extends PHPUnit_Framework_TestCase array('ProxyManagerTestAsset\\EmptyClass'), array('ProxyManagerTestAsset\\HydratedObject'), ); + + if (PHP_VERSION_ID >= 50401) { + // PHP < 5.4.1 misbehaves, throwing strict standards, see https://bugs.php.net/bug.php?id=60573 + $data[] = array('ProxyManagerTestAsset\\ClassWithSelfHint'); + } + + return $data; } } diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/NullObjectFunctionalTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/NullObjectFunctionalTest.php index a84842404fa..adfeae55160 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/NullObjectFunctionalTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/NullObjectFunctionalTest.php @@ -22,6 +22,7 @@ use PHPUnit_Framework_TestCase; use ProxyManager\GeneratorStrategy\EvaluatingGeneratorStrategy; use ProxyManager\ProxyGenerator\NullObjectGenerator; use ProxyManagerTestAsset\BaseClass; +use ProxyManagerTestAsset\ClassWithSelfHint; use ReflectionClass; use ProxyManager\Generator\ClassGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; @@ -145,7 +146,9 @@ class NullObjectFunctionalTest extends PHPUnit_Framework_TestCase */ public function getProxyMethods() { - return array( + $selfHintParam = new ClassWithSelfHint(); + + $data = array( array( 'ProxyManagerTestAsset\\BaseClass', new BaseClass(), @@ -175,6 +178,19 @@ class NullObjectFunctionalTest extends PHPUnit_Framework_TestCase 'publicMethodDefault' ), ); + + if (PHP_VERSION_ID >= 50401) { + // PHP < 5.4.1 misbehaves, throwing strict standards, see https://bugs.php.net/bug.php?id=60573 + $data[] = array( + 'ProxyManagerTestAsset\\ClassWithSelfHint', + new ClassWithSelfHint(), + 'selfHintMethod', + array('parameter' => $selfHintParam), + $selfHintParam + ); + } + + return $data; } /** diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/RemoteObjectFunctionalTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/RemoteObjectFunctionalTest.php index 9356e876c7e..b5d9c956b59 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/RemoteObjectFunctionalTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Functional/RemoteObjectFunctionalTest.php @@ -25,6 +25,7 @@ use ProxyManager\Generator\ClassGenerator; use ProxyManager\Generator\Util\UniqueIdentifierGenerator; use ProxyManager\GeneratorStrategy\EvaluatingGeneratorStrategy; use ProxyManager\ProxyGenerator\RemoteObjectGenerator; +use ProxyManagerTestAsset\ClassWithSelfHint; use ProxyManagerTestAsset\RemoteProxy\Foo; use ReflectionClass; @@ -170,7 +171,9 @@ class RemoteObjectFunctionalTest extends PHPUnit_Framework_TestCase */ public function getProxyMethods() { - return array( + $selfHintParam = new ClassWithSelfHint(); + + $data = array( array( 'ProxyManagerTestAsset\RemoteProxy\FooServiceInterface', 'foo', @@ -196,6 +199,18 @@ class RemoteObjectFunctionalTest extends PHPUnit_Framework_TestCase 'baz remote' ), ); + + if (PHP_VERSION_ID >= 50401) { + // PHP < 5.4.1 misbehaves, throwing strict standards, see https://bugs.php.net/bug.php?id=60573 + $data[] = array( + new ClassWithSelfHint(), + 'selfHintMethod', + array($selfHintParam), + $selfHintParam + ); + } + + return $data; } /** diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/ClassGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/ClassGeneratorTest.php index 8bab3accf2a..c00f849d1e1 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/ClassGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/ClassGeneratorTest.php @@ -26,6 +26,8 @@ use ProxyManager\Generator\ClassGenerator; * * @author Gordon Stratton <gordon.stratton@gmail.com> * @license MIT + * + * @group Coverage */ class ClassGeneratorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/MagicMethodGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/MagicMethodGeneratorTest.php index f9cd0334957..c5ae31a05cb 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/MagicMethodGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/MagicMethodGeneratorTest.php @@ -27,6 +27,8 @@ use ProxyManager\Generator\MagicMethodGenerator; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicMethodGeneratorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/MethodGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/MethodGeneratorTest.php index cd0a5248a24..4c2306ae067 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/MethodGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/MethodGeneratorTest.php @@ -30,6 +30,7 @@ use Zend\Code\Reflection\MethodReflection; * @license MIT * * @covers \ProxyManager\Generator\MethodGenerator + * @group Coverage */ class MethodGeneratorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/ParameterGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/ParameterGeneratorTest.php index 98ac8b5c912..a67f2256d77 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/ParameterGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/ParameterGeneratorTest.php @@ -29,6 +29,7 @@ use Zend\Code\Reflection\ParameterReflection; * @license MIT * * @covers \ProxyManager\Generator\ParameterGenerator + * @group Coverage */ class ParameterGeneratorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/Util/ClassGeneratorUtilsTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/Util/ClassGeneratorUtilsTest.php new file mode 100644 index 00000000000..cf525465511 --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/Util/ClassGeneratorUtilsTest.php @@ -0,0 +1,72 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTest\Generator\Util; + +use ReflectionClass; +use PHPUnit_Framework_TestCase; +use ProxyManager\Generator\Util\ClassGeneratorUtils; + +/** + * Test to {@see ProxyManager\Generator\Util\ClassGeneratorUtils} + * + * @author Jefersson Nathan <malukenho@phpse.net> + * @license MIT + * + * @covers ProxyManager\Generator\Util\ClassGeneratorUtils + */ +class ClassGeneratorUtilsTest extends PHPUnit_Framework_TestCase +{ + public function testCantAddAFinalMethod() + { + $classGenerator = $this->getMock('Zend\\Code\\Generator\\ClassGenerator'); + $methodGenerator = $this->getMock('Zend\\Code\\Generator\\MethodGenerator'); + + $methodGenerator + ->expects($this->once()) + ->method('getName') + ->willReturn('foo'); + + $classGenerator + ->expects($this->never()) + ->method('addMethodFromGenerator'); + + $reflection = new ReflectionClass('ProxyManagerTestAsset\\ClassWithFinalMethods'); + + ClassGeneratorUtils::addMethodIfNotFinal($reflection, $classGenerator, $methodGenerator); + } + + public function testCanAddANotFinalMethod() + { + $classGenerator = $this->getMock('Zend\\Code\\Generator\\ClassGenerator'); + $methodGenerator = $this->getMock('Zend\\Code\\Generator\\MethodGenerator'); + + $methodGenerator + ->expects($this->once()) + ->method('getName') + ->willReturn('publicMethod'); + + $classGenerator + ->expects($this->once()) + ->method('addMethodFromGenerator'); + + $reflection = new ReflectionClass('ProxyManagerTestAsset\\BaseClass'); + + ClassGeneratorUtils::addMethodIfNotFinal($reflection, $classGenerator, $methodGenerator); + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/Util/UniqueIdentifierGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/Util/UniqueIdentifierGeneratorTest.php index b513978e626..5f4e8ec2286 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/Util/UniqueIdentifierGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Generator/Util/UniqueIdentifierGeneratorTest.php @@ -26,6 +26,8 @@ use ProxyManager\Generator\Util\UniqueIdentifierGenerator; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class UniqueIdentifierGeneratorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/BaseGeneratorStrategyTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/BaseGeneratorStrategyTest.php index 3d5f2fc4401..d2366a227d5 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/BaseGeneratorStrategyTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/BaseGeneratorStrategyTest.php @@ -28,6 +28,8 @@ use ProxyManager\Generator\Util\UniqueIdentifierGenerator; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class BaseGeneratorStrategyTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/EvaluatingGeneratorStrategyTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/EvaluatingGeneratorStrategyTest.php index 79c9307388f..90d22cec986 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/EvaluatingGeneratorStrategyTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/EvaluatingGeneratorStrategyTest.php @@ -28,6 +28,8 @@ use ProxyManager\GeneratorStrategy\EvaluatingGeneratorStrategy; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class EvaluatingGeneratorStrategyTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/FileWriterGeneratorStrategyTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/FileWriterGeneratorStrategyTest.php index eeb5abe1730..0e467c8e155 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/FileWriterGeneratorStrategyTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/GeneratorStrategy/FileWriterGeneratorStrategyTest.php @@ -28,6 +28,8 @@ use ProxyManager\Generator\Util\UniqueIdentifierGenerator; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class FileWriterGeneratorStrategyTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/ClassNameInflectorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/ClassNameInflectorTest.php index 2c172bd8f97..b95d7f203a9 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/ClassNameInflectorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/ClassNameInflectorTest.php @@ -27,6 +27,8 @@ use ProxyManager\Inflector\ClassNameInflectorInterface; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class ClassNameInflectorTest extends PHPUnit_Framework_TestCase { @@ -107,7 +109,28 @@ class ClassNameInflectorTest extends PHPUnit_Framework_TestCase } /** - * @return array + * @covers \ProxyManager\Inflector\ClassNameInflector::getProxyClassName + * + * @dataProvider getClassAndParametersCombinations + * + * @param string $className + * @param array $parameters + */ + public function testClassNameIsValidClassIdentifier($className, array $parameters) + { + $inflector = new ClassNameInflector('ProxyNS'); + + $this->assertRegExp( + '/([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]+)(\\\\[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]+)*/', + $inflector->getProxyClassName($className, $parameters), + 'Class name string is a valid class identifier' + ); + } + + /** + * Data provider. + * + * @return array[] */ public function getClassNames() { @@ -116,4 +139,23 @@ class ClassNameInflectorTest extends PHPUnit_Framework_TestCase array('Foo\\Bar', 'ProxyNS\\' . ClassNameInflectorInterface::PROXY_MARKER . '\\Foo\\Bar\\%s'), ); } + + /** + * Data provider. + * + * @return array[] + */ + public function getClassAndParametersCombinations() + { + return array( + array('Foo', array()), + array('Foo\\Bar', array()), + array('Foo', array(null)), + array('Foo\\Bar', array(null)), + array('Foo', array('foo' => 'bar')), + array('Foo\\Bar', array('foo' => 'bar')), + array('Foo', array("\0" => "very \0 bad")), + array('Foo\\Bar', array("\0" => "very \0 bad")), + ); + } } diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/Util/ParameterEncoderTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/Util/ParameterEncoderTest.php index 5098a5e5ae8..1acd28e3904 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/Util/ParameterEncoderTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/Util/ParameterEncoderTest.php @@ -26,6 +26,8 @@ use ProxyManager\Inflector\Util\ParameterEncoder; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class ParameterEncoderTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/Util/ParameterHasherTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/Util/ParameterHasherTest.php new file mode 100644 index 00000000000..22bf68d1115 --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Inflector/Util/ParameterHasherTest.php @@ -0,0 +1,62 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTest\Inflector\Util; + +use PHPUnit_Framework_TestCase; +use ProxyManager\Inflector\Util\ParameterHasher; + +/** + * Tests for {@see \ProxyManager\Inflector\Util\ParameterHasher} + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + * + * @group Coverage + */ +class ParameterHasherTest extends PHPUnit_Framework_TestCase +{ + /** + * @dataProvider getParameters + * + * @covers \ProxyManager\Inflector\Util\ParameterHasher::hashParameters + */ + public function testGeneratesValidClassName(array $parameters, $expectedHash) + { + $encoder = new ParameterHasher(); + + $this->assertSame($expectedHash, $encoder->hashParameters($parameters)); + } + + /** + * @return array + */ + public function getParameters() + { + return array( + array(array(), '40cd750bba9870f18aada2478b24840a'), + array(array('foo' => 'bar'), '49a3696adf0fbfacc12383a2d7400d51'), + array(array('bar' => 'baz'), '6ed41c8a63c1571554ecaeb998198757'), + array(array(null), '38017a839aaeb8ff1a658fce9af6edd3'), + array(array(null, null), '12051f9a58288e5328ad748881cc4e00'), + array(array('bar' => null), '0dbb112e1c4e6e4126232de2daa2d660'), + array(array('bar' => 12345), 'eb6291ea4973741bf9b6571f49b4ffd2'), + array(array('foo' => 'bar', 'bar' => 'baz'), '4447ff857f244d24c31bd84d7a855eda'), + ); + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AbstractProxyGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AbstractProxyGeneratorTest.php index ff6e4671016..307aafc1741 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AbstractProxyGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AbstractProxyGeneratorTest.php @@ -29,6 +29,8 @@ use ReflectionClass; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ abstract class AbstractProxyGeneratorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/MagicWakeupTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/MagicWakeupTest.php index c7cb0e12126..a5c5bec62e3 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/MagicWakeupTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/MagicWakeupTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptor\MethodGenerator\MagicWakeup; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicWakeupTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/SetMethodPrefixInterceptorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/SetMethodPrefixInterceptorTest.php index 277e4765007..e35c993079f 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/SetMethodPrefixInterceptorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/SetMethodPrefixInterceptorTest.php @@ -26,6 +26,8 @@ use PHPUnit_Framework_TestCase; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class SetMethodPrefixInterceptorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/SetMethodSuffixInterceptorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/SetMethodSuffixInterceptorTest.php index c7183258417..db65647ba5f 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/SetMethodSuffixInterceptorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/MethodGenerator/SetMethodSuffixInterceptorTest.php @@ -26,6 +26,8 @@ use PHPUnit_Framework_TestCase; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class SetMethodSuffixInterceptorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodPrefixInterceptorsTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodPrefixInterceptorsTest.php index 002761fae79..9b6de3d3744 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodPrefixInterceptorsTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodPrefixInterceptorsTest.php @@ -28,6 +28,7 @@ use ProxyManagerTest\ProxyGenerator\PropertyGenerator\AbstractUniquePropertyName * @license MIT * * @covers \ProxyManager\ProxyGenerator\AccessInterceptor\PropertyGenerator\MethodPrefixInterceptors + * @group Coverage */ class MethodPrefixInterceptorsTest extends AbstractUniquePropertyNameTest { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodSuffixInterceptorsTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodSuffixInterceptorsTest.php index 8e5b4b30391..7515badde95 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodSuffixInterceptorsTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptor/PropertyGenerator/MethodSuffixInterceptorsTest.php @@ -28,6 +28,7 @@ use ProxyManagerTest\ProxyGenerator\PropertyGenerator\AbstractUniquePropertyName * @license MIT * * @covers \ProxyManager\ProxyGenerator\AccessInterceptor\PropertyGenerator\MethodSuffixInterceptors + * @group Coverage */ class MethodSuffixInterceptorsTest extends AbstractUniquePropertyNameTest { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/ConstructorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/ConstructorTest.php index f9a3758e506..a1b5c12a93c 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/ConstructorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/ConstructorTest.php @@ -27,6 +27,8 @@ use ReflectionClass; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class ConstructorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/InterceptedMethodTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/InterceptedMethodTest.php index 9fb8a2613ca..207359f0001 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/InterceptedMethodTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/InterceptedMethodTest.php @@ -29,6 +29,7 @@ use Zend\Code\Reflection\MethodReflection; * @license MIT * * @covers \ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\InterceptedMethod + * @group Coverage */ class InterceptedMethodTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicCloneTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicCloneTest.php index 3327f0d030c..df4f49ebeea 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicCloneTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicCloneTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\ * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicCloneTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicGetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicGetTest.php index 3d188bb5c74..ed67bb06054 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicGetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicGetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\ * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicGetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicIssetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicIssetTest.php index 13dfd00950c..0dabe4c220a 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicIssetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicIssetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\ * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicIssetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSetTest.php index 14f6ccf43fc..25d307090f6 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\ * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicSetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSleepTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSleepTest.php index 3f3d9265703..98e401b999e 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSleepTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicSleepTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\ * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicSleepTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicUnsetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicUnsetTest.php index f22bc9899f0..822fda55177 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicUnsetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/MagicUnsetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\ * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicUnsetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/Util/InterceptorGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/Util/InterceptorGeneratorTest.php index d32889854d2..7e54c70f635 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/Util/InterceptorGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/Util/InterceptorGeneratorTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator\ * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class InterceptorGeneratorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizerTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizerTest.php index 4aa1d6035ac..bd6af22e6f9 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizerTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorScopeLocalizerTest.php @@ -29,6 +29,7 @@ use ReflectionProperty; * @license MIT * * @covers \ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizerGenerator + * @group Coverage */ class AccessInterceptorScopeLocalizerTest extends AbstractProxyGeneratorTest { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/LazyLoading/MethodGenerator/ConstructorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/LazyLoading/MethodGenerator/ConstructorTest.php index 8f61250aeac..e4209c17966 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/LazyLoading/MethodGenerator/ConstructorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/LazyLoading/MethodGenerator/ConstructorTest.php @@ -27,6 +27,8 @@ use ReflectionClass; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class ConstructorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/ConstructorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/ConstructorTest.php index 931a5bf0036..97f717574d6 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/ConstructorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/ConstructorTest.php @@ -27,6 +27,8 @@ use ReflectionClass; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class ConstructorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/InterceptedMethodTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/InterceptedMethodTest.php index 069eedcb5bb..41b5bfb3163 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/InterceptedMethodTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/InterceptedMethodTest.php @@ -29,12 +29,10 @@ use Zend\Code\Reflection\MethodReflection; * @license MIT * * @covers \ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\InterceptedMethod::generateMethod + * @group Coverage */ class InterceptedMethodTest extends PHPUnit_Framework_TestCase { - /** - * - */ public function testBodyStructure() { $valueHolder = $this->getMock('Zend\\Code\\Generator\\PropertyGenerator'); diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicCloneTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicCloneTest.php index 1e88b746cda..72a776356a2 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicCloneTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicCloneTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Mag * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicCloneTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicGetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicGetTest.php index d450b09e7c3..0ca38deb82d 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicGetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicGetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Mag * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicGetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicIssetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicIssetTest.php index f5a13ff4982..5f34baf3377 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicIssetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicIssetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Mag * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicIssetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicSetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicSetTest.php index d5e5357e06c..93da0b97c13 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicSetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicSetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Mag * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicSetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicUnsetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicUnsetTest.php index e785287ed82..0433ff6f625 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicUnsetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/MagicUnsetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Mag * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicUnsetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/Util/InterceptorGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/Util/InterceptorGeneratorTest.php index f4950b310e0..bb5c4612ff9 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/Util/InterceptorGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolder/MethodGenerator/Util/InterceptorGeneratorTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\AccessInterceptorValueHolder\MethodGenerator\Uti * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class InterceptorGeneratorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolderTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolderTest.php index 58410b4fd79..1b7d8065c08 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolderTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/AccessInterceptorValueHolderTest.php @@ -27,6 +27,7 @@ use ProxyManager\ProxyGenerator\AccessInterceptorValueHolderGenerator; * @license MIT * * @covers \ProxyManager\ProxyGenerator\AccessInterceptorValueHolderGenerator + * @group Coverage */ class AccessInterceptorValueHolderTest extends AbstractProxyGeneratorTest { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Assertion/CanProxyAssertionTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Assertion/CanProxyAssertionTest.php new file mode 100644 index 00000000000..1c9003f7d72 --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Assertion/CanProxyAssertionTest.php @@ -0,0 +1,113 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTest\ProxyGenerator\Assertion; + +use PHPUnit_Framework_TestCase; +use ProxyManager\ProxyGenerator\Assertion\CanProxyAssertion; +use ReflectionClass; + +/** + * Tests for {@see \ProxyManager\ProxyGenerator\Assertion\CanProxyAssertion} + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + * + * @covers \ProxyManager\ProxyGenerator\Assertion\CanProxyAssertion + * @group Coverage + */ +class CanProxyAssertionTest extends PHPUnit_Framework_TestCase +{ + public function testDeniesFinalClasses() + { + $this->setExpectedException('ProxyManager\Exception\InvalidProxiedClassException'); + + CanProxyAssertion::assertClassCanBeProxied(new ReflectionClass('ProxyManagerTestAsset\\FinalClass')); + } + + public function testDeniesClassesWithAbstractProtectedMethods() + { + $this->setExpectedException('ProxyManager\Exception\InvalidProxiedClassException'); + + CanProxyAssertion::assertClassCanBeProxied(new ReflectionClass( + 'ProxyManagerTestAsset\\ClassWithAbstractProtectedMethod' + )); + } + + public function testAllowsInterfaceByDefault() + { + CanProxyAssertion::assertClassCanBeProxied(new ReflectionClass( + 'ProxyManagerTestAsset\\BaseInterface' + )); + + $this->assertTrue(true); // not nice, but assertions are just fail-checks, no real code executed + } + + public function testDeniesInterfaceIfSpecified() + { + $this->setExpectedException('ProxyManager\Exception\InvalidProxiedClassException'); + + CanProxyAssertion::assertClassCanBeProxied(new ReflectionClass('ProxyManagerTestAsset\\BaseInterface'), false); + } + + /** + * @param string $className + * + * @dataProvider validClasses + */ + public function testAllowedClass($className) + { + CanProxyAssertion::assertClassCanBeProxied(new ReflectionClass($className)); + + $this->assertTrue(true); // not nice, but assertions are just fail-checks, no real code executed + } + + public function testDisallowsConstructor() + { + $this->setExpectedException('BadMethodCallException'); + + new CanProxyAssertion(); + } + + /** + * @return string[][] + */ + public function validClasses() + { + return array( + array('ProxyManagerTestAsset\AccessInterceptorValueHolderMock'), + array('ProxyManagerTestAsset\BaseClass'), + array('ProxyManagerTestAsset\BaseInterface'), + array('ProxyManagerTestAsset\CallableTypeHintClass'), + array('ProxyManagerTestAsset\ClassWithByRefMagicMethods'), + array('ProxyManagerTestAsset\ClassWithFinalMagicMethods'), + array('ProxyManagerTestAsset\ClassWithFinalMethods'), + array('ProxyManagerTestAsset\ClassWithMethodWithDefaultParameters'), + array('ProxyManagerTestAsset\ClassWithMixedProperties'), + array('ProxyManagerTestAsset\ClassWithPrivateProperties'), + array('ProxyManagerTestAsset\ClassWithProtectedProperties'), + array('ProxyManagerTestAsset\ClassWithPublicProperties'), + array('ProxyManagerTestAsset\ClassWithPublicArrayProperty'), + array('ProxyManagerTestAsset\ClassWithSelfHint'), + array('ProxyManagerTestAsset\EmptyClass'), + array('ProxyManagerTestAsset\HydratedObject'), + array('ProxyManagerTestAsset\LazyLoadingMock'), + array('ProxyManagerTestAsset\NullObjectMock'), + ); + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/CallInitializerTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/CallInitializerTest.php index 32c0a975373..3fbd81d4e32 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/CallInitializerTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/CallInitializerTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\CallInitializer * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class CallInitializerTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/GetProxyInitializerTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/GetProxyInitializerTest.php index 5b7be9ab18d..32936b9feed 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/GetProxyInitializerTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/GetProxyInitializerTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\GetProxyInitial * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class GetProxyInitializerTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/InitializeProxyTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/InitializeProxyTest.php index 842b34800be..27e1e2dd93c 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/InitializeProxyTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/InitializeProxyTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\InitializeProxy * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class InitializeProxyTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/IsProxyInitializedTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/IsProxyInitializedTest.php index 26d5a346fec..f82dae9f287 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/IsProxyInitializedTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/IsProxyInitializedTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\IsProxyInitiali * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class IsProxyInitializedTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/LazyLoadingMethodInterceptorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/LazyLoadingMethodInterceptorTest.php index e202458246a..db5e3af21be 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/LazyLoadingMethodInterceptorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/LazyLoadingMethodInterceptorTest.php @@ -27,6 +27,8 @@ use Zend\Code\Reflection\MethodReflection; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class LazyLoadingMethodInterceptorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicCloneTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicCloneTest.php index d3524020ff3..4cb22714e62 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicCloneTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicCloneTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\MagicClone; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicCloneTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicGetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicGetTest.php index 33a73e88653..6f2a7c0a322 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicGetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicGetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\MagicGet; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicGetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicIssetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicIssetTest.php index ea6f61d1b0b..fa9bb4b2ca6 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicIssetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicIssetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\MagicIsset; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicIssetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSetTest.php index 60f6a103cb0..00b7ad99a76 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\MagicSet; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicSetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSleepTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSleepTest.php index 43be100a9e8..7329e613b19 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSleepTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicSleepTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\MagicSleep; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicSleepTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicUnsetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicUnsetTest.php index 3c202f644a5..5e3ba4e76aa 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicUnsetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/MagicUnsetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\MagicUnset; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicUnsetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/SetProxyInitializerTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/SetProxyInitializerTest.php index c5bdb190876..71fcdbff09e 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/SetProxyInitializerTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/MethodGenerator/SetProxyInitializerTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator\SetProxyInitial * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class SetProxyInitializerTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializationTrackerTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializationTrackerTest.php index 83eacbc03d0..62caf4984de 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializationTrackerTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializationTrackerTest.php @@ -28,6 +28,7 @@ use ProxyManagerTest\ProxyGenerator\PropertyGenerator\AbstractUniquePropertyName * @license MIT * * @covers \ProxyManager\ProxyGenerator\LazyLoadingGhost\PropertyGenerator\InitializationTracker + * @group Coverage */ class InitializationTrackerTest extends AbstractUniquePropertyNameTest { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializerPropertyTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializerPropertyTest.php index c7ef25891bf..c5f1ea1bff9 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializerPropertyTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhost/PropertyGenerator/InitializerPropertyTest.php @@ -28,6 +28,7 @@ use ProxyManagerTest\ProxyGenerator\PropertyGenerator\AbstractUniquePropertyName * @license MIT * * @covers \ProxyManager\ProxyGenerator\LazyLoadingGhost\PropertyGenerator\InitializerProperty + * @group Coverage */ class InitializerPropertyTest extends AbstractUniquePropertyNameTest { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhostGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhostGeneratorTest.php index ca1b34938bc..8eb5443ddeb 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhostGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingGhostGeneratorTest.php @@ -27,6 +27,7 @@ use ProxyManager\ProxyGenerator\LazyLoadingGhostGenerator; * @license MIT * * @covers \ProxyManager\ProxyGenerator\LazyLoadingGhostGenerator + * @group Coverage */ class LazyLoadingGhostGeneratorTest extends AbstractProxyGeneratorTest { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/GetProxyInitializerTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/GetProxyInitializerTest.php index 40596402a91..31fd0294113 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/GetProxyInitializerTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/GetProxyInitializerTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\GetProxyI * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class GetProxyInitializerTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/InitializeProxyTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/InitializeProxyTest.php index cd39fdb9edf..dfbcb4cfda7 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/InitializeProxyTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/InitializeProxyTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\Initializ * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class InitializeProxyTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/IsProxyInitializedTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/IsProxyInitializedTest.php index e6823b685ae..2b65f2883a0 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/IsProxyInitializedTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/IsProxyInitializedTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\IsProxyIn * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class IsProxyInitializedTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/LazyLoadingMethodInterceptorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/LazyLoadingMethodInterceptorTest.php index be2ff40f655..f6f5d0c452c 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/LazyLoadingMethodInterceptorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/LazyLoadingMethodInterceptorTest.php @@ -27,6 +27,8 @@ use Zend\Code\Reflection\MethodReflection; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class LazyLoadingMethodInterceptorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicCloneTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicCloneTest.php index 44b9cb9e754..dea429c19e3 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicCloneTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicCloneTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicClon * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicCloneTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGetTest.php index 442c95e6e1a..bc3a61cd6d1 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicGet; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicGetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicIssetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicIssetTest.php index a3ed157ac50..751840dea03 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicIssetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicIssetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicIsse * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicIssetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSetTest.php index f8edc38e9d6..dba5b49e00e 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicSet; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicSetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSleepTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSleepTest.php index d156041855d..978eeb762ec 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSleepTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicSleepTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicSlee * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicSleepTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicUnsetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicUnsetTest.php index 5d8e8433e95..e94ee3ba9da 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicUnsetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicUnsetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\MagicUnse * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicUnsetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/SetProxyInitializerTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/SetProxyInitializerTest.php index 0bd1735c3b5..d70bf2ce3e2 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/SetProxyInitializerTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/SetProxyInitializerTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolder\MethodGenerator\SetProxyI * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class SetProxyInitializerTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/InitializerPropertyTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/InitializerPropertyTest.php index 48785042e6b..c292e203eb8 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/InitializerPropertyTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/InitializerPropertyTest.php @@ -28,6 +28,7 @@ use ProxyManagerTest\ProxyGenerator\PropertyGenerator\AbstractUniquePropertyName * @license MIT * * @covers \ProxyManager\ProxyGenerator\LazyLoadingValueHolder\PropertyGenerator\InitializerProperty + * @group Coverage */ class InitializerPropertyTest extends AbstractUniquePropertyNameTest { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/ValueHolderPropertyTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/ValueHolderPropertyTest.php index 9033d0e9faa..63a16a761e0 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/ValueHolderPropertyTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolder/PropertyGenerator/ValueHolderPropertyTest.php @@ -28,6 +28,7 @@ use ProxyManagerTest\ProxyGenerator\PropertyGenerator\AbstractUniquePropertyName * @license MIT * * @covers \ProxyManager\ProxyGenerator\LazyLoadingValueHolder\PropertyGenerator\ValueHolderProperty + * @group Coverage */ class ValueHolderPropertyTest extends AbstractUniquePropertyNameTest { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolderGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolderGeneratorTest.php index a9a3e6cfd4c..683e2c9f952 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolderGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/LazyLoadingValueHolderGeneratorTest.php @@ -27,6 +27,7 @@ use ProxyManager\ProxyGenerator\LazyLoadingValueHolderGenerator; * @license MIT * * @covers \ProxyManager\ProxyGenerator\LazyLoadingValueHolderGenerator + * @group Coverage */ class LazyLoadingValueHolderGeneratorTest extends AbstractProxyGeneratorTest { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObject/MethodGenerator/ConstructorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObject/MethodGenerator/ConstructorTest.php index 8044a0bd818..7fad56d47dd 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObject/MethodGenerator/ConstructorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObject/MethodGenerator/ConstructorTest.php @@ -27,6 +27,8 @@ use ReflectionClass; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class ConstructorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObject/MethodGenerator/NullObjectMethodInterceptorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObject/MethodGenerator/NullObjectMethodInterceptorTest.php index b84b0e87753..31202a1502e 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObject/MethodGenerator/NullObjectMethodInterceptorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObject/MethodGenerator/NullObjectMethodInterceptorTest.php @@ -27,6 +27,8 @@ use Zend\Code\Reflection\MethodReflection; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class NullObjectMethodInterceptorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObjectGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObjectGeneratorTest.php index 6eb0d2696bc..11a6cbdd55d 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObjectGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/NullObjectGeneratorTest.php @@ -33,6 +33,7 @@ use ReflectionProperty; * @license MIT * * @covers \ProxyManager\ProxyGenerator\NullObjectGenerator + * @group Coverage */ class NullObjectGeneratorTest extends PHPUnit_Framework_TestCase { @@ -56,10 +57,6 @@ class NullObjectGeneratorTest extends PHPUnit_Framework_TestCase if ($originalClass->isInterface()) { $this->assertTrue($generatedReflection->implementsInterface($className)); - } else { - $this->assertEmpty( - array_diff($originalClass->getInterfaceNames(), $generatedReflection->getInterfaceNames()) - ); } $this->assertSame($generatedClassName, $generatedReflection->getName()); diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/AbstractUniquePropertyNameTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/AbstractUniquePropertyNameTest.php index 4f63271eeb2..f3cd8ad8fb0 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/AbstractUniquePropertyNameTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/AbstractUniquePropertyNameTest.php @@ -25,6 +25,8 @@ use PHPUnit_Framework_TestCase; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ abstract class AbstractUniquePropertyNameTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/PublicPropertiesDefaultsTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/PublicPropertiesDefaultsTest.php index 0dfd9307ea1..c7146753511 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/PublicPropertiesDefaultsTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/PublicPropertiesDefaultsTest.php @@ -29,6 +29,7 @@ use ReflectionClass; * @license MIT * * @covers \ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesDefaults + * @group Coverage */ class PublicPropertiesDefaultsTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/PublicPropertiesMapTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/PublicPropertiesMapTest.php index 38b3ac037fa..a916762f69a 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/PublicPropertiesMapTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/PropertyGenerator/PublicPropertiesMapTest.php @@ -29,6 +29,7 @@ use ReflectionClass; * @license MIT * * @covers \ProxyManager\ProxyGenerator\PropertyGenerator\PublicPropertiesMap + * @group Coverage */ class PublicPropertiesMapTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/ConstructorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/ConstructorTest.php index ede0aa7ff1a..f1c9da07233 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/ConstructorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/ConstructorTest.php @@ -27,6 +27,8 @@ use ReflectionClass; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class ConstructorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicGetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicGetTest.php index e7dcac83b44..096a8910022 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicGetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicGetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\MagicGet; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class MagicGetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicIssetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicIssetTest.php index 0253b8c03fc..23ba3376b03 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicIssetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicIssetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\MagicIsset; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class MagicIssetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicSetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicSetTest.php index 14b53c812d5..6034b995d04 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicSetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicSetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\MagicSet; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class MagicSetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicUnsetTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicUnsetTest.php index c4ffb21a734..a3f186f3f28 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicUnsetTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/MagicUnsetTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator\MagicUnset; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class MagicUnsetTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/RemoteObjectMethodTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/RemoteObjectMethodTest.php index 6e72166c176..1c41a4f649c 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/RemoteObjectMethodTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/RemoteObjectMethodTest.php @@ -28,6 +28,8 @@ use ReflectionClass; * * @author Vincent Blanchon <blanchon.vincent@gmail.com> * @license MIT + * + * @group Coverage */ class RemoteObjectMethodTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/PropertyGenerator/AdapterPropertyTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/PropertyGenerator/AdapterPropertyTest.php index b19a8ae9273..d7e9cc98099 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/PropertyGenerator/AdapterPropertyTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObject/PropertyGenerator/AdapterPropertyTest.php @@ -28,6 +28,7 @@ use ProxyManagerTest\ProxyGenerator\PropertyGenerator\AbstractUniquePropertyName * @license MIT * * @covers \ProxyManager\ProxyGenerator\RemoteObject\PropertyGenerator\AdapterProperty + * @group Coverage */ class AdapterPropertyTest extends AbstractUniquePropertyNameTest { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObjectGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObjectGeneratorTest.php index 958a9dabe1e..961c226feff 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObjectGeneratorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/RemoteObjectGeneratorTest.php @@ -32,6 +32,7 @@ use ReflectionClass; * @license MIT * * @covers \ProxyManager\ProxyGenerator\RemoteObjectGenerator + * @group Coverage */ class RemoteObjectGeneratorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Util/ProxiedMethodsFilterTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Util/ProxiedMethodsFilterTest.php index 3f2d91bdd46..89bbb6adb1b 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Util/ProxiedMethodsFilterTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Util/ProxiedMethodsFilterTest.php @@ -30,6 +30,7 @@ use ReflectionMethod; * @license MIT * * @covers \ProxyManager\ProxyGenerator\Util\ProxiedMethodsFilter + * @group Coverage */ class ProxiedMethodsFilterTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Util/PublicScopeSimulatorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Util/PublicScopeSimulatorTest.php index 2a754056ee4..e5271ffb48d 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Util/PublicScopeSimulatorTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/Util/PublicScopeSimulatorTest.php @@ -29,6 +29,7 @@ use Zend\Code\Generator\PropertyGenerator; * @license MIT * * @covers \ProxyManager\ProxyGenerator\Util\PublicScopeSimulator + * @group Coverage */ class PublicScopeSimulatorTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/ValueHolder/MethodGenerator/GetWrappedValueHolderValueTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/ValueHolder/MethodGenerator/GetWrappedValueHolderValueTest.php index e4a1108cff7..b7acb3110d6 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/ValueHolder/MethodGenerator/GetWrappedValueHolderValueTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/ValueHolder/MethodGenerator/GetWrappedValueHolderValueTest.php @@ -26,6 +26,8 @@ use ProxyManager\ProxyGenerator\ValueHolder\MethodGenerator\GetWrappedValueHolde * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class GetWrappedValueHolderValueTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/ValueHolder/MethodGenerator/MagicSleepTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/ValueHolder/MethodGenerator/MagicSleepTest.php index d5038c618bd..f2b15967607 100644 --- a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/ValueHolder/MethodGenerator/MagicSleepTest.php +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/ProxyGenerator/ValueHolder/MethodGenerator/MagicSleepTest.php @@ -27,6 +27,8 @@ use ProxyManager\ProxyGenerator\ValueHolder\MethodGenerator\MagicSleep; * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT + * + * @group Coverage */ class MagicSleepTest extends PHPUnit_Framework_TestCase { diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/ClassSignatureGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/ClassSignatureGeneratorTest.php new file mode 100644 index 00000000000..95ffbdd8443 --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/ClassSignatureGeneratorTest.php @@ -0,0 +1,87 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTest\Signature; + +use PHPUnit_Framework_TestCase; +use ProxyManager\Signature\ClassSignatureGenerator; +use Zend\Code\Generator\PropertyGenerator; + +/** + * Tests for {@see \ProxyManager\Signature\ClassSignatureGenerator} + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + * + * @covers \ProxyManager\Signature\ClassSignatureGenerator + * @group Coverage + */ +class ClassSignatureGeneratorTest extends PHPUnit_Framework_TestCase +{ + /** + * @var \ProxyManager\Signature\SignatureGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $signatureGenerator; + + /** + * @var ClassSignatureGenerator + */ + private $classSignatureGenerator; + + /** + * {@inheritDoc} + */ + protected function setUp() + { + $this->signatureGenerator = $this->getMock('ProxyManager\\Signature\\SignatureGeneratorInterface'); + $this->classSignatureGenerator = new ClassSignatureGenerator($this->signatureGenerator); + } + + public function testAddSignature() + { + /* @var $classGenerator \PHPUnit_Framework_MockObject_MockObject|\Zend\Code\Generator\ClassGenerator */ + $classGenerator = $this->getMock('Zend\\Code\\Generator\\ClassGenerator'); + + $classGenerator + ->expects($this->once()) + ->method('addPropertyFromGenerator') + ->with($this->callback(function (PropertyGenerator $property) { + return $property->getName() === 'signaturePropertyName' + && $property->isStatic() + && $property->getVisibility() === 'private' + && $property->getDefaultValue()->getValue() === 'valid-signature'; + })); + + $this + ->signatureGenerator + ->expects($this->any()) + ->method('generateSignature') + ->with(array('foo' => 'bar')) + ->will($this->returnValue('valid-signature')); + + $this + ->signatureGenerator + ->expects($this->any()) + ->method('generateSignatureKey') + ->with(array('foo' => 'bar')) + ->will($this->returnValue('PropertyName')); + + + $this->classSignatureGenerator->addSignature($classGenerator, array('foo' => 'bar')); + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/Exception/InvalidSignatureExceptionTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/Exception/InvalidSignatureExceptionTest.php new file mode 100644 index 00000000000..d587fc071f8 --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/Exception/InvalidSignatureExceptionTest.php @@ -0,0 +1,57 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTest\Signature\Exception; + +use PHPUnit_Framework_TestCase; +use ProxyManager\Signature\Exception\InvalidSignatureException; +use ReflectionClass; + +/** + * Tests for {@see \ProxyManager\Signature\Exception\InvalidSignatureException} + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + * + * @covers \ProxyManager\Signature\Exception\InvalidSignatureException + * @group Coverage + */ +class InvalidSignatureExceptionTest extends PHPUnit_Framework_TestCase +{ + public function testFromInvalidSignature() + { + $exception = InvalidSignatureException::fromInvalidSignature( + new ReflectionClass(__CLASS__), + array('foo' => 'bar', 'baz' => 'tab'), + 'blah', + 'expected-signature' + ); + + $this->assertInstanceOf( + 'ProxyManager\Signature\Exception\InvalidSignatureException', + $exception + ); + + $this->assertSame( + 'Found signature "blah" for class "' + . __CLASS__ + . '" does not correspond to expected signature "expected-signature" for 2 parameters', + $exception->getMessage() + ); + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/Exception/MissingSignatureExceptionTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/Exception/MissingSignatureExceptionTest.php new file mode 100644 index 00000000000..2d8a0d8bb60 --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/Exception/MissingSignatureExceptionTest.php @@ -0,0 +1,56 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTest\Signature\Exception; + +use PHPUnit_Framework_TestCase; +use ProxyManager\Signature\Exception\MissingSignatureException; +use ReflectionClass; + +/** + * Tests for {@see \ProxyManager\Signature\Exception\MissingSignatureException} + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + * + * @covers \ProxyManager\Signature\Exception\MissingSignatureException + * @group Coverage + */ +class MissingSignatureExceptionTest extends PHPUnit_Framework_TestCase +{ + public function testFromMissingSignature() + { + $exception = MissingSignatureException::fromMissingSignature( + new ReflectionClass(__CLASS__), + array('foo' => 'bar', 'baz' => 'tab'), + 'expected-signature' + ); + + $this->assertInstanceOf( + 'ProxyManager\Signature\Exception\MissingSignatureException', + $exception + ); + + $this->assertSame( + 'No signature found for class "' + . __CLASS__ + . '", expected signature "expected-signature" for 2 parameters', + $exception->getMessage() + ); + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/SignatureCheckerTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/SignatureCheckerTest.php new file mode 100644 index 00000000000..0fa13f9c6bd --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/SignatureCheckerTest.php @@ -0,0 +1,117 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTest\Signature; + +use PHPUnit_Framework_TestCase; +use ProxyManager\Signature\SignatureChecker; +use ReflectionClass; + +/** + * Tests for {@see \ProxyManager\Signature\SignatureChecker} + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + * + * @covers \ProxyManager\Signature\SignatureChecker + * @group Coverage + */ +class SignatureCheckerTest extends PHPUnit_Framework_TestCase +{ + /** + * @var string + */ + protected $signatureExample = 'valid-signature'; + + /** + * @var SignatureChecker + */ + private $signatureChecker; + + /** + * @var \ProxyManager\Signature\SignatureGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject + */ + private $signatureGenerator; + + /** + * {@inheritDoc} + */ + protected function setUp() + { + $this->signatureGenerator = $this->getMock('ProxyManager\Signature\SignatureGeneratorInterface'); + $this->signatureChecker = new SignatureChecker($this->signatureGenerator); + } + + public function testCheckSignatureWithValidKey() + { + $this + ->signatureGenerator + ->expects($this->atLeastOnce()) + ->method('generateSignatureKey') + ->with(array('foo' => 'bar')) + ->will($this->returnValue('Example')); + $this + ->signatureGenerator + ->expects($this->atLeastOnce()) + ->method('generateSignature') + ->with(array('foo' => 'bar')) + ->will($this->returnValue('valid-signature')); + + $this->signatureChecker->checkSignature(new ReflectionClass($this), array('foo' => 'bar')); + } + + public function testCheckSignatureWithInvalidKey() + { + $this + ->signatureGenerator + ->expects($this->any()) + ->method('generateSignatureKey') + ->with(array('foo' => 'bar')) + ->will($this->returnValue('InvalidKey')); + $this + ->signatureGenerator + ->expects($this->any()) + ->method('generateSignature') + ->with(array('foo' => 'bar')) + ->will($this->returnValue('valid-signature')); + + $this->setExpectedException('ProxyManager\Signature\Exception\MissingSignatureException'); + + $this->signatureChecker->checkSignature(new ReflectionClass($this), array('foo' => 'bar')); + } + + public function testCheckSignatureWithInvalidValue() + { + $this + ->signatureGenerator + ->expects($this->any()) + ->method('generateSignatureKey') + ->with(array('foo' => 'bar')) + ->will($this->returnValue('Example')); + $this + ->signatureGenerator + ->expects($this->any()) + ->method('generateSignature') + ->with(array('foo' => 'bar')) + ->will($this->returnValue('invalid-signature')); + + $this->setExpectedException('ProxyManager\Signature\Exception\InvalidSignatureException'); + + $this->signatureChecker->checkSignature(new ReflectionClass($this), array('foo' => 'bar')); + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/SignatureGeneratorTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/SignatureGeneratorTest.php new file mode 100644 index 00000000000..5ad93d68b82 --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/Signature/SignatureGeneratorTest.php @@ -0,0 +1,116 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTest\Signature; + +use PHPUnit_Framework_TestCase; +use ProxyManager\Signature\SignatureGenerator; + +/** + * Tests for {@see \ProxyManager\Signature\SignatureGenerator} + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + * + * @covers \ProxyManager\Signature\SignatureGenerator + * @group Coverage + */ +class SignatureGeneratorTest extends PHPUnit_Framework_TestCase +{ + /** + * @var SignatureGenerator + */ + private $signatureGenerator; + + /** + * {@inheritDoc} + */ + protected function setUp() + { + $this->signatureGenerator = new SignatureGenerator; + } + + /** + * @param array $parameters + * @param string $expected + * + * @dataProvider signatures + */ + public function testGenerateSignature(array $parameters, $expected) + { + $this->assertSame($expected, $this->signatureGenerator->generateSignature($parameters)); + } + + /** + * @param array $parameters + * @param string $expected + * + * @dataProvider signatureKeys + */ + public function testGenerateSignatureKey(array $parameters, $expected) + { + $this->assertSame($expected, $this->signatureGenerator->generateSignatureKey($parameters)); + } + + /** + * Data provider. + * + * @return array[] + */ + public function signatures() + { + return array( + array( + array(), + 'YTowOnt9' + ), + array( + array('foo' => 'bar'), + 'YToxOntzOjM6ImZvbyI7czozOiJiYXIiO30=' + ), + array( + array('foo' => 'bar', 'baz' => 'tab'), + 'YToyOntzOjM6ImZvbyI7czozOiJiYXIiO3M6MzoiYmF6IjtzOjM6InRhYiI7fQ==' + ), + array( + array('bar'), + 'YToxOntpOjA7czozOiJiYXIiO30=' + ), + array( + array('bar', 'baz'), + 'YToyOntpOjA7czozOiJiYXIiO2k6MTtzOjM6ImJheiI7fQ==' + ), + ); + } + + /** + * Data provider. + * + * @return array[] + */ + public function signatureKeys() + { + return array( + array(array(), '40cd750bba9870f18aada2478b24840a'), + array(array('foo' => 'bar'), '49a3696adf0fbfacc12383a2d7400d51'), + array(array('foo' => 'bar', 'baz' => 'tab'), '3f3cabbf33bae82b0711205c913a8fa0'), + array(array('bar'), '6fc5f617053f53f56b4734453ec86daa'), + array(array('bar', 'baz'), 'b9f31192ffbb4aa958cd1c5f88540c1e'), + ); + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/VersionTest.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/VersionTest.php new file mode 100644 index 00000000000..84f12614b4e --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTest/VersionTest.php @@ -0,0 +1,42 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTest; + +use PHPUnit_Framework_TestCase; +use ProxyManager\Version; + +/** + * Tests for {@see \ProxyManager\Version} + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + * + * @covers \ProxyManager\Version + * @group Coverage + */ +class VersionTest extends PHPUnit_Framework_TestCase +{ + public function testVersionNumberIsSemverCompliant() + { + $this->assertRegExp( + '/\d+\.\d+\.\d+(-(ALPHA|BETA|RC(\d+)?|DEV))?/i', + Version::VERSION + ); + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithAbstractProtectedMethod.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithAbstractProtectedMethod.php new file mode 100644 index 00000000000..1ba3a5cb945 --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithAbstractProtectedMethod.php @@ -0,0 +1,33 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTestAsset; + +/** + * Class with one abstract protected method + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +abstract class ClassWithAbstractProtectedMethod +{ + /** + * @return void + */ + abstract protected function protectedAbstractMethod(); +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithFinalMagicMethods.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithFinalMagicMethods.php new file mode 100644 index 00000000000..d42204b7751 --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithFinalMagicMethods.php @@ -0,0 +1,88 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTestAsset; + +/** + * Base test class to play around with final pre-existing magic methods + * + * @author Jefersson Nathan <malukenho@phpse.net> + * @license MIT + */ +class ClassWithFinalMagicMethods +{ + /** + * {@inheritDoc} + */ + final public function __construct() + { + } + + /** + * {@inheritDoc} + */ + final public function __set($name, $value) + { + return array($name => $value); + } + + /** + * {@inheritDoc} + */ + final public function __get($name) + { + return $name; + } + + /** + * {@inheritDoc} + */ + final public function __isset($name) + { + return (bool) $name; + } + + /** + * {@inheritDoc} + */ + final public function __unset($name) + { + return (bool) $name; + } + + /** + * {@inheritDoc} + */ + final public function __sleep() + { + } + + /** + * {@inheritDoc} + */ + final public function __wakeup() + { + } + + /** + * {@inheritDoc} + */ + final public function __clone() + { + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithFinalMethods.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithFinalMethods.php new file mode 100644 index 00000000000..a7c0154ba24 --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithFinalMethods.php @@ -0,0 +1,42 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTestAsset; + +use PHPUnit_Framework_TestCase; + +/** + * Base test class to play around with final pre-existing methods + * + * @author Jefersson Nathan <malukenho@phpse.net> + * @license MIT + */ +class ClassWithFinalMethods extends PHPUnit_Framework_TestCase +{ + final public function foo() + { + } + + final private function bar() + { + } + + final protected function baz() + { + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithSelfHint.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithSelfHint.php new file mode 100644 index 00000000000..37d342c1f71 --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/ClassWithSelfHint.php @@ -0,0 +1,38 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTestAsset; + +/** + * Class with a `self` type hint in a method - used to test overriding method with the `self` type hint in generators + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +class ClassWithSelfHint +{ + /** + * @param self $parameter + * + * @return self + */ + public function selfHintMethod(self $parameter) + { + return $parameter; + } +} diff --git a/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/FinalClass.php b/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/FinalClass.php new file mode 100644 index 00000000000..4b818d673fd --- /dev/null +++ b/vendor/ocramius/proxy-manager/tests/ProxyManagerTestAsset/FinalClass.php @@ -0,0 +1,29 @@ +<?php +/* + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the MIT license. + */ + +namespace ProxyManagerTestAsset; + +/** + * Class that is final + * + * @author Marco Pivetta <ocramius@gmail.com> + * @license MIT + */ +final class FinalClass +{ +} diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/CssSelector.php b/vendor/symfony/css-selector/Symfony/Component/CssSelector/CssSelector.php index 7a12a8b7e1d..58d84662452 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/CssSelector.php +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/CssSelector.php @@ -40,8 +40,8 @@ class CssSelector * Optionally, a prefix can be added to the resulting XPath * expression with the $prefix parameter. * - * @param mixed $cssExpr The CSS expression. - * @param string $prefix An optional prefix for the XPath expression. + * @param mixed $cssExpr The CSS expression. + * @param string $prefix An optional prefix for the XPath expression. * * @return string * diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/Node/Specificity.php b/vendor/symfony/css-selector/Symfony/Component/CssSelector/Node/Specificity.php index 96bbd11f515..d0c215e0f2e 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/Node/Specificity.php +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/Node/Specificity.php @@ -75,4 +75,28 @@ class Specificity { return $this->a * self::A_FACTOR + $this->b * self::B_FACTOR + $this->c * self::C_FACTOR; } + + /** + * Returns -1 if the object specificity is lower than the argument, + * 0 if they are equal, and 1 if the argument is lower + * + * @param Specificity $specificity + * @return int + */ + public function compareTo(Specificity $specificity) + { + if ($this->a !== $specificity->a) { + return $this->a > $specificity->a ? 1 : -1; + } + + if ($this->b !== $specificity->b) { + return $this->b > $specificity->b ? 1 : -1; + } + + if ($this->c !== $specificity->c) { + return $this->c > $specificity->c ? 1 : -1; + } + + return 0; + } } diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/Parser/Token.php b/vendor/symfony/css-selector/Symfony/Component/CssSelector/Parser/Token.php index 4adfca889d8..ba5d657f7bf 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/Parser/Token.php +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/Parser/Token.php @@ -21,13 +21,13 @@ namespace Symfony\Component\CssSelector\Parser; */ class Token { - const TYPE_FILE_END = 'eof'; - const TYPE_DELIMITER = 'delimiter'; + const TYPE_FILE_END = 'eof'; + const TYPE_DELIMITER = 'delimiter'; const TYPE_WHITESPACE = 'whitespace'; const TYPE_IDENTIFIER = 'identifier'; - const TYPE_HASH = 'hash'; - const TYPE_NUMBER = 'number'; - const TYPE_STRING = 'string'; + const TYPE_HASH = 'hash'; + const TYPE_NUMBER = 'number'; + const TYPE_STRING = 'string'; /** * @var int diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/Tests/Node/SpecificityTest.php b/vendor/symfony/css-selector/Symfony/Component/CssSelector/Tests/Node/SpecificityTest.php index 1f200cffe4f..c34fe5fc734 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/Tests/Node/SpecificityTest.php +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/Tests/Node/SpecificityTest.php @@ -37,4 +37,26 @@ class SpecificityTest extends \PHPUnit_Framework_TestCase array(new Specificity(4, 3, 2), 432), ); } + + /** @dataProvider getCompareTestData */ + public function testCompareTo(Specificity $a, Specificity $b, $result) + { + $this->assertEquals($result, $a->compareTo($b)); + } + + public function getCompareTestData() + { + return array( + array(new Specificity(0, 0, 0), new Specificity(0, 0, 0), 0), + array(new Specificity(0, 0, 1), new Specificity(0, 0, 1), 0), + array(new Specificity(0, 0, 2), new Specificity(0, 0, 1), 1), + array(new Specificity(0, 0, 2), new Specificity(0, 0, 3), -1), + array(new Specificity(0, 4, 0), new Specificity(0, 4, 0), 0), + array(new Specificity(0, 6, 0), new Specificity(0, 5, 11), 1), + array(new Specificity(0, 7, 0), new Specificity(0, 8, 0), -1), + array(new Specificity(9, 0, 0), new Specificity(9, 0, 0), 0), + array(new Specificity(11, 0, 0), new Specificity(10, 11, 0), 1), + array(new Specificity(12, 11, 0), new Specificity(13, 0, 0), -1), + ); + } } diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/AttributeMatchingExtension.php b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/AttributeMatchingExtension.php index 1b1f00f2863..31d24b28eff 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/AttributeMatchingExtension.php +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/AttributeMatchingExtension.php @@ -31,13 +31,13 @@ class AttributeMatchingExtension extends AbstractExtension { return array( 'exists' => array($this, 'translateExists'), - '=' => array($this, 'translateEquals'), - '~=' => array($this, 'translateIncludes'), - '|=' => array($this, 'translateDashMatch'), - '^=' => array($this, 'translatePrefixMatch'), - '$=' => array($this, 'translateSuffixMatch'), - '*=' => array($this, 'translateSubstringMatch'), - '!=' => array($this, 'translateDifferent'), + '=' => array($this, 'translateEquals'), + '~=' => array($this, 'translateIncludes'), + '|=' => array($this, 'translateDashMatch'), + '^=' => array($this, 'translatePrefixMatch'), + '$=' => array($this, 'translateSuffixMatch'), + '*=' => array($this, 'translateSubstringMatch'), + '!=' => array($this, 'translateDifferent'), ); } diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/FunctionExtension.php b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/FunctionExtension.php index ff8f333ada0..e8494743831 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/FunctionExtension.php +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/FunctionExtension.php @@ -34,12 +34,12 @@ class FunctionExtension extends AbstractExtension public function getFunctionTranslators() { return array( - 'nth-child' => array($this, 'translateNthChild'), - 'nth-last-child' => array($this, 'translateNthLastChild'), - 'nth-of-type' => array($this, 'translateNthOfType'), + 'nth-child' => array($this, 'translateNthChild'), + 'nth-last-child' => array($this, 'translateNthLastChild'), + 'nth-of-type' => array($this, 'translateNthOfType'), 'nth-last-of-type' => array($this, 'translateNthLastOfType'), - 'contains' => array($this, 'translateContains'), - 'lang' => array($this, 'translateLang'), + 'contains' => array($this, 'translateContains'), + 'lang' => array($this, 'translateLang'), ); } diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/HtmlExtension.php b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/HtmlExtension.php index aef80523dd0..71ed4b4a795 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/HtmlExtension.php +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/HtmlExtension.php @@ -45,14 +45,14 @@ class HtmlExtension extends AbstractExtension public function getPseudoClassTranslators() { return array( - 'checked' => array($this, 'translateChecked'), - 'link' => array($this, 'translateLink'), + 'checked' => array($this, 'translateChecked'), + 'link' => array($this, 'translateLink'), 'disabled' => array($this, 'translateDisabled'), - 'enabled' => array($this, 'translateEnabled'), + 'enabled' => array($this, 'translateEnabled'), 'selected' => array($this, 'translateSelected'), - 'invalid' => array($this, 'translateInvalid'), - 'hover' => array($this, 'translateHover'), - 'visited' => array($this, 'translateVisited'), + 'invalid' => array($this, 'translateInvalid'), + 'hover' => array($this, 'translateHover'), + 'visited' => array($this, 'translateVisited'), ); } diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/NodeExtension.php b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/NodeExtension.php index d71baaa96bc..212955c1f2d 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/NodeExtension.php +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/NodeExtension.php @@ -25,8 +25,8 @@ use Symfony\Component\CssSelector\XPath\XPathExpr; */ class NodeExtension extends AbstractExtension { - const ELEMENT_NAME_IN_LOWER_CASE = 1; - const ATTRIBUTE_NAME_IN_LOWER_CASE = 2; + const ELEMENT_NAME_IN_LOWER_CASE = 1; + const ATTRIBUTE_NAME_IN_LOWER_CASE = 2; const ATTRIBUTE_VALUE_IN_LOWER_CASE = 4; /** @@ -45,8 +45,8 @@ class NodeExtension extends AbstractExtension } /** - * @param int $flag - * @param bool $on + * @param int $flag + * @param bool $on * * @return NodeExtension */ @@ -79,15 +79,15 @@ class NodeExtension extends AbstractExtension public function getNodeTranslators() { return array( - 'Selector' => array($this, 'translateSelector'), + 'Selector' => array($this, 'translateSelector'), 'CombinedSelector' => array($this, 'translateCombinedSelector'), - 'Negation' => array($this, 'translateNegation'), - 'Function' => array($this, 'translateFunction'), - 'Pseudo' => array($this, 'translatePseudo'), - 'Attribute' => array($this, 'translateAttribute'), - 'Class' => array($this, 'translateClass'), - 'Hash' => array($this, 'translateHash'), - 'Element' => array($this, 'translateElement'), + 'Negation' => array($this, 'translateNegation'), + 'Function' => array($this, 'translateFunction'), + 'Pseudo' => array($this, 'translatePseudo'), + 'Attribute' => array($this, 'translateAttribute'), + 'Class' => array($this, 'translateClass'), + 'Hash' => array($this, 'translateHash'), + 'Element' => array($this, 'translateElement'), ); } diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php index d230dd7c483..d59857225cf 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Extension/PseudoClassExtension.php @@ -30,14 +30,14 @@ class PseudoClassExtension extends AbstractExtension public function getPseudoClassTranslators() { return array( - 'root' => array($this, 'translateRoot'), - 'first-child' => array($this, 'translateFirstChild'), - 'last-child' => array($this, 'translateLastChild'), + 'root' => array($this, 'translateRoot'), + 'first-child' => array($this, 'translateFirstChild'), + 'last-child' => array($this, 'translateLastChild'), 'first-of-type' => array($this, 'translateFirstOfType'), - 'last-of-type' => array($this, 'translateLastOfType'), - 'only-child' => array($this, 'translateOnlyChild'), - 'only-of-type' => array($this, 'translateOnlyOfType'), - 'empty' => array($this, 'translateEmpty'), + 'last-of-type' => array($this, 'translateLastOfType'), + 'only-child' => array($this, 'translateOnlyChild'), + 'only-of-type' => array($this, 'translateOnlyOfType'), + 'empty' => array($this, 'translateEmpty'), ); } diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Translator.php b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Translator.php index 5675aa61064..011882cca37 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Translator.php +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/Translator.php @@ -227,7 +227,7 @@ class Translator implements TranslatorInterface } /** - * @param XPathExpr $xpath + * @param XPathExpr $xpath * @param FunctionNode $function * * @return XPathExpr diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/XPathExpr.php b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/XPathExpr.php index f0f2f987678..4ec9fda672c 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/XPathExpr.php +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/XPath/XPathExpr.php @@ -37,10 +37,10 @@ class XPathExpr private $condition; /** - * @param string $path - * @param string $element - * @param string $condition - * @param bool $starPrefix + * @param string $path + * @param string $element + * @param string $condition + * @param bool $starPrefix */ public function __construct($path = '', $element = '*', $condition = '', $starPrefix = false) { diff --git a/vendor/symfony/css-selector/Symfony/Component/CssSelector/composer.json b/vendor/symfony/css-selector/Symfony/Component/CssSelector/composer.json index 5b4231d7947..d47c77fe644 100644 --- a/vendor/symfony/css-selector/Symfony/Component/CssSelector/composer.json +++ b/vendor/symfony/css-selector/Symfony/Component/CssSelector/composer.json @@ -29,7 +29,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "2.6-dev" } } } diff --git a/vendor/symfony/process/Symfony/Component/Process/PhpProcess.php b/vendor/symfony/process/Symfony/Component/Process/PhpProcess.php index 93948e1db01..bc25154a8ed 100644 --- a/vendor/symfony/process/Symfony/Component/Process/PhpProcess.php +++ b/vendor/symfony/process/Symfony/Component/Process/PhpProcess.php @@ -31,11 +31,11 @@ class PhpProcess extends Process /** * Constructor. * - * @param string $script The PHP script to run (as a string) - * @param string $cwd The working directory - * @param array $env The environment variables - * @param int $timeout The timeout in seconds - * @param array $options An array of options for proc_open + * @param string $script The PHP script to run (as a string) + * @param string $cwd The working directory + * @param array $env The environment variables + * @param int $timeout The timeout in seconds + * @param array $options An array of options for proc_open * * @api */ diff --git a/vendor/symfony/process/Symfony/Component/Process/Pipes/AbstractPipes.php b/vendor/symfony/process/Symfony/Component/Process/Pipes/AbstractPipes.php new file mode 100644 index 00000000000..d8b57d07a77 --- /dev/null +++ b/vendor/symfony/process/Symfony/Component/Process/Pipes/AbstractPipes.php @@ -0,0 +1,74 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Process\Pipes; + +/** + * @author Romain Neutron <imprec@gmail.com> + * + * @internal + */ +abstract class AbstractPipes implements PipesInterface +{ + /** @var array */ + public $pipes = array(); + + /** @var string */ + protected $inputBuffer = ''; + /** @var resource|null */ + protected $input; + + /** @var bool */ + private $blocked = true; + + /** + * {@inheritdoc} + */ + public function close() + { + foreach ($this->pipes as $pipe) { + fclose($pipe); + } + $this->pipes = array(); + } + + /** + * Returns true if a system call has been interrupted. + * + * @return bool + */ + protected function hasSystemCallBeenInterrupted() + { + $lastError = error_get_last(); + + // stream_select returns false when the `select` system call is interrupted by an incoming signal + return isset($lastError['message']) && false !== stripos($lastError['message'], 'interrupted system call'); + } + + /** + * Unblocks streams + */ + protected function unblock() + { + if (!$this->blocked) { + return; + } + + foreach ($this->pipes as $pipe) { + stream_set_blocking($pipe, 0); + } + if (null !== $this->input) { + stream_set_blocking($this->input, 0); + } + + $this->blocked = false; + } +} diff --git a/vendor/symfony/process/Symfony/Component/Process/Pipes/PipesInterface.php b/vendor/symfony/process/Symfony/Component/Process/Pipes/PipesInterface.php new file mode 100644 index 00000000000..09d3f61d6ec --- /dev/null +++ b/vendor/symfony/process/Symfony/Component/Process/Pipes/PipesInterface.php @@ -0,0 +1,60 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Process\Pipes; + +/** + * PipesInterface manages descriptors and pipes for the use of proc_open. + * + * @author Romain Neutron <imprec@gmail.com> + * + * @internal + */ +interface PipesInterface +{ + const CHUNK_SIZE = 16384; + + /** + * Returns an array of descriptors for the use of proc_open. + * + * @return array + */ + public function getDescriptors(); + + /** + * Returns an array of filenames indexed by their related stream in case these pipes use temporary files. + * + * @return string[] + */ + public function getFiles(); + + /** + * Reads data in file handles and pipes. + * + * @param bool $blocking Whether to use blocking calls or not. + * @param bool $close Whether to close pipes if they've reached EOF. + * + * @return string[] An array of read data indexed by their fd. + */ + public function readAndWrite($blocking, $close = false); + + /** + * Returns if the current state has open file handles or pipes. + * + * @return bool + */ + public function areOpen(); + + /** + * Closes file handles and pipes. + */ + public function close(); +} diff --git a/vendor/symfony/process/Symfony/Component/Process/Pipes/UnixPipes.php b/vendor/symfony/process/Symfony/Component/Process/Pipes/UnixPipes.php new file mode 100644 index 00000000000..69f31467a03 --- /dev/null +++ b/vendor/symfony/process/Symfony/Component/Process/Pipes/UnixPipes.php @@ -0,0 +1,214 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Process\Pipes; + +use Symfony\Component\Process\Process; + +/** + * UnixPipes implementation uses unix pipes as handles. + * + * @author Romain Neutron <imprec@gmail.com> + * + * @internal + */ +class UnixPipes extends AbstractPipes +{ + /** @var bool */ + private $ttyMode; + /** @var bool */ + private $ptyMode; + /** @var bool */ + private $disableOutput; + + public function __construct($ttyMode, $ptyMode, $input, $disableOutput) + { + $this->ttyMode = (bool) $ttyMode; + $this->ptyMode = (bool) $ptyMode; + $this->disableOutput = (bool) $disableOutput; + + if (is_resource($input)) { + $this->input = $input; + } else { + $this->inputBuffer = (string) $input; + } + } + + public function __destruct() + { + $this->close(); + } + + /** + * {@inheritdoc} + */ + public function getDescriptors() + { + if ($this->disableOutput) { + $nullstream = fopen('/dev/null', 'c'); + + return array( + array('pipe', 'r'), + $nullstream, + $nullstream, + ); + } + + if ($this->ttyMode) { + return array( + array('file', '/dev/tty', 'r'), + array('file', '/dev/tty', 'w'), + array('file', '/dev/tty', 'w'), + ); + } + + if ($this->ptyMode && Process::isPtySupported()) { + return array( + array('pty'), + array('pty'), + array('pty'), + ); + } + + return array( + array('pipe', 'r'), + array('pipe', 'w'), // stdout + array('pipe', 'w'), // stderr + ); + } + + /** + * {@inheritdoc} + */ + public function getFiles() + { + return array(); + } + + /** + * {@inheritdoc} + */ + public function readAndWrite($blocking, $close = false) + { + // only stdin is left open, job has been done ! + // we can now close it + if (1 === count($this->pipes) && array(0) === array_keys($this->pipes)) { + fclose($this->pipes[0]); + unset($this->pipes[0]); + } + + if (empty($this->pipes)) { + return array(); + } + + $this->unblock(); + + $read = array(); + + if (null !== $this->input) { + // if input is a resource, let's add it to stream_select argument to + // fill a buffer + $r = array_merge($this->pipes, array('input' => $this->input)); + } else { + $r = $this->pipes; + } + // discard read on stdin + unset ($r[0]); + + $w = isset($this->pipes[0]) ? array($this->pipes[0]) : null; + $e = null; + + // let's have a look if something changed in streams + if (false === $n = @stream_select($r, $w, $e, 0, $blocking ? Process::TIMEOUT_PRECISION * 1E6 : 0)) { + // if a system call has been interrupted, forget about it, let's try again + // otherwise, an error occurred, let's reset pipes + if (!$this->hasSystemCallBeenInterrupted()) { + $this->pipes = array(); + } + + return $read; + } + + // nothing has changed + if (0 === $n) { + return $read; + } + + foreach ($r as $pipe) { + // prior PHP 5.4 the array passed to stream_select is modified and + // lose key association, we have to find back the key + $type = (false !== $found = array_search($pipe, $this->pipes)) ? $found : 'input'; + $data = ''; + while ('' !== $dataread = (string) fread($pipe, self::CHUNK_SIZE)) { + $data .= $dataread; + } + + if ('' !== $data) { + if ($type === 'input') { + $this->inputBuffer .= $data; + } else { + $read[$type] = $data; + } + } + + if (false === $data || (true === $close && feof($pipe) && '' === $data)) { + if ($type === 'input') { + // no more data to read on input resource + // use an empty buffer in the next reads + $this->input = null; + } else { + fclose($this->pipes[$type]); + unset($this->pipes[$type]); + } + } + } + + if (null !== $w && 0 < count($w)) { + while ($len = strlen($this->inputBuffer)) { + $written = fwrite($w[0], $this->inputBuffer, 2 << 18); // write 512k + if ($written > 0) { + $this->inputBuffer = (string) substr($this->inputBuffer, $written); + } else { + break; + } + } + } + + // no input to read on resource, buffer is empty and stdin still open + if ('' === $this->inputBuffer && null === $this->input && isset($this->pipes[0])) { + fclose($this->pipes[0]); + unset($this->pipes[0]); + } + + return $read; + } + + /** + * {@inheritdoc} + */ + public function areOpen() + { + return (bool) $this->pipes; + } + + /** + * Creates a new UnixPipes instance + * + * @param Process $process + * @param string|resource $input + * + * @return UnixPipes + */ + public static function create(Process $process, $input) + { + return new static($process->isTty(), $process->isPty(), $input, $process->isOutputDisabled()); + } +} diff --git a/vendor/symfony/process/Symfony/Component/Process/Pipes/WindowsPipes.php b/vendor/symfony/process/Symfony/Component/Process/Pipes/WindowsPipes.php new file mode 100644 index 00000000000..ecdf50eee2a --- /dev/null +++ b/vendor/symfony/process/Symfony/Component/Process/Pipes/WindowsPipes.php @@ -0,0 +1,254 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Process\Pipes; + +use Symfony\Component\Process\Process; +use Symfony\Component\Process\Exception\RuntimeException; + +/** + * WindowsPipes implementation uses temporary files as handles. + * + * @see https://bugs.php.net/bug.php?id=51800 + * @see https://bugs.php.net/bug.php?id=65650 + * + * @author Romain Neutron <imprec@gmail.com> + * + * @internal + */ +class WindowsPipes extends AbstractPipes +{ + /** @var array */ + private $files = array(); + /** @var array */ + private $fileHandles = array(); + /** @var array */ + private $readBytes = array( + Process::STDOUT => 0, + Process::STDERR => 0, + ); + /** @var bool */ + private $disableOutput; + + public function __construct($disableOutput, $input) + { + $this->disableOutput = (bool) $disableOutput; + + if (!$this->disableOutput) { + // Fix for PHP bug #51800: reading from STDOUT pipe hangs forever on Windows if the output is too big. + // Workaround for this problem is to use temporary files instead of pipes on Windows platform. + // + // @see https://bugs.php.net/bug.php?id=51800 + $this->files = array( + Process::STDOUT => tempnam(sys_get_temp_dir(), 'sf_proc_stdout'), + Process::STDERR => tempnam(sys_get_temp_dir(), 'sf_proc_stderr'), + ); + foreach ($this->files as $offset => $file) { + $this->fileHandles[$offset] = fopen($this->files[$offset], 'rb'); + if (false === $this->fileHandles[$offset]) { + throw new RuntimeException('A temporary file could not be opened to write the process output to, verify that your TEMP environment variable is writable'); + } + } + } + + if (is_resource($input)) { + $this->input = $input; + } else { + $this->inputBuffer = $input; + } + } + + public function __destruct() + { + $this->close(); + $this->removeFiles(); + } + + /** + * {@inheritdoc} + */ + public function getDescriptors() + { + if ($this->disableOutput) { + $nullstream = fopen('NUL', 'c'); + + return array( + array('pipe', 'r'), + $nullstream, + $nullstream, + ); + } + + // We're not using pipe on Windows platform as it hangs (https://bugs.php.net/bug.php?id=51800) + // We're not using file handles as it can produce corrupted output https://bugs.php.net/bug.php?id=65650 + // So we redirect output within the commandline and pass the nul device to the process + return array( + array('pipe', 'r'), + array('file', 'NUL', 'w'), + array('file', 'NUL', 'w'), + ); + } + + /** + * {@inheritdoc} + */ + public function getFiles() + { + return $this->files; + } + + /** + * {@inheritdoc} + */ + public function readAndWrite($blocking, $close = false) + { + $this->write($blocking, $close); + + $read = array(); + $fh = $this->fileHandles; + foreach ($fh as $type => $fileHandle) { + if (0 !== fseek($fileHandle, $this->readBytes[$type])) { + continue; + } + $data = ''; + $dataread = null; + while (!feof($fileHandle)) { + if (false !== $dataread = fread($fileHandle, self::CHUNK_SIZE)) { + $data .= $dataread; + } + } + if (0 < $length = strlen($data)) { + $this->readBytes[$type] += $length; + $read[$type] = $data; + } + + if (false === $dataread || (true === $close && feof($fileHandle) && '' === $data)) { + fclose($this->fileHandles[$type]); + unset($this->fileHandles[$type]); + } + } + + return $read; + } + + /** + * {@inheritdoc} + */ + public function areOpen() + { + return (bool) $this->pipes && (bool) $this->fileHandles; + } + + /** + * {@inheritdoc} + */ + public function close() + { + parent::close(); + foreach ($this->fileHandles as $handle) { + fclose($handle); + } + $this->fileHandles = array(); + } + + /** + * Creates a new WindowsPipes instance. + * + * @param Process $process The process + * @param $input + * + * @return WindowsPipes + */ + public static function create(Process $process, $input) + { + return new static($process->isOutputDisabled(), $input); + } + + /** + * Removes temporary files + */ + private function removeFiles() + { + foreach ($this->files as $filename) { + if (file_exists($filename)) { + @unlink($filename); + } + } + $this->files = array(); + } + + /** + * Writes input to stdin + * + * @param bool $blocking + * @param bool $close + */ + private function write($blocking, $close) + { + if (empty($this->pipes)) { + return; + } + + $this->unblock(); + + $r = null !== $this->input ? array('input' => $this->input) : null; + $w = isset($this->pipes[0]) ? array($this->pipes[0]) : null; + $e = null; + + // let's have a look if something changed in streams + if (false === $n = @stream_select($r, $w, $e, 0, $blocking ? Process::TIMEOUT_PRECISION * 1E6 : 0)) { + // if a system call has been interrupted, forget about it, let's try again + // otherwise, an error occurred, let's reset pipes + if (!$this->hasSystemCallBeenInterrupted()) { + $this->pipes = array(); + } + + return; + } + + // nothing has changed + if (0 === $n) { + return; + } + + if (null !== $w && 0 < count($r)) { + $data = ''; + while ($dataread = fread($r['input'], self::CHUNK_SIZE)) { + $data .= $dataread; + } + + $this->inputBuffer .= $data; + + if (false === $data || (true === $close && feof($r['input']) && '' === $data)) { + // no more data to read on input resource + // use an empty buffer in the next reads + unset($this->input); + } + } + + if (null !== $w && 0 < count($w)) { + while ($len = strlen($this->inputBuffer)) { + $written = fwrite($w[0], $this->inputBuffer, 2 << 18); + if ($written > 0) { + $this->inputBuffer = (string) substr($this->inputBuffer, $written); + } else { + break; + } + } + } + + // no input to read on resource, buffer is empty and stdin still open + if ('' === $this->inputBuffer && null === $this->input && isset($this->pipes[0])) { + fclose($this->pipes[0]); + unset($this->pipes[0]); + } + } +} diff --git a/vendor/symfony/process/Symfony/Component/Process/Process.php b/vendor/symfony/process/Symfony/Component/Process/Process.php index 7503dadefc2..b91bc5dea78 100644 --- a/vendor/symfony/process/Symfony/Component/Process/Process.php +++ b/vendor/symfony/process/Symfony/Component/Process/Process.php @@ -16,12 +16,16 @@ use Symfony\Component\Process\Exception\LogicException; use Symfony\Component\Process\Exception\ProcessFailedException; use Symfony\Component\Process\Exception\ProcessTimedOutException; use Symfony\Component\Process\Exception\RuntimeException; +use Symfony\Component\Process\Pipes\PipesInterface; +use Symfony\Component\Process\Pipes\UnixPipes; +use Symfony\Component\Process\Pipes\WindowsPipes; /** * Process is a thin wrapper around proc_* functions to easily * start independent PHP processes. * * @author Fabien Potencier <fabien@symfony.com> + * @author Romain Neutron <imprec@gmail.com> * * @api */ @@ -67,7 +71,7 @@ class Process private $pty; private $useFileHandles = false; - /** @var ProcessPipes */ + /** @var PipesInterface */ private $processPipes; private $latestSignal; @@ -127,12 +131,12 @@ class Process /** * Constructor. * - * @param string $commandline The command line to run - * @param string|null $cwd The working directory or null to use the working dir of the current PHP process - * @param array|null $env The environment variables or null to inherit - * @param string|null $input The input - * @param int|float|null $timeout The timeout in seconds or null to disable - * @param array $options An array of options for proc_open + * @param string $commandline The command line to run + * @param string|null $cwd The working directory or null to use the working dir of the current PHP process + * @param array|null $env The environment variables or null to inherit + * @param string|null $input The input + * @param int|float|null $timeout The timeout in seconds or null to disable + * @param array $options An array of options for proc_open * * @throws RuntimeException When proc_open is not installed * @@ -191,7 +195,7 @@ class Process * @param callable|null $callback A PHP callback to run whenever there is some * output available on STDOUT or STDERR * - * @return int The exit status code + * @return int The exit status code * * @throws RuntimeException When process can't be launched * @throws RuntimeException When process stopped after receiving signal @@ -291,13 +295,10 @@ class Process } $this->status = self::STATUS_STARTED; - $this->processPipes->unblock(); - if ($this->tty) { return; } - $this->processPipes->write(false, $this->input); $this->updateStatus(false); $this->checkTimeout(); } @@ -338,7 +339,7 @@ class Process * * @param callable|null $callback A valid PHP callback * - * @return int The exitcode of the process + * @return int The exitcode of the process * * @throws RuntimeException When process timed out * @throws RuntimeException When process stopped after receiving signal @@ -355,7 +356,7 @@ class Process do { $this->checkTimeout(); - $running = defined('PHP_WINDOWS_VERSION_BUILD') ? $this->isRunning() : $this->processPipes->hasOpenHandles(); + $running = defined('PHP_WINDOWS_VERSION_BUILD') ? $this->isRunning() : $this->processPipes->areOpen(); $close = !defined('PHP_WINDOWS_VERSION_BUILD') || !$running; $this->readPipes(true, $close); } while ($running); @@ -374,7 +375,7 @@ class Process /** * Returns the Pid (process identifier), if applicable. * - * @return int|null The process id if running, null otherwise + * @return int|null The process id if running, null otherwise * * @throws RuntimeException In case --enable-sigchild is activated */ @@ -392,7 +393,7 @@ class Process /** * Sends a POSIX signal to the process. * - * @param int $signal A valid POSIX signal (see http://www.php.net/manual/en/pcntl.constants.php) + * @param int $signal A valid POSIX signal (see http://www.php.net/manual/en/pcntl.constants.php) * * @return Process * @@ -579,7 +580,7 @@ class Process /** * Returns the exit code returned by the process. * - * @return null|int The exit status code, null if the Process is not terminated + * @return null|int The exit status code, null if the Process is not terminated * * @throws RuntimeException In case --enable-sigchild is activated and the sigchild compatibility mode is disabled * @@ -621,7 +622,7 @@ class Process /** * Checks if the process ended successfully. * - * @return bool true if the process ended successfully, false otherwise + * @return bool true if the process ended successfully, false otherwise * * @api */ @@ -723,7 +724,7 @@ class Process /** * Checks if the process is currently running. * - * @return bool true if the process is currently running, false otherwise + * @return bool true if the process is currently running, false otherwise */ public function isRunning() { @@ -739,7 +740,7 @@ class Process /** * Checks if the process has been started with no regard to the current state. * - * @return bool true if status is ready, false otherwise + * @return bool true if status is ready, false otherwise */ public function isStarted() { @@ -749,7 +750,7 @@ class Process /** * Checks if the process is terminated. * - * @return bool true if process is terminated, false otherwise + * @return bool true if process is terminated, false otherwise */ public function isTerminated() { @@ -775,10 +776,10 @@ class Process /** * Stops the process. * - * @param int|float $timeout The timeout in seconds - * @param int $signal A POSIX signal to send in case the process has not stop at timeout, default is SIGKILL + * @param int|float $timeout The timeout in seconds + * @param int $signal A POSIX signal to send in case the process has not stop at timeout, default is SIGKILL * - * @return int The exit-code of the process + * @return int The exit-code of the process * * @throws RuntimeException if the process got signaled */ @@ -888,7 +889,7 @@ class Process * * To disable the timeout, set this value to null. * - * @param int|float|null $timeout The timeout in seconds + * @param int|float|null $timeout The timeout in seconds * * @return self The current Process instance * @@ -927,7 +928,7 @@ class Process /** * Enables or disables the TTY mode. * - * @param bool $tty True to enabled and false to disable + * @param bool $tty True to enabled and false to disable * * @return self The current Process instance * @@ -947,7 +948,7 @@ class Process /** * Checks if the TTY mode is enabled. * - * @return bool true if the TTY mode is enabled, false otherwise + * @return bool true if the TTY mode is enabled, false otherwise */ public function isTty() { @@ -1072,8 +1073,6 @@ class Process /** * Sets the contents of STDIN. * - * Deprecation: As of Symfony 2.5, this method only accepts scalar values. - * * @param string|null $stdin The new contents * * @return self The current Process instance @@ -1150,7 +1149,7 @@ class Process /** * Sets whether or not Windows compatibility is enabled. * - * @param bool $enhance + * @param bool $enhance * * @return self The current Process instance */ @@ -1178,7 +1177,7 @@ class Process * determine the success of a process when PHP has been compiled with * the --enable-sigchild option * - * @param bool $enhance + * @param bool $enhance * * @return self The current Process instance */ @@ -1250,8 +1249,12 @@ class Process */ private function getDescriptors() { - $this->processPipes = new ProcessPipes($this->useFileHandles, $this->tty, $this->pty, $this->outputDisabled); - $descriptors = $this->processPipes->getDescriptors(); + if (defined('PHP_WINDOWS_VERSION_BUILD')) { + $this->processPipes = WindowsPipes::create($this, $this->input); + } else { + $this->processPipes = UnixPipes::create($this, $this->input); + } + $descriptors = $this->processPipes->getDescriptors($this->outputDisabled); if (!$this->useFileHandles && $this->enhanceSigchildCompatibility && $this->isSigchildEnabled()) { // last exit code is output on the fourth pipe and caught to work around --enable-sigchild @@ -1296,7 +1299,7 @@ class Process /** * Updates the status of the process, reads pipes. * - * @param bool $blocking Whether to use a blocking read call. + * @param bool $blocking Whether to use a blocking read call. */ protected function updateStatus($blocking) { @@ -1360,16 +1363,12 @@ class Process /** * Reads pipes, executes callback. * - * @param bool $blocking Whether to use blocking calls or not. - * @param bool $close Whether to close file handles or not. + * @param bool $blocking Whether to use blocking calls or not. + * @param bool $close Whether to close file handles or not. */ private function readPipes($blocking, $close) { - if ($close) { - $result = $this->processPipes->readAndCloseHandles($blocking); - } else { - $result = $this->processPipes->read($blocking); - } + $result = $this->processPipes->readAndWrite($blocking, $close); foreach ($result as $type => $data) { if (3 == $type) { @@ -1393,7 +1392,7 @@ class Process /** * Closes process resource, closes file handles, sets the exitcode. * - * @return int The exitcode + * @return int The exitcode */ private function close() { @@ -1439,10 +1438,10 @@ class Process /** * Sends a POSIX signal to the process. * - * @param int $signal A valid POSIX signal (see http://www.php.net/manual/en/pcntl.constants.php) - * @param bool $throwException Whether to throw exception in case signal failed + * @param int $signal A valid POSIX signal (see http://www.php.net/manual/en/pcntl.constants.php) + * @param bool $throwException Whether to throw exception in case signal failed * - * @return bool True if the signal was sent successfully, false otherwise + * @return bool True if the signal was sent successfully, false otherwise * * @throws LogicException In case the process is not running * @throws RuntimeException In case --enable-sigchild is activated diff --git a/vendor/symfony/process/Symfony/Component/Process/ProcessPipes.php b/vendor/symfony/process/Symfony/Component/Process/ProcessPipes.php deleted file mode 100644 index 9ed1def9f29..00000000000 --- a/vendor/symfony/process/Symfony/Component/Process/ProcessPipes.php +++ /dev/null @@ -1,382 +0,0 @@ -<?php - -/* - * This file is part of the Symfony package. - * - * (c) Fabien Potencier <fabien@symfony.com> - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Process; - -use Symfony\Component\Process\Exception\RuntimeException; - -/** - * ProcessPipes manages descriptors and pipes for the use of proc_open. - */ -class ProcessPipes -{ - /** @var array */ - public $pipes = array(); - /** @var array */ - private $files = array(); - /** @var array */ - private $fileHandles = array(); - /** @var array */ - private $readBytes = array(); - /** @var bool */ - private $useFiles; - /** @var bool */ - private $ttyMode; - /** @var bool */ - private $ptyMode; - /** @var bool */ - private $disableOutput; - - const CHUNK_SIZE = 16384; - - public function __construct($useFiles, $ttyMode, $ptyMode = false, $disableOutput = false) - { - $this->useFiles = (bool) $useFiles; - $this->ttyMode = (bool) $ttyMode; - $this->ptyMode = (bool) $ptyMode; - $this->disableOutput = (bool) $disableOutput; - - // Fix for PHP bug #51800: reading from STDOUT pipe hangs forever on Windows if the output is too big. - // Workaround for this problem is to use temporary files instead of pipes on Windows platform. - // - // @see https://bugs.php.net/bug.php?id=51800 - if ($this->useFiles && !$this->disableOutput) { - $this->files = array( - Process::STDOUT => tempnam(sys_get_temp_dir(), 'sf_proc_stdout'), - Process::STDERR => tempnam(sys_get_temp_dir(), 'sf_proc_stderr'), - ); - foreach ($this->files as $offset => $file) { - $this->fileHandles[$offset] = fopen($this->files[$offset], 'rb'); - if (false === $this->fileHandles[$offset]) { - throw new RuntimeException('A temporary file could not be opened to write the process output to, verify that your TEMP environment variable is writable'); - } - } - $this->readBytes = array( - Process::STDOUT => 0, - Process::STDERR => 0, - ); - } - } - - public function __destruct() - { - $this->close(); - $this->removeFiles(); - } - - /** - * Sets non-blocking mode on pipes. - */ - public function unblock() - { - foreach ($this->pipes as $pipe) { - stream_set_blocking($pipe, 0); - } - } - - /** - * Closes file handles and pipes. - */ - public function close() - { - $this->closeUnixPipes(); - foreach ($this->fileHandles as $handle) { - fclose($handle); - } - $this->fileHandles = array(); - } - - /** - * Closes Unix pipes. - * - * Nothing happens in case file handles are used. - */ - public function closeUnixPipes() - { - foreach ($this->pipes as $pipe) { - fclose($pipe); - } - $this->pipes = array(); - } - - /** - * Returns an array of descriptors for the use of proc_open. - * - * @return array - */ - public function getDescriptors() - { - if ($this->disableOutput) { - $nullstream = fopen(defined('PHP_WINDOWS_VERSION_BUILD') ? 'NUL' : '/dev/null', 'c'); - - return array( - array('pipe', 'r'), - $nullstream, - $nullstream, - ); - } - - if ($this->useFiles) { - // We're not using pipe on Windows platform as it hangs (https://bugs.php.net/bug.php?id=51800) - // We're not using file handles as it can produce corrupted output https://bugs.php.net/bug.php?id=65650 - // So we redirect output within the commandline and pass the nul device to the process - return array( - array('pipe', 'r'), - array('file', 'NUL', 'w'), - array('file', 'NUL', 'w'), - ); - } - - if ($this->ttyMode) { - return array( - array('file', '/dev/tty', 'r'), - array('file', '/dev/tty', 'w'), - array('file', '/dev/tty', 'w'), - ); - } elseif ($this->ptyMode && Process::isPtySupported()) { - return array( - array('pty'), - array('pty'), - array('pty'), - ); - } - - return array( - array('pipe', 'r'), // stdin - array('pipe', 'w'), // stdout - array('pipe', 'w'), // stderr - ); - } - - /** - * Returns an array of filenames indexed by their related stream in case these pipes use temporary files. - * - * @return array - */ - public function getFiles() - { - if ($this->useFiles) { - return $this->files; - } - - return array(); - } - - /** - * Reads data in file handles and pipes. - * - * @param bool $blocking Whether to use blocking calls or not. - * - * @return array An array of read data indexed by their fd. - */ - public function read($blocking) - { - return array_replace($this->readStreams($blocking), $this->readFileHandles()); - } - - /** - * Reads data in file handles and pipes, closes them if EOF is reached. - * - * @param bool $blocking Whether to use blocking calls or not. - * - * @return array An array of read data indexed by their fd. - */ - public function readAndCloseHandles($blocking) - { - return array_replace($this->readStreams($blocking, true), $this->readFileHandles(true)); - } - - /** - * Returns if the current state has open file handles or pipes. - * - * @return bool - */ - public function hasOpenHandles() - { - if (!$this->useFiles) { - return (bool) $this->pipes; - } - - return (bool) $this->pipes && (bool) $this->fileHandles; - } - - /** - * Writes stdin data. - * - * @param bool $blocking Whether to use blocking calls or not. - * @param string|null $stdin The data to write. - */ - public function write($blocking, $stdin) - { - if (null === $stdin) { - fclose($this->pipes[0]); - unset($this->pipes[0]); - - return; - } - - $writePipes = array($this->pipes[0]); - unset($this->pipes[0]); - $stdinLen = strlen($stdin); - $stdinOffset = 0; - - while ($writePipes) { - $r = null; - $w = $writePipes; - $e = null; - - if (false === $n = @stream_select($r, $w, $e, 0, $blocking ? ceil(Process::TIMEOUT_PRECISION * 1E6) : 0)) { - // if a system call has been interrupted, forget about it, let's try again - if ($this->hasSystemCallBeenInterrupted()) { - continue; - } - break; - } - - // nothing has changed, let's wait until the process is ready - if (0 === $n) { - continue; - } - - if ($w) { - $written = fwrite($writePipes[0], (binary) substr($stdin, $stdinOffset), 8192); - if (false !== $written) { - $stdinOffset += $written; - } - if ($stdinOffset >= $stdinLen) { - fclose($writePipes[0]); - $writePipes = null; - } - } - } - } - - /** - * Reads data in file handles. - * - * @param bool $close Whether to close file handles or not. - * - * @return array An array of read data indexed by their fd. - */ - private function readFileHandles($close = false) - { - $read = array(); - $fh = $this->fileHandles; - foreach ($fh as $type => $fileHandle) { - if (0 !== fseek($fileHandle, $this->readBytes[$type])) { - continue; - } - $data = ''; - $dataread = null; - while (!feof($fileHandle)) { - if (false !== $dataread = fread($fileHandle, self::CHUNK_SIZE)) { - $data .= $dataread; - } - } - if (0 < $length = strlen($data)) { - $this->readBytes[$type] += $length; - $read[$type] = $data; - } - - if (false === $dataread || (true === $close && feof($fileHandle) && '' === $data)) { - fclose($this->fileHandles[$type]); - unset($this->fileHandles[$type]); - } - } - - return $read; - } - - /** - * Reads data in file pipes streams. - * - * @param bool $blocking Whether to use blocking calls or not. - * @param bool $close Whether to close file handles or not. - * - * @return array An array of read data indexed by their fd. - */ - private function readStreams($blocking, $close = false) - { - if (empty($this->pipes)) { - usleep(Process::TIMEOUT_PRECISION * 1E4); - - return array(); - } - - $read = array(); - - $r = $this->pipes; - $w = null; - $e = null; - - // let's have a look if something changed in streams - if (false === $n = @stream_select($r, $w, $e, 0, $blocking ? ceil(Process::TIMEOUT_PRECISION * 1E6) : 0)) { - // if a system call has been interrupted, forget about it, let's try again - // otherwise, an error occurred, let's reset pipes - if (!$this->hasSystemCallBeenInterrupted()) { - $this->pipes = array(); - } - - return $read; - } - - // nothing has changed - if (0 === $n) { - return $read; - } - - foreach ($r as $pipe) { - $type = array_search($pipe, $this->pipes); - - $data = ''; - while ('' !== $dataread = (string) fread($pipe, self::CHUNK_SIZE)) { - $data .= $dataread; - } - - if ('' !== $data) { - $read[$type] = $data; - } - - if (false === $data || (true === $close && feof($pipe) && '' === $data)) { - fclose($this->pipes[$type]); - unset($this->pipes[$type]); - } - } - - return $read; - } - - /** - * Returns true if a system call has been interrupted. - * - * @return bool - */ - private function hasSystemCallBeenInterrupted() - { - $lastError = error_get_last(); - - // stream_select returns false when the `select` system call is interrupted by an incoming signal - return isset($lastError['message']) && false !== stripos($lastError['message'], 'interrupted system call'); - } - - /** - * Removes temporary files - */ - private function removeFiles() - { - foreach ($this->files as $filename) { - if (file_exists($filename)) { - @unlink($filename); - } - } - $this->files = array(); - } -} diff --git a/vendor/symfony/process/Symfony/Component/Process/ProcessUtils.php b/vendor/symfony/process/Symfony/Component/Process/ProcessUtils.php index 35ae17c5088..2ec321cc12c 100644 --- a/vendor/symfony/process/Symfony/Component/Process/ProcessUtils.php +++ b/vendor/symfony/process/Symfony/Component/Process/ProcessUtils.php @@ -87,6 +87,9 @@ class ProcessUtils public static function validateInput($caller, $input) { if (null !== $input) { + if (is_resource($input)) { + return $input; + } if (is_scalar($input)) { return (string) $input; } @@ -95,7 +98,7 @@ class ProcessUtils return (string) $input; } - throw new InvalidArgumentException(sprintf('%s only accepts strings.', $caller)); + throw new InvalidArgumentException(sprintf('%s only accepts strings or stream resources.', $caller)); } return $input; diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/AbstractProcessTest.php b/vendor/symfony/process/Symfony/Component/Process/Tests/AbstractProcessTest.php index c5737e1a9e3..d48698a7cf3 100644 --- a/vendor/symfony/process/Symfony/Component/Process/Tests/AbstractProcessTest.php +++ b/vendor/symfony/process/Symfony/Component/Process/Tests/AbstractProcessTest.php @@ -13,9 +13,9 @@ namespace Symfony\Component\Process\Tests; use Symfony\Component\Process\Exception\ProcessTimedOutException; use Symfony\Component\Process\Exception\LogicException; +use Symfony\Component\Process\Pipes\PipesInterface; use Symfony\Component\Process\Process; use Symfony\Component\Process\Exception\RuntimeException; -use Symfony\Component\Process\ProcessPipes; /** * @author Robert Schönthal <seroscho@googlemail.com> @@ -80,7 +80,7 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase } $duration = microtime(true) - $start; - $this->assertLessThan(1.8, $duration); + $this->assertLessThan(4, $duration); } public function testAllOutputIsActuallyReadOnTermination() @@ -90,9 +90,9 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase // has terminated so the internal pipes array is already empty. normally // the call to start() will not read any data as the process will not have // generated output, but this is non-deterministic so we must count it as - // a possibility. therefore we need 2 * ProcessPipes::CHUNK_SIZE plus + // a possibility. therefore we need 2 * PipesInterface::CHUNK_SIZE plus // another byte which will never be read. - $expectedOutputSize = ProcessPipes::CHUNK_SIZE * 2 + 2; + $expectedOutputSize = PipesInterface::CHUNK_SIZE * 2 + 2; $code = sprintf('echo str_repeat(\'*\', %d);', $expectedOutputSize); $p = $this->getProcess(sprintf('php -r %s', escapeshellarg($code))); @@ -158,6 +158,28 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase $this->assertEquals($expectedLength, strlen($p->getErrorOutput())); } + /** + * @dataProvider pipesCodeProvider + */ + public function testSetStreamAsInput($code, $size) + { + $expected = str_repeat(str_repeat('*', 1024), $size).'!'; + $expectedLength = (1024 * $size) + 1; + + $stream = fopen('php://temporary', 'w+'); + fwrite($stream, $expected); + rewind($stream); + + $p = $this->getProcess(sprintf('php -r %s', escapeshellarg($code))); + $p->setInput($stream); + $p->run(); + + fclose($stream); + + $this->assertEquals($expectedLength, strlen($p->getOutput())); + $this->assertEquals($expectedLength, strlen($p->getErrorOutput())); + } + public function testSetInputWhileRunningThrowsAnException() { $process = $this->getProcess('php -r "usleep(500000);"'); @@ -175,7 +197,7 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase /** * @dataProvider provideInvalidInputValues * @expectedException \Symfony\Component\Process\Exception\InvalidArgumentException - * @expectedExceptionMessage Symfony\Component\Process\Process::setInput only accepts strings. + * @expectedExceptionMessage Symfony\Component\Process\Process::setInput only accepts strings or stream resources. */ public function testInvalidInput($value) { @@ -188,7 +210,6 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase return array( array(array()), array(new NonStringifiable()), - array(fopen('php://temporary', 'w')), ); } @@ -1079,12 +1100,12 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase } /** - * @param string $commandline - * @param null|string $cwd - * @param null|array $env - * @param null|string $input - * @param int $timeout - * @param array $options + * @param string $commandline + * @param null|string $cwd + * @param null|array $env + * @param null|string $input + * @param int $timeout + * @param array $options * * @return Process */ diff --git a/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessBuilderTest.php b/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessBuilderTest.php index 56e40520754..e864f662345 100644 --- a/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessBuilderTest.php +++ b/vendor/symfony/process/Symfony/Component/Process/Tests/ProcessBuilderTest.php @@ -215,7 +215,7 @@ class ProcessBuilderTest extends \PHPUnit_Framework_TestCase /** * @expectedException \Symfony\Component\Process\Exception\InvalidArgumentException - * @expectedExceptionMessage Symfony\Component\Process\ProcessBuilder::setInput only accepts strings. + * @expectedExceptionMessage Symfony\Component\Process\ProcessBuilder::setInput only accepts strings or stream resources. */ public function testInvalidInput() { diff --git a/vendor/symfony/process/Symfony/Component/Process/composer.json b/vendor/symfony/process/Symfony/Component/Process/composer.json index b5dbfe1390a..39fa97cb59b 100644 --- a/vendor/symfony/process/Symfony/Component/Process/composer.json +++ b/vendor/symfony/process/Symfony/Component/Process/composer.json @@ -25,7 +25,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "2.6-dev" } } } diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Dumper.php b/vendor/symfony/yaml/Symfony/Component/Yaml/Dumper.php index 26103c88ece..39cdcfc536a 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/Dumper.php +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/Dumper.php @@ -28,7 +28,7 @@ class Dumper /** * Sets the indentation. * - * @param int $num The amount of spaces to use for indentation of nested nodes. + * @param int $num The amount of spaces to use for indentation of nested nodes. */ public function setIndentation($num) { @@ -38,13 +38,13 @@ class Dumper /** * Dumps a PHP value to YAML. * - * @param mixed $input The PHP value - * @param int $inline The level where you switch to inline YAML - * @param int $indent The level of indentation (used internally) - * @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise - * @param bool $objectSupport true if object support is enabled, false otherwise + * @param mixed $input The PHP value + * @param int $inline The level where you switch to inline YAML + * @param int $indent The level of indentation (used internally) + * @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise + * @param bool $objectSupport true if object support is enabled, false otherwise * - * @return string The YAML representation of the PHP value + * @return string The YAML representation of the PHP value */ public function dump($input, $inline = 0, $indent = 0, $exceptionOnInvalidType = false, $objectSupport = false) { diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Escaper.php b/vendor/symfony/yaml/Symfony/Component/Yaml/Escaper.php index 7f6ec2bef29..6f9785886f1 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/Escaper.php +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/Escaper.php @@ -32,7 +32,7 @@ class Escaper "\x10", "\x11", "\x12", "\x13", "\x14", "\x15", "\x16", "\x17", "\x18", "\x19", "\x1a", "\x1b", "\x1c", "\x1d", "\x1e", "\x1f", "\xc2\x85", "\xc2\xa0", "\xe2\x80\xa8", "\xe2\x80\xa9",); - private static $escaped = array('\\\\', '\\"', '\\\\', '\\"', + private static $escaped = array('\\\\', '\\"', '\\\\', '\\"', "\\0", "\\x01", "\\x02", "\\x03", "\\x04", "\\x05", "\\x06", "\\a", "\\b", "\\t", "\\n", "\\v", "\\f", "\\r", "\\x0e", "\\x0f", "\\x10", "\\x11", "\\x12", "\\x13", "\\x14", "\\x15", "\\x16", "\\x17", @@ -44,7 +44,7 @@ class Escaper * * @param string $value A PHP value * - * @return bool True if the value would require double quotes. + * @return bool True if the value would require double quotes. */ public static function requiresDoubleQuoting($value) { @@ -68,7 +68,7 @@ class Escaper * * @param string $value A PHP value * - * @return bool True if the value would require single quotes. + * @return bool True if the value would require single quotes. */ public static function requiresSingleQuoting($value) { diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php b/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php index ff01d6b9a69..0447dff1373 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ParseException.php @@ -11,11 +11,6 @@ namespace Symfony\Component\Yaml\Exception; -if (!defined('JSON_UNESCAPED_UNICODE')) { - define('JSON_UNESCAPED_SLASHES', 64); - define('JSON_UNESCAPED_UNICODE', 256); -} - /** * Exception class thrown when an error occurs during parsing. * @@ -33,10 +28,10 @@ class ParseException extends RuntimeException /** * Constructor. * - * @param string $message The error message - * @param int $parsedLine The line where the error occurred - * @param int $snippet The snippet of code near the problem - * @param string $parsedFile The file name where the error occurred + * @param string $message The error message + * @param int $parsedLine The line where the error occurred + * @param int $snippet The snippet of code near the problem + * @param string $parsedFile The file name where the error occurred * @param \Exception $previous The previous exception */ public function __construct($message, $parsedLine = -1, $snippet = null, $parsedFile = null, \Exception $previous = null) @@ -100,7 +95,7 @@ class ParseException extends RuntimeException /** * Gets the line where the error occurred. * - * @return int The file line + * @return int The file line */ public function getParsedLine() { @@ -110,7 +105,7 @@ class ParseException extends RuntimeException /** * Sets the line where the error occurred. * - * @param int $parsedLine The file line + * @param int $parsedLine The file line */ public function setParsedLine($parsedLine) { @@ -130,7 +125,12 @@ class ParseException extends RuntimeException } if (null !== $this->parsedFile) { - $this->message .= sprintf(' in %s', json_encode($this->parsedFile, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)); + if (PHP_VERSION_ID >= 50400) { + $jsonOptions = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE; + } else { + $jsonOptions = 0; + } + $this->message .= sprintf(' in %s', json_encode($this->parsedFile, $jsonOptions)); } if ($this->parsedLine >= 0) { diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Inline.php b/vendor/symfony/yaml/Symfony/Component/Yaml/Inline.php index 8fec216dde1..e3fafe12bc6 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/Inline.php +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/Inline.php @@ -25,23 +25,26 @@ class Inline private static $exceptionOnInvalidType = false; private static $objectSupport = false; + private static $objectForMap = false; /** * Converts a YAML string to a PHP array. * - * @param string $value A YAML string - * @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise - * @param bool $objectSupport true if object support is enabled, false otherwise - * @param array $references Mapping of variable names to values + * @param string $value A YAML string + * @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise + * @param bool $objectSupport true if object support is enabled, false otherwise + * @param bool $objectForMap true if maps should return a stdClass instead of array() + * @param array $references Mapping of variable names to values * * @return array A PHP array representing the YAML string * * @throws ParseException */ - public static function parse($value, $exceptionOnInvalidType = false, $objectSupport = false, $references = array()) + public static function parse($value, $exceptionOnInvalidType = false, $objectSupport = false, $objectForMap = false, $references = array()) { self::$exceptionOnInvalidType = $exceptionOnInvalidType; self::$objectSupport = $objectSupport; + self::$objectForMap = $objectForMap; $value = trim($value); @@ -83,9 +86,9 @@ class Inline /** * Dumps a given PHP variable to a YAML string. * - * @param mixed $value The PHP variable to convert - * @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise - * @param bool $objectSupport true if object support is enabled, false otherwise + * @param mixed $value The PHP variable to convert + * @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise + * @param bool $objectSupport true if object support is enabled, false otherwise * * @return string The YAML string representing the PHP array * @@ -125,8 +128,17 @@ class Inline if (false !== $locale) { setlocale(LC_NUMERIC, 'C'); } - $repr = is_string($value) ? "'$value'" : (is_infinite($value) ? str_ireplace('INF', '.Inf', strval($value)) : strval($value)); - + if (is_float($value)) { + $repr = strval($value); + if (is_infinite($value)) { + $repr = str_ireplace('INF', '.Inf', $repr); + } elseif (floor($value) == $value && $repr == $value) { + // Preserve float data type since storing a whole number will result in integer value. + $repr = '!!float '.$repr; + } + } else { + $repr = is_string($value) ? "'$value'" : strval($value); + } if (false !== $locale) { setlocale(LC_NUMERIC, $locale); } @@ -149,9 +161,9 @@ class Inline /** * Dumps a PHP array to a YAML string. * - * @param array $value The PHP array to dump - * @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise - * @param bool $objectSupport true if object support is enabled, false otherwise + * @param array $value The PHP array to dump + * @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise + * @param bool $objectSupport true if object support is enabled, false otherwise * * @return string The YAML string representing the PHP array */ @@ -234,7 +246,7 @@ class Inline * Parses a quoted scalar to YAML. * * @param string $scalar - * @param int &$i + * @param int &$i * * @return string A YAML string * @@ -344,6 +356,10 @@ class Inline ++$i; continue 2; case '}': + if (self::$objectForMap) { + return (object) $output; + } + return $output; } @@ -352,6 +368,7 @@ class Inline // value $done = false; + while ($i < $len) { switch ($mapping[$i]) { case '[': @@ -462,6 +479,8 @@ class Inline } return; + case 0 === strpos($scalar, '!!float '): + return (float) substr($scalar, 8); case ctype_digit($scalar): $raw = $scalar; $cast = intval($scalar); diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php b/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php index fd9afafe36b..00c613dfdc4 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php @@ -22,16 +22,16 @@ class Parser { const FOLDED_SCALAR_PATTERN = '(?P<separator>\||>)(?P<modifiers>\+|\-|\d+|\+\d+|\-\d+|\d+\+|\d+\-)?(?P<comments> +#.*)?'; - private $offset = 0; - private $lines = array(); - private $currentLineNb = -1; - private $currentLine = ''; - private $refs = array(); + private $offset = 0; + private $lines = array(); + private $currentLineNb = -1; + private $currentLine = ''; + private $refs = array(); /** * Constructor * - * @param int $offset The offset of YAML document (used for line numbers in error messages) + * @param int $offset The offset of YAML document (used for line numbers in error messages) */ public function __construct($offset = 0) { @@ -44,12 +44,13 @@ class Parser * @param string $value A YAML string * @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise * @param bool $objectSupport true if object support is enabled, false otherwise + * @param bool $objectForMap true if maps should return a stdClass instead of array() * - * @return mixed A PHP value + * @return mixed A PHP value * * @throws ParseException If the YAML is not valid */ - public function parse($value, $exceptionOnInvalidType = false, $objectSupport = false) + public function parse($value, $exceptionOnInvalidType = false, $objectSupport = false, $objectForMap = false) { $this->currentLineNb = -1; $this->currentLine = ''; @@ -94,7 +95,7 @@ class Parser $c = $this->getRealCurrentLineNb() + 1; $parser = new Parser($c); $parser->refs = & $this->refs; - $data[] = $parser->parse($this->getNextEmbedBlock(null, true), $exceptionOnInvalidType, $objectSupport); + $data[] = $parser->parse($this->getNextEmbedBlock(null, true), $exceptionOnInvalidType, $objectSupport, $objectForMap); } else { if (isset($values['leadspaces']) && ' ' == $values['leadspaces'] @@ -110,19 +111,19 @@ class Parser $block .= "\n".$this->getNextEmbedBlock($this->getCurrentLineIndentation() + 2); } - $data[] = $parser->parse($block, $exceptionOnInvalidType, $objectSupport); + $data[] = $parser->parse($block, $exceptionOnInvalidType, $objectSupport, $objectForMap); } else { - $data[] = $this->parseValue($values['value'], $exceptionOnInvalidType, $objectSupport); + $data[] = $this->parseValue($values['value'], $exceptionOnInvalidType, $objectSupport, $objectForMap); } } - } elseif (preg_match('#^(?P<key>'.Inline::REGEX_QUOTED_STRING.'|[^ \'"\[\{].*?) *\:(\s+(?P<value>.+?))?\s*$#u', $this->currentLine, $values) && (false === strpos($values['key'],' #') || in_array($values['key'][0], array('"', "'")))) { + } elseif (preg_match('#^(?P<key>'.Inline::REGEX_QUOTED_STRING.'|[^ \'"\[\{].*?) *\:(\s+(?P<value>.+?))?\s*$#u', $this->currentLine, $values) && (false === strpos($values['key'], ' #') || in_array($values['key'][0], array('"', "'")))) { if ($context && 'sequence' == $context) { throw new ParseException('You cannot define a mapping item when in a sequence'); } $context = 'mapping'; // force correct settings - Inline::parse(null, $exceptionOnInvalidType, $objectSupport, $this->refs); + Inline::parse(null, $exceptionOnInvalidType, $objectSupport, $objectForMap, $this->refs); try { $key = Inline::parseScalar($values['key']); } catch (ParseException $e) { @@ -161,7 +162,7 @@ class Parser $c = $this->getRealCurrentLineNb() + 1; $parser = new Parser($c); $parser->refs = & $this->refs; - $parsed = $parser->parse($value, $exceptionOnInvalidType, $objectSupport); + $parsed = $parser->parse($value, $exceptionOnInvalidType, $objectSupport, $objectForMap); if (!is_array($parsed)) { throw new ParseException('YAML merge keys used with a scalar value instead of an array.', $this->getRealCurrentLineNb() + 1, $this->currentLine); @@ -212,7 +213,7 @@ class Parser $c = $this->getRealCurrentLineNb() + 1; $parser = new Parser($c); $parser->refs = & $this->refs; - $value = $parser->parse($this->getNextEmbedBlock(), $exceptionOnInvalidType, $objectSupport); + $value = $parser->parse($this->getNextEmbedBlock(), $exceptionOnInvalidType, $objectSupport, $objectForMap); // Spec: Keys MUST be unique; first one wins. // But overwriting is allowed when a merge node is used in current block. if ($allowOverwrite || !isset($data[$key])) { @@ -220,7 +221,7 @@ class Parser } } } else { - $value = $this->parseValue($values['value'], $exceptionOnInvalidType, $objectSupport); + $value = $this->parseValue($values['value'], $exceptionOnInvalidType, $objectSupport, $objectForMap); // Spec: Keys MUST be unique; first one wins. // But overwriting is allowed when a merge node is used in current block. if ($allowOverwrite || !isset($data[$key])) { @@ -228,11 +229,16 @@ class Parser } } } else { + // multiple documents are not supported + if ('---' === $this->currentLine) { + throw new ParseException('Multiple documents are not supported.'); + } + // 1-liner optionally followed by newline $lineCount = count($this->lines); if (1 === $lineCount || (2 === $lineCount && empty($this->lines[1]))) { try { - $value = Inline::parse($this->lines[0], $exceptionOnInvalidType, $objectSupport, $this->refs); + $value = Inline::parse($this->lines[0], $exceptionOnInvalidType, $objectSupport, $objectForMap, $this->refs); } catch (ParseException $e) { $e->setParsedLine($this->getRealCurrentLineNb() + 1); $e->setSnippet($this->currentLine); @@ -296,7 +302,7 @@ class Parser /** * Returns the current line number (takes the offset into account). * - * @return int The current line number + * @return int The current line number */ private function getRealCurrentLineNb() { @@ -306,7 +312,7 @@ class Parser /** * Returns the current line indentation. * - * @return int The current line indentation + * @return int The current line indentation */ private function getCurrentLineIndentation() { @@ -421,15 +427,16 @@ class Parser /** * Parses a YAML value. * - * @param string $value A YAML value - * @param bool $exceptionOnInvalidType True if an exception must be thrown on invalid types false otherwise - * @param bool $objectSupport True if object support is enabled, false otherwise + * @param string $value A YAML value + * @param bool $exceptionOnInvalidType True if an exception must be thrown on invalid types false otherwise + * @param bool $objectSupport True if object support is enabled, false otherwise + * @param bool $objectForMap true if maps should return a stdClass instead of array() * - * @return mixed A PHP value + * @return mixed A PHP value * * @throws ParseException When reference does not exist */ - private function parseValue($value, $exceptionOnInvalidType, $objectSupport) + private function parseValue($value, $exceptionOnInvalidType, $objectSupport, $objectForMap) { if (0 === strpos($value, '*')) { if (false !== $pos = strpos($value, '#')) { @@ -452,7 +459,7 @@ class Parser } try { - return Inline::parse($value, $exceptionOnInvalidType, $objectSupport, $this->refs); + return Inline::parse($value, $exceptionOnInvalidType, $objectSupport, $objectForMap, $this->refs); } catch (ParseException $e) { $e->setParsedLine($this->getRealCurrentLineNb() + 1); $e->setSnippet($this->currentLine); @@ -464,11 +471,11 @@ class Parser /** * Parses a folded scalar. * - * @param string $separator The separator that was used to begin this folded scalar (| or >) - * @param string $indicator The indicator that was used to begin this folded scalar (+ or -) - * @param int $indentation The indentation that was used to begin this folded scalar + * @param string $separator The separator that was used to begin this folded scalar (| or >) + * @param string $indicator The indicator that was used to begin this folded scalar (+ or -) + * @param int $indentation The indentation that was used to begin this folded scalar * - * @return string The text value + * @return string The text value */ private function parseFoldedScalar($separator, $indicator = '', $indentation = 0) { @@ -545,7 +552,7 @@ class Parser /** * Returns true if the next line is indented. * - * @return bool Returns true if the next line is indented, false otherwise + * @return bool Returns true if the next line is indented, false otherwise */ private function isNextLineIndented() { @@ -573,7 +580,7 @@ class Parser /** * Returns true if the current line is blank or if it is a comment line. * - * @return bool Returns true if the current line is empty or if it is a comment line, false otherwise + * @return bool Returns true if the current line is empty or if it is a comment line, false otherwise */ private function isCurrentLineEmpty() { @@ -583,7 +590,7 @@ class Parser /** * Returns true if the current line is blank. * - * @return bool Returns true if the current line is blank, false otherwise + * @return bool Returns true if the current line is blank, false otherwise */ private function isCurrentLineBlank() { @@ -593,7 +600,7 @@ class Parser /** * Returns true if the current line is a comment line. * - * @return bool Returns true if the current line is a comment line, false otherwise + * @return bool Returns true if the current line is a comment line, false otherwise */ private function isCurrentLineComment() { @@ -644,7 +651,7 @@ class Parser /** * Returns true if the next line starts unindented collection * - * @return bool Returns true if the next line starts unindented collection, false otherwise + * @return bool Returns true if the next line starts unindented collection, false otherwise */ private function isNextLineUnIndentedCollection() { @@ -676,7 +683,7 @@ class Parser /** * Returns true if the string is un-indented collection item * - * @return bool Returns true if the string is un-indented collection item, false otherwise + * @return bool Returns true if the string is un-indented collection item, false otherwise */ private function isStringUnIndentedCollectionItem() { diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/DumperTest.php b/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/DumperTest.php index 51e12d41f54..aa27c4abeb9 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/DumperTest.php +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/DumperTest.php @@ -96,8 +96,7 @@ EOF; // TODO } else { eval('$expected = '.trim($test['php']).';'); - - $this->assertEquals($expected, $this->parser->parse($this->dumper->dump($expected, 10)), $test['test']); + $this->assertSame($expected, $this->parser->parse($this->dumper->dump($expected, 10)), $test['test']); } } } diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/YtsSpecificationExamples.yml b/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/YtsSpecificationExamples.yml index 1e59f3bf988..0a8b5defd03 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/YtsSpecificationExamples.yml +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/YtsSpecificationExamples.yml @@ -463,9 +463,9 @@ yaml: | 0.278 Batting Average php: | array( - 'name' => 'Mark McGwire', + 'name' => 'Mark McGwire', 'accomplishment' => "Mark set a major league home run record in 1998.\n", - 'stats' => "65 Home Runs\n0.278 Batting Average\n" + 'stats' => "65 Home Runs\n0.278 Batting Average\n" ) --- test: Quoted scalars @@ -529,6 +529,7 @@ yaml: | fixed: 1,230.15 negative infinity: -.inf not a number: .NaN + float as whole number: !!float 1 php: | array( 'canonical' => 1230.15, @@ -536,6 +537,7 @@ php: | 'fixed' => 1230.15, 'negative infinity' => log(0), 'not a number' => -log(0), + 'float as whole number' => (float) 1 ) --- test: Miscellaneous diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/InlineTest.php b/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/InlineTest.php index 96afb6bb225..7f1876d7a95 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/InlineTest.php +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/InlineTest.php @@ -15,28 +15,32 @@ use Symfony\Component\Yaml\Inline; class InlineTest extends \PHPUnit_Framework_TestCase { - public function testParse() + /** + * @dataProvider getTestsForParse + */ + public function testParse($yaml, $value) { - foreach ($this->getTestsForParse() as $yaml => $value) { - $this->assertSame($value, Inline::parse($yaml), sprintf('::parse() converts an inline YAML to a PHP structure (%s)', $yaml)); - } + $this->assertSame($value, Inline::parse($yaml), sprintf('::parse() converts an inline YAML to a PHP structure (%s)', $yaml)); } - public function testDump() + /** + * @dataProvider getTestsForParseWithMapObjects + */ + public function testParseWithMapObjects($yaml, $value) { - $testsForDump = $this->getTestsForDump(); + $actual = Inline::parse($yaml, false, false, true); - foreach ($testsForDump as $yaml => $value) { - $this->assertEquals($yaml, Inline::dump($value), sprintf('::dump() converts a PHP structure to an inline YAML (%s)', $yaml)); - } + $this->assertSame(serialize($value), serialize($actual)); + } - foreach ($this->getTestsForParse() as $value) { - $this->assertEquals($value, Inline::parse(Inline::dump($value)), 'check consistency'); - } + /** + * @dataProvider getTestsForDump + */ + public function testDump($yaml, $value) + { + $this->assertEquals($yaml, Inline::dump($value), sprintf('::dump() converts a PHP structure to an inline YAML (%s)', $yaml)); - foreach ($testsForDump as $value) { - $this->assertEquals($value, Inline::parse(Inline::dump($value)), 'check consistency'); - } + $this->assertSame($value, Inline::parse(Inline::dump($value)), 'check consistency'); } public function testDumpNumericValueWithLocale() @@ -120,7 +124,7 @@ class InlineTest extends \PHPUnit_Framework_TestCase */ public function testParseReferences($yaml, $expected) { - $this->assertSame($expected, Inline::parse($yaml, false, false, array('var' => 'var-value'))); + $this->assertSame($expected, Inline::parse($yaml, false, false, false, array('var' => 'var-value'))); } public function getDataForParseReferences() @@ -144,7 +148,7 @@ class InlineTest extends \PHPUnit_Framework_TestCase 'b' => 'Clark', 'c' => 'Brian', ); - $this->assertSame(array($foo), Inline::parse('[*foo]', false, false, array('foo' => $foo))); + $this->assertSame(array($foo), Inline::parse('[*foo]', false, false, false, array('foo' => $foo))); } /** @@ -165,117 +169,196 @@ class InlineTest extends \PHPUnit_Framework_TestCase Inline::parse('{ foo: * #foo }'); } - protected function getTestsForParse() + public function getTestsForParse() { return array( - '' => '', - 'null' => null, - 'false' => false, - 'true' => true, - '12' => 12, - '-12' => -12, - '"quoted string"' => 'quoted string', - "'quoted string'" => 'quoted string', - '12.30e+02' => 12.30e+02, - '0x4D2' => 0x4D2, - '02333' => 02333, - '.Inf' => -log(0), - '-.Inf' => log(0), - "'686e444'" => '686e444', - '686e444' => 646e444, - '123456789123456789123456789123456789' => '123456789123456789123456789123456789', - '"foo\r\nbar"' => "foo\r\nbar", - "'foo#bar'" => 'foo#bar', - "'foo # bar'" => 'foo # bar', - "'#cfcfcf'" => '#cfcfcf', - '::form_base.html.twig' => '::form_base.html.twig', - - '2007-10-30' => mktime(0, 0, 0, 10, 30, 2007), - '2007-10-30T02:59:43Z' => gmmktime(2, 59, 43, 10, 30, 2007), - '2007-10-30 02:59:43 Z' => gmmktime(2, 59, 43, 10, 30, 2007), - '1960-10-30 02:59:43 Z' => gmmktime(2, 59, 43, 10, 30, 1960), - '1730-10-30T02:59:43Z' => gmmktime(2, 59, 43, 10, 30, 1730), - - '"a \\"string\\" with \'quoted strings inside\'"' => 'a "string" with \'quoted strings inside\'', - "'a \"string\" with ''quoted strings inside'''" => 'a "string" with \'quoted strings inside\'', + array('', ''), + array('null', null), + array('false', false), + array('true', true), + array('12', 12), + array('-12', -12), + array('"quoted string"', 'quoted string'), + array("'quoted string'", 'quoted string'), + array('12.30e+02', 12.30e+02), + array('0x4D2', 0x4D2), + array('02333', 02333), + array('.Inf', -log(0)), + array('-.Inf', log(0)), + array("'686e444'", '686e444'), + array('686e444', 646e444), + array('123456789123456789123456789123456789', '123456789123456789123456789123456789'), + array('"foo\r\nbar"', "foo\r\nbar"), + array("'foo#bar'", 'foo#bar'), + array("'foo # bar'", 'foo # bar'), + array("'#cfcfcf'", '#cfcfcf'), + array('::form_base.html.twig', '::form_base.html.twig'), + + array('2007-10-30', mktime(0, 0, 0, 10, 30, 2007)), + array('2007-10-30T02:59:43Z', gmmktime(2, 59, 43, 10, 30, 2007)), + array('2007-10-30 02:59:43 Z', gmmktime(2, 59, 43, 10, 30, 2007)), + array('1960-10-30 02:59:43 Z', gmmktime(2, 59, 43, 10, 30, 1960)), + array('1730-10-30T02:59:43Z', gmmktime(2, 59, 43, 10, 30, 1730)), + + array('"a \\"string\\" with \'quoted strings inside\'"', 'a "string" with \'quoted strings inside\''), + array("'a \"string\" with ''quoted strings inside'''", 'a "string" with \'quoted strings inside\''), // sequences // urls are no key value mapping. see #3609. Valid yaml "key: value" mappings require a space after the colon - '[foo, http://urls.are/no/mappings, false, null, 12]' => array('foo', 'http://urls.are/no/mappings', false, null, 12), - '[ foo , bar , false , null , 12 ]' => array('foo', 'bar', false, null, 12), - '[\'foo,bar\', \'foo bar\']' => array('foo,bar', 'foo bar'), + array('[foo, http://urls.are/no/mappings, false, null, 12]', array('foo', 'http://urls.are/no/mappings', false, null, 12)), + array('[ foo , bar , false , null , 12 ]', array('foo', 'bar', false, null, 12)), + array('[\'foo,bar\', \'foo bar\']', array('foo,bar', 'foo bar')), // mappings - '{foo:bar,bar:foo,false:false,null:null,integer:12}' => array('foo' => 'bar', 'bar' => 'foo', 'false' => false, 'null' => null, 'integer' => 12), - '{ foo : bar, bar : foo, false : false, null : null, integer : 12 }' => array('foo' => 'bar', 'bar' => 'foo', 'false' => false, 'null' => null, 'integer' => 12), - '{foo: \'bar\', bar: \'foo: bar\'}' => array('foo' => 'bar', 'bar' => 'foo: bar'), - '{\'foo\': \'bar\', "bar": \'foo: bar\'}' => array('foo' => 'bar', 'bar' => 'foo: bar'), - '{\'foo\'\'\': \'bar\', "bar\"": \'foo: bar\'}' => array('foo\'' => 'bar', "bar\"" => 'foo: bar'), - '{\'foo: \': \'bar\', "bar: ": \'foo: bar\'}' => array('foo: ' => 'bar', "bar: " => 'foo: bar'), + array('{foo:bar,bar:foo,false:false,null:null,integer:12}', array('foo' => 'bar', 'bar' => 'foo', 'false' => false, 'null' => null, 'integer' => 12)), + array('{ foo : bar, bar : foo, false : false, null : null, integer : 12 }', array('foo' => 'bar', 'bar' => 'foo', 'false' => false, 'null' => null, 'integer' => 12)), + array('{foo: \'bar\', bar: \'foo: bar\'}', array('foo' => 'bar', 'bar' => 'foo: bar')), + array('{\'foo\': \'bar\', "bar": \'foo: bar\'}', array('foo' => 'bar', 'bar' => 'foo: bar')), + array('{\'foo\'\'\': \'bar\', "bar\"": \'foo: bar\'}', array('foo\'' => 'bar', "bar\"" => 'foo: bar')), + array('{\'foo: \': \'bar\', "bar: ": \'foo: bar\'}', array('foo: ' => 'bar', "bar: " => 'foo: bar')), // nested sequences and mappings - '[foo, [bar, foo]]' => array('foo', array('bar', 'foo')), - '[foo, {bar: foo}]' => array('foo', array('bar' => 'foo')), - '{ foo: {bar: foo} }' => array('foo' => array('bar' => 'foo')), - '{ foo: [bar, foo] }' => array('foo' => array('bar', 'foo')), + array('[foo, [bar, foo]]', array('foo', array('bar', 'foo'))), + array('[foo, {bar: foo}]', array('foo', array('bar' => 'foo'))), + array('{ foo: {bar: foo} }', array('foo' => array('bar' => 'foo'))), + array('{ foo: [bar, foo] }', array('foo' => array('bar', 'foo'))), + + array('[ foo, [ bar, foo ] ]', array('foo', array('bar', 'foo'))), + + array('[{ foo: {bar: foo} }]', array(array('foo' => array('bar' => 'foo')))), + + array('[foo, [bar, [foo, [bar, foo]], foo]]', array('foo', array('bar', array('foo', array('bar', 'foo')), 'foo'))), + + array('[foo, {bar: foo, foo: [foo, {bar: foo}]}, [foo, {bar: foo}]]', array('foo', array('bar' => 'foo', 'foo' => array('foo', array('bar' => 'foo'))), array('foo', array('bar' => 'foo')))), + + array('[foo, bar: { foo: bar }]', array('foo', '1' => array('bar' => array('foo' => 'bar')))), + array('[foo, \'@foo.baz\', { \'%foo%\': \'foo is %foo%\', bar: \'%foo%\' }, true, \'@service_container\']', array('foo', '@foo.baz', array('%foo%' => 'foo is %foo%', 'bar' => '%foo%'), true, '@service_container')), + ); + } + + public function getTestsForParseWithMapObjects() + { + return array( + array('', ''), + array('null', null), + array('false', false), + array('true', true), + array('12', 12), + array('-12', -12), + array('"quoted string"', 'quoted string'), + array("'quoted string'", 'quoted string'), + array('12.30e+02', 12.30e+02), + array('0x4D2', 0x4D2), + array('02333', 02333), + array('.Inf', -log(0)), + array('-.Inf', log(0)), + array("'686e444'", '686e444'), + array('686e444', 646e444), + array('123456789123456789123456789123456789', '123456789123456789123456789123456789'), + array('"foo\r\nbar"', "foo\r\nbar"), + array("'foo#bar'", 'foo#bar'), + array("'foo # bar'", 'foo # bar'), + array("'#cfcfcf'", '#cfcfcf'), + array('::form_base.html.twig', '::form_base.html.twig'), + + array('2007-10-30', mktime(0, 0, 0, 10, 30, 2007)), + array('2007-10-30T02:59:43Z', gmmktime(2, 59, 43, 10, 30, 2007)), + array('2007-10-30 02:59:43 Z', gmmktime(2, 59, 43, 10, 30, 2007)), + array('1960-10-30 02:59:43 Z', gmmktime(2, 59, 43, 10, 30, 1960)), + array('1730-10-30T02:59:43Z', gmmktime(2, 59, 43, 10, 30, 1730)), + + array('"a \\"string\\" with \'quoted strings inside\'"', 'a "string" with \'quoted strings inside\''), + array("'a \"string\" with ''quoted strings inside'''", 'a "string" with \'quoted strings inside\''), + + // sequences + // urls are no key value mapping. see #3609. Valid yaml "key: value" mappings require a space after the colon + array('[foo, http://urls.are/no/mappings, false, null, 12]', array('foo', 'http://urls.are/no/mappings', false, null, 12)), + array('[ foo , bar , false , null , 12 ]', array('foo', 'bar', false, null, 12)), + array('[\'foo,bar\', \'foo bar\']', array('foo,bar', 'foo bar')), + + // mappings + array('{foo:bar,bar:foo,false:false,null:null,integer:12}', (object) array('foo' => 'bar', 'bar' => 'foo', 'false' => false, 'null' => null, 'integer' => 12)), + array('{ foo : bar, bar : foo, false : false, null : null, integer : 12 }', (object) array('foo' => 'bar', 'bar' => 'foo', 'false' => false, 'null' => null, 'integer' => 12)), + array('{foo: \'bar\', bar: \'foo: bar\'}', (object) array('foo' => 'bar', 'bar' => 'foo: bar')), + array('{\'foo\': \'bar\', "bar": \'foo: bar\'}', (object) array('foo' => 'bar', 'bar' => 'foo: bar')), + array('{\'foo\'\'\': \'bar\', "bar\"": \'foo: bar\'}', (object) array('foo\'' => 'bar', "bar\"" => 'foo: bar')), + array('{\'foo: \': \'bar\', "bar: ": \'foo: bar\'}', (object) array('foo: ' => 'bar', "bar: " => 'foo: bar')), + + // nested sequences and mappings + array('[foo, [bar, foo]]', array('foo', array('bar', 'foo'))), + array('[foo, {bar: foo}]', array('foo', (object) array('bar' => 'foo'))), + array('{ foo: {bar: foo} }', (object) array('foo' => (object) array('bar' => 'foo'))), + array('{ foo: [bar, foo] }', (object) array('foo' => array('bar', 'foo'))), + + array('[ foo, [ bar, foo ] ]', array('foo', array('bar', 'foo'))), + + array('[{ foo: {bar: foo} }]', array((object) array('foo' => (object) array('bar' => 'foo')))), - '[ foo, [ bar, foo ] ]' => array('foo', array('bar', 'foo')), + array('[foo, [bar, [foo, [bar, foo]], foo]]', array('foo', array('bar', array('foo', array('bar', 'foo')), 'foo'))), - '[{ foo: {bar: foo} }]' => array(array('foo' => array('bar' => 'foo'))), + array('[foo, {bar: foo, foo: [foo, {bar: foo}]}, [foo, {bar: foo}]]', array('foo', (object) array('bar' => 'foo', 'foo' => array('foo', (object) array('bar' => 'foo'))), array('foo', (object) array('bar' => 'foo')))), - '[foo, [bar, [foo, [bar, foo]], foo]]' => array('foo', array('bar', array('foo', array('bar', 'foo')), 'foo')), + array('[foo, bar: { foo: bar }]', array('foo', '1' => (object) array('bar' => (object) array('foo' => 'bar')))), + array('[foo, \'@foo.baz\', { \'%foo%\': \'foo is %foo%\', bar: \'%foo%\' }, true, \'@service_container\']', array('foo', '@foo.baz', (object) array('%foo%' => 'foo is %foo%', 'bar' => '%foo%'), true, '@service_container')), - '[foo, {bar: foo, foo: [foo, {bar: foo}]}, [foo, {bar: foo}]]' => array('foo', array('bar' => 'foo', 'foo' => array('foo', array('bar' => 'foo'))), array('foo', array('bar' => 'foo'))), + array('{}', new \stdClass()), + array('{ foo : bar, bar : {} }', (object) array('foo' => 'bar', 'bar' => new \stdClass())), + array('{ foo : [], bar : {} }', (object) array('foo' => array(), 'bar' => new \stdClass())), + array('{foo: \'bar\', bar: {} }', (object) array('foo' => 'bar', 'bar' => new \stdClass())), + array('{\'foo\': \'bar\', "bar": {}}', (object) array('foo' => 'bar', 'bar' => new \stdClass())), + array('{\'foo\': \'bar\', "bar": \'{}\'}', (object) array('foo' => 'bar', 'bar' => '{}')), - '[foo, bar: { foo: bar }]' => array('foo', '1' => array('bar' => array('foo' => 'bar'))), - '[foo, \'@foo.baz\', { \'%foo%\': \'foo is %foo%\', bar: \'%foo%\' }, true, \'@service_container\']' => array('foo', '@foo.baz', array('%foo%' => 'foo is %foo%', 'bar' => '%foo%'), true, '@service_container'), + array('[foo, [{}, {}]]', array('foo', array(new \stdClass(), new \stdClass()))), + array('[foo, [[], {}]]', array('foo', array(array(), new \stdClass()))), + array('[foo, [[{}, {}], {}]]', array('foo', array(array(new \stdClass(), new \stdClass()), new \stdClass()))), + array('[foo, {bar: {}}]', array('foo', '1' => (object) array('bar' => new \stdClass()))), ); } - protected function getTestsForDump() + public function getTestsForDump() { return array( - 'null' => null, - 'false' => false, - 'true' => true, - '12' => 12, - "'quoted string'" => 'quoted string', - '12.30e+02' => 12.30e+02, - '1234' => 0x4D2, - '1243' => 02333, - '.Inf' => -log(0), - '-.Inf' => log(0), - "'686e444'" => '686e444', - '"foo\r\nbar"' => "foo\r\nbar", - "'foo#bar'" => 'foo#bar', - "'foo # bar'" => 'foo # bar', - "'#cfcfcf'" => '#cfcfcf', - - "'a \"string\" with ''quoted strings inside'''" => 'a "string" with \'quoted strings inside\'', - - "'-dash'" => '-dash', - "'-'" => '-', + array('null', null), + array('false', false), + array('true', true), + array('12', 12), + array("'quoted string'", 'quoted string'), + array('!!float 1230', 12.30e+02), + array('1234', 0x4D2), + array('1243', 02333), + array('.Inf', -log(0)), + array('-.Inf', log(0)), + array("'686e444'", '686e444'), + array('"foo\r\nbar"', "foo\r\nbar"), + array("'foo#bar'", 'foo#bar'), + array("'foo # bar'", 'foo # bar'), + array("'#cfcfcf'", '#cfcfcf'), + + array("'a \"string\" with ''quoted strings inside'''", 'a "string" with \'quoted strings inside\''), + + array("'-dash'", '-dash'), + array("'-'", '-'), // sequences - '[foo, bar, false, null, 12]' => array('foo', 'bar', false, null, 12), - '[\'foo,bar\', \'foo bar\']' => array('foo,bar', 'foo bar'), + array('[foo, bar, false, null, 12]', array('foo', 'bar', false, null, 12)), + array('[\'foo,bar\', \'foo bar\']', array('foo,bar', 'foo bar')), // mappings - '{ foo: bar, bar: foo, \'false\': false, \'null\': null, integer: 12 }' => array('foo' => 'bar', 'bar' => 'foo', 'false' => false, 'null' => null, 'integer' => 12), - '{ foo: bar, bar: \'foo: bar\' }' => array('foo' => 'bar', 'bar' => 'foo: bar'), + array('{ foo: bar, bar: foo, \'false\': false, \'null\': null, integer: 12 }', array('foo' => 'bar', 'bar' => 'foo', 'false' => false, 'null' => null, 'integer' => 12)), + array('{ foo: bar, bar: \'foo: bar\' }', array('foo' => 'bar', 'bar' => 'foo: bar')), // nested sequences and mappings - '[foo, [bar, foo]]' => array('foo', array('bar', 'foo')), + array('[foo, [bar, foo]]', array('foo', array('bar', 'foo'))), - '[foo, [bar, [foo, [bar, foo]], foo]]' => array('foo', array('bar', array('foo', array('bar', 'foo')), 'foo')), + array('[foo, [bar, [foo, [bar, foo]], foo]]', array('foo', array('bar', array('foo', array('bar', 'foo')), 'foo'))), - '{ foo: { bar: foo } }' => array('foo' => array('bar' => 'foo')), + array('{ foo: { bar: foo } }', array('foo' => array('bar' => 'foo'))), - '[foo, { bar: foo }]' => array('foo', array('bar' => 'foo')), + array('[foo, { bar: foo }]', array('foo', array('bar' => 'foo'))), - '[foo, { bar: foo, foo: [foo, { bar: foo }] }, [foo, { bar: foo }]]' => array('foo', array('bar' => 'foo', 'foo' => array('foo', array('bar' => 'foo'))), array('foo', array('bar' => 'foo'))), + array('[foo, { bar: foo, foo: [foo, { bar: foo }] }, [foo, { bar: foo }]]', array('foo', array('bar' => 'foo', 'foo' => array('foo', array('bar' => 'foo'))), array('foo', array('bar' => 'foo')))), - '[foo, \'@foo.baz\', { \'%foo%\': \'foo is %foo%\', bar: \'%foo%\' }, true, \'@service_container\']' => array('foo', '@foo.baz', array('%foo%' => 'foo is %foo%', 'bar' => '%foo%'), true, '@service_container'), + array('[foo, \'@foo.baz\', { \'%foo%\': \'foo is %foo%\', bar: \'%foo%\' }, true, \'@service_container\']', array('foo', '@foo.baz', array('%foo%' => 'foo is %foo%', 'bar' => '%foo%'), true, '@service_container')), ); } } diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParseExceptionTest.php b/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParseExceptionTest.php index 289965e8d96..8c2b1a49a93 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParseExceptionTest.php +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParseExceptionTest.php @@ -19,7 +19,7 @@ class ParseExceptionTest extends \PHPUnit_Framework_TestCase public function testGetMessage() { $exception = new ParseException('Error message', 42, 'foo: bar', '/var/www/app/config.yml'); - if (version_compare(PHP_VERSION, '5.4.0', '>=')) { + if (PHP_VERSION_ID >= 50400) { $message = 'Error message in "/var/www/app/config.yml" at line 42 (near "foo: bar")'; } else { $message = 'Error message in "\\/var\\/www\\/app\\/config.yml" at line 42 (near "foo: bar")'; @@ -27,4 +27,16 @@ class ParseExceptionTest extends \PHPUnit_Framework_TestCase $this->assertEquals($message, $exception->getMessage()); } + + public function testGetMessageWithUnicodeInFilename() + { + $exception = new ParseException('Error message', 42, 'foo: bar', 'äöü.yml'); + if (PHP_VERSION_ID >= 50400) { + $message = 'Error message in "äöü.yml" at line 42 (near "foo: bar")'; + } else { + $message = 'Error message in "\u00e4\u00f6\u00fc.yml" at line 42 (near "foo: bar")'; + } + + $this->assertEquals($message, $exception->getMessage()); + } } diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParserTest.php b/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParserTest.php index da248d7dec0..7f16d925e44 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParserTest.php +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/ParserTest.php @@ -482,6 +482,27 @@ EOF; $this->parser->parse($yaml); } + /** + * @expectedException \Symfony\Component\Yaml\Exception\ParseException + * @expectedExceptionMessage Multiple documents are not supported. + */ + public function testMultipleDocumentsNotSupportedException() + { + Yaml::parse(<<<EOL +# Ranking of 1998 home runs +--- +- Mark McGwire +- Sammy Sosa +- Ken Griffey + +# Team ranking +--- +- Chicago Cubs +- St Louis Cardinals +EOL + ); + } + /** * @expectedException \Symfony\Component\Yaml\Exception\ParseException */ @@ -624,7 +645,7 @@ EOF public function testNestedFoldedStringBlockWithComments() { $this->assertEquals(array(array( - 'title' => 'some title', + 'title' => 'some title', 'content' => <<<EOT # comment 1 header diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Yaml.php b/vendor/symfony/yaml/Symfony/Component/Yaml/Yaml.php index 61793fb3ae4..419226a2dd8 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/Yaml.php +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/Yaml.php @@ -38,9 +38,9 @@ class Yaml * you must validate the input before calling this method. Passing a file * as an input is a deprecated feature and will be removed in 3.0. * - * @param string $input Path to a YAML file or a string containing YAML - * @param bool $exceptionOnInvalidType True if an exception must be thrown on invalid types false otherwise - * @param bool $objectSupport True if object support is enabled, false otherwise + * @param string $input Path to a YAML file or a string containing YAML + * @param bool $exceptionOnInvalidType True if an exception must be thrown on invalid types false otherwise + * @param bool $objectSupport True if object support is enabled, false otherwise * * @return array The YAML converted to a PHP array * @@ -80,11 +80,11 @@ class Yaml * The dump method, when supplied with an array, will do its best * to convert the array into friendly YAML. * - * @param array $array PHP array - * @param int $inline The level where you switch to inline YAML - * @param int $indent The amount of spaces to use for indentation of nested nodes. - * @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise - * @param bool $objectSupport true if object support is enabled, false otherwise + * @param array $array PHP array + * @param int $inline The level where you switch to inline YAML + * @param int $indent The amount of spaces to use for indentation of nested nodes. + * @param bool $exceptionOnInvalidType true if an exception must be thrown on invalid types (a PHP resource or object), false otherwise + * @param bool $objectSupport true if object support is enabled, false otherwise * * @return string A YAML string representing the original PHP array * diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/composer.json b/vendor/symfony/yaml/Symfony/Component/Yaml/composer.json index ceabb0c132e..2b2d961b7b3 100644 --- a/vendor/symfony/yaml/Symfony/Component/Yaml/composer.json +++ b/vendor/symfony/yaml/Symfony/Component/Yaml/composer.json @@ -25,7 +25,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-master": "2.5-dev" + "dev-master": "2.6-dev" } } } -- GitLab