From c7f173456b2997ef4f2f4ba23865305e78792d30 Mon Sep 17 00:00:00 2001 From: Christian Kerl Date: Fri, 8 Oct 2010 17:01:27 +0200 Subject: [PATCH] added header comment --- .../DocumentLiteralWrappedRequestMessageBinder.php | 8 ++++++++ .../DocumentLiteralWrappedResponseMessageBinder.php | 8 ++++++++ ServiceBinding/MessageBinderInterface.php | 8 ++++++++ ServiceBinding/RpcLiteralRequestMessageBinder.php | 8 ++++++++ ServiceBinding/RpcLiteralResponseMessageBinder.php | 8 ++++++++ ServiceBinding/ServiceBinder.php | 8 ++++++++ ServiceDefinition/Argument.php | 8 ++++++++ ServiceDefinition/Dumper/DumperInterface.php | 8 ++++++++ ServiceDefinition/Header.php | 8 ++++++++ ServiceDefinition/Loader/FileLoader.php | 8 ++++++++ ServiceDefinition/Loader/LoaderInterface.php | 8 ++++++++ ServiceDefinition/Loader/XmlFileLoader.php | 8 ++++++++ ServiceDefinition/Method.php | 8 ++++++++ ServiceDefinition/ServiceDefinition.php | 8 ++++++++ ServiceDefinition/Type.php | 8 ++++++++ Soap/SoapAttachment.php | 8 ++++++++ Soap/SoapHeader.php | 8 ++++++++ Tests/StaticFileDumper.php | 8 ++++++++ Util/Collection.php | 8 ++++++++ 19 files changed, 152 insertions(+) diff --git a/ServiceBinding/DocumentLiteralWrappedRequestMessageBinder.php b/ServiceBinding/DocumentLiteralWrappedRequestMessageBinder.php index 6401d19..59409eb 100644 --- a/ServiceBinding/DocumentLiteralWrappedRequestMessageBinder.php +++ b/ServiceBinding/DocumentLiteralWrappedRequestMessageBinder.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceBinding; diff --git a/ServiceBinding/DocumentLiteralWrappedResponseMessageBinder.php b/ServiceBinding/DocumentLiteralWrappedResponseMessageBinder.php index 7ff4910..9138fe2 100644 --- a/ServiceBinding/DocumentLiteralWrappedResponseMessageBinder.php +++ b/ServiceBinding/DocumentLiteralWrappedResponseMessageBinder.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceBinding; diff --git a/ServiceBinding/MessageBinderInterface.php b/ServiceBinding/MessageBinderInterface.php index 867c781..876fb99 100644 --- a/ServiceBinding/MessageBinderInterface.php +++ b/ServiceBinding/MessageBinderInterface.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceBinding; diff --git a/ServiceBinding/RpcLiteralRequestMessageBinder.php b/ServiceBinding/RpcLiteralRequestMessageBinder.php index 3ab5016..50590f7 100644 --- a/ServiceBinding/RpcLiteralRequestMessageBinder.php +++ b/ServiceBinding/RpcLiteralRequestMessageBinder.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceBinding; diff --git a/ServiceBinding/RpcLiteralResponseMessageBinder.php b/ServiceBinding/RpcLiteralResponseMessageBinder.php index b04c14f..970d587 100644 --- a/ServiceBinding/RpcLiteralResponseMessageBinder.php +++ b/ServiceBinding/RpcLiteralResponseMessageBinder.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceBinding; diff --git a/ServiceBinding/ServiceBinder.php b/ServiceBinding/ServiceBinder.php index 8bd5e8e..207cecf 100644 --- a/ServiceBinding/ServiceBinder.php +++ b/ServiceBinding/ServiceBinder.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceBinding; diff --git a/ServiceDefinition/Argument.php b/ServiceDefinition/Argument.php index 4f812ec..5a715d2 100644 --- a/ServiceDefinition/Argument.php +++ b/ServiceDefinition/Argument.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceDefinition; diff --git a/ServiceDefinition/Dumper/DumperInterface.php b/ServiceDefinition/Dumper/DumperInterface.php index 9cb12ee..4ae8701 100644 --- a/ServiceDefinition/Dumper/DumperInterface.php +++ b/ServiceDefinition/Dumper/DumperInterface.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceDefinition\Dumper; diff --git a/ServiceDefinition/Header.php b/ServiceDefinition/Header.php index 42ef3e2..ef450a2 100644 --- a/ServiceDefinition/Header.php +++ b/ServiceDefinition/Header.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceDefinition; diff --git a/ServiceDefinition/Loader/FileLoader.php b/ServiceDefinition/Loader/FileLoader.php index 0c2564d..9a54e2c 100644 --- a/ServiceDefinition/Loader/FileLoader.php +++ b/ServiceDefinition/Loader/FileLoader.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceDefinition\Loader; diff --git a/ServiceDefinition/Loader/LoaderInterface.php b/ServiceDefinition/Loader/LoaderInterface.php index d3e2a2e..c7f25c3 100644 --- a/ServiceDefinition/Loader/LoaderInterface.php +++ b/ServiceDefinition/Loader/LoaderInterface.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceDefinition\Loader; diff --git a/ServiceDefinition/Loader/XmlFileLoader.php b/ServiceDefinition/Loader/XmlFileLoader.php index b35a265..0c9d354 100644 --- a/ServiceDefinition/Loader/XmlFileLoader.php +++ b/ServiceDefinition/Loader/XmlFileLoader.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceDefinition\Loader; diff --git a/ServiceDefinition/Method.php b/ServiceDefinition/Method.php index 1a157fe..9f2fb9a 100644 --- a/ServiceDefinition/Method.php +++ b/ServiceDefinition/Method.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceDefinition; diff --git a/ServiceDefinition/ServiceDefinition.php b/ServiceDefinition/ServiceDefinition.php index 1446275..e116372 100644 --- a/ServiceDefinition/ServiceDefinition.php +++ b/ServiceDefinition/ServiceDefinition.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceDefinition; diff --git a/ServiceDefinition/Type.php b/ServiceDefinition/Type.php index f4e33de..176f748 100644 --- a/ServiceDefinition/Type.php +++ b/ServiceDefinition/Type.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\ServiceDefinition; diff --git a/Soap/SoapAttachment.php b/Soap/SoapAttachment.php index 4103652..d9d07db 100644 --- a/Soap/SoapAttachment.php +++ b/Soap/SoapAttachment.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\Soap; diff --git a/Soap/SoapHeader.php b/Soap/SoapHeader.php index 5cf895b..9c926ec 100644 --- a/Soap/SoapHeader.php +++ b/Soap/SoapHeader.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\Soap; diff --git a/Tests/StaticFileDumper.php b/Tests/StaticFileDumper.php index dd28739..82675ed 100644 --- a/Tests/StaticFileDumper.php +++ b/Tests/StaticFileDumper.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\Tests; diff --git a/Util/Collection.php b/Util/Collection.php index 2ed42cb..5afe7d9 100644 --- a/Util/Collection.php +++ b/Util/Collection.php @@ -1,4 +1,12 @@ + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ namespace Bundle\WebServiceBundle\Util;