From 5ae1c29836e57550c06e49b197ee87c2d11ddc7c Mon Sep 17 00:00:00 2001 From: Bryan Crowe Date: Sat, 19 Apr 2014 20:44:17 -0400 Subject: [PATCH] Update copyright statements in docblocks --- src/Console/Error/ConsoleException.php | 4 ++-- src/Console/Error/MissingShellException.php | 4 ++-- src/Console/Error/MissingShellMethodException.php | 4 ++-- src/Console/Error/MissingTaskException.php | 4 ++-- src/Controller/Error/MissingActionException.php | 4 ++-- src/Controller/Error/MissingComponentException.php | 4 ++-- src/Controller/Error/MissingControllerException.php | 4 ++-- src/Controller/Error/PrivateActionException.php | 4 ++-- src/Core/Error/MissingPluginException.php | 4 ++-- src/Datasource/Error/MissingDatasourceConfigException.php | 4 ++-- src/Datasource/Error/MissingDatasourceException.php | 4 ++-- src/Error/BadRequestException.php | 4 ++-- src/Error/BaseException.php | 4 ++-- src/Error/Exception.php | 4 ++-- src/Error/FatalErrorException.php | 4 ++-- src/Error/ForbiddenException.php | 4 ++-- src/Error/HttpException.php | 4 ++-- src/Error/InternalErrorException.php | 4 ++-- src/Error/MethodNotAllowedException.php | 4 ++-- src/Error/NotFoundException.php | 4 ++-- src/Error/NotImplementedException.php | 4 ++-- src/Error/UnauthorizedException.php | 4 ++-- src/Log/Log.php | 4 ++-- src/Log/LogTrait.php | 4 ++-- src/Network/Error/SocketException.php | 4 ++-- src/Network/Http/Adapter/Stream.php | 4 ++-- src/Network/Http/Auth/Basic.php | 4 ++-- src/Network/Http/Auth/Digest.php | 4 ++-- src/Network/Http/Auth/Oauth.php | 4 ++-- src/Network/Http/Client.php | 4 ++-- src/Network/Http/Cookies.php | 4 ++-- src/Network/Http/FormData.php | 4 ++-- src/Network/Http/FormData/Part.php | 4 ++-- src/Network/Http/Message.php | 4 ++-- src/Network/Http/Request.php | 4 ++-- src/Network/Http/Response.php | 4 ++-- src/ORM/Error/MissingBehaviorException.php | 4 ++-- src/ORM/Error/MissingTableClassException.php | 2 +- src/Routing/Error/MissingDispatcherFilterException.php | 4 ++-- src/Routing/RequestActionTrait.php | 4 ++-- src/Routing/RouteCollection.php | 4 ++-- src/Utility/Error/XmlException.php | 4 ++-- src/View/Error/MissingHelperException.php | 4 ++-- src/View/Error/MissingLayoutException.php | 4 ++-- src/View/Error/MissingViewException.php | 4 ++-- tests/TestCase/Core/AppTest.php | 4 ++-- tests/TestCase/Core/PluginTest.php | 4 ++-- tests/TestCase/Database/Expression/FunctionExpressionTest.php | 2 +- tests/TestCase/Database/FunctionsBuilderTest.php | 2 +- tests/TestCase/Log/Engine/ConsoleLogTest.php | 4 ++-- tests/TestCase/Log/LogTest.php | 4 ++-- tests/TestCase/Log/LogTraitTest.php | 4 ++-- tests/TestCase/Network/Http/Adapter/StreamTest.php | 4 ++-- tests/TestCase/Network/Http/Auth/DigestTest.php | 4 ++-- tests/TestCase/Network/Http/Auth/OauthTest.php | 4 ++-- tests/TestCase/Network/Http/ClientTest.php | 4 ++-- tests/TestCase/Network/Http/CookiesTest.php | 4 ++-- tests/TestCase/Network/Http/FormDataTest.php | 4 ++-- tests/TestCase/Network/Http/RequestTest.php | 4 ++-- tests/TestCase/Network/Http/ResponseTest.php | 4 ++-- tests/TestCase/Routing/DispatcherTest.php | 4 ++-- tests/TestCase/Routing/Filter/AssetDispatcherTest.php | 4 ++-- tests/TestCase/Routing/RequestActionTraitTest.php | 4 ++-- tests/TestCase/Utility/StringTest.php | 4 ++-- tests/bootstrap.php | 2 +- .../test_app/Plugin/Company/TestPluginThree/Utility/Hello.php | 4 ++-- .../Plugin/TestPlugin/Controller/Admin/CommentsController.php | 4 ++-- tests/test_app/Plugin/TestPlugin/View/Cell/DummyCell.php | 4 ++-- tests/test_app/TestApp/Controller/AbstractController.php | 4 ++-- tests/test_app/TestApp/Controller/Admin/PostsController.php | 4 ++-- tests/test_app/TestApp/Controller/CommentsController.php | 4 ++-- .../test_app/TestApp/Controller/Component/AppleComponent.php | 4 ++-- .../Controller/Component/SomethingWithCookieComponent.php | 4 ++-- .../TestApp/Controller/OrangeSessionTestController.php | 4 ++-- tests/test_app/TestApp/Controller/SessionTestController.php | 4 ++-- tests/test_app/TestApp/Controller/SomePagesController.php | 4 ++-- tests/test_app/TestApp/Controller/SomePostsController.php | 4 ++-- .../TestApp/Controller/TestDispatchPagesController.php | 4 ++-- tests/test_app/TestApp/View/Cell/ArticlesCell.php | 4 ++-- tests/test_app/TestApp/View/CustomJsonView.php | 4 ++-- 80 files changed, 156 insertions(+), 156 deletions(-) diff --git a/src/Console/Error/ConsoleException.php b/src/Console/Error/ConsoleException.php index 2e63635ea0d..e9b7a648e6b 100644 --- a/src/Console/Error/ConsoleException.php +++ b/src/Console/Error/ConsoleException.php @@ -1,12 +1,12 @@ - * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The Open Group Test Suite License * Redistributions of files must retain the above copyright notice. diff --git a/tests/TestCase/Database/FunctionsBuilderTest.php b/tests/TestCase/Database/FunctionsBuilderTest.php index 5eb90a83053..5f5cd467b66 100644 --- a/tests/TestCase/Database/FunctionsBuilderTest.php +++ b/tests/TestCase/Database/FunctionsBuilderTest.php @@ -1,7 +1,7 @@ - * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The Open Group Test Suite License * Redistributions of files must retain the above copyright notice. diff --git a/tests/TestCase/Log/Engine/ConsoleLogTest.php b/tests/TestCase/Log/Engine/ConsoleLogTest.php index 80639c22785..96722b923d5 100644 --- a/tests/TestCase/Log/Engine/ConsoleLogTest.php +++ b/tests/TestCase/Log/Engine/ConsoleLogTest.php @@ -1,12 +1,12 @@ - * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice * - * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests * @since 1.3.0 * @license MIT License (http://www.opensource.org/licenses/mit-license.php) diff --git a/tests/TestCase/Log/LogTest.php b/tests/TestCase/Log/LogTest.php index fc70109a90d..f42891fcdd8 100644 --- a/tests/TestCase/Log/LogTest.php +++ b/tests/TestCase/Log/LogTest.php @@ -1,12 +1,12 @@ - * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice * - * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests * @since 1.2.0 * @license MIT License (http://www.opensource.org/licenses/mit-license.php) diff --git a/tests/TestCase/Log/LogTraitTest.php b/tests/TestCase/Log/LogTraitTest.php index bb155db71f4..d734f86c4f0 100644 --- a/tests/TestCase/Log/LogTraitTest.php +++ b/tests/TestCase/Log/LogTraitTest.php @@ -1,12 +1,12 @@ - * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice * - * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests * @since 1.2.0 * @license MIT License (http://www.opensource.org/licenses/mit-license.php) diff --git a/tests/TestCase/Routing/Filter/AssetDispatcherTest.php b/tests/TestCase/Routing/Filter/AssetDispatcherTest.php index bd37dea97a0..d78a3233294 100644 --- a/tests/TestCase/Routing/Filter/AssetDispatcherTest.php +++ b/tests/TestCase/Routing/Filter/AssetDispatcherTest.php @@ -1,12 +1,12 @@ - * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The Open Group Test Suite License * Redistributions of files must retain the above copyright notice. * - * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests * @since 2.2.0 * @license MIT License (http://www.opensource.org/licenses/mit-license.php) diff --git a/tests/TestCase/Routing/RequestActionTraitTest.php b/tests/TestCase/Routing/RequestActionTraitTest.php index 5ca70c54e24..9077477cd1f 100644 --- a/tests/TestCase/Routing/RequestActionTraitTest.php +++ b/tests/TestCase/Routing/RequestActionTraitTest.php @@ -1,12 +1,12 @@ - * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice * - * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests * @since 3.0.0 * @license MIT License (http://www.opensource.org/licenses/mit-license.php) diff --git a/tests/test_app/Plugin/TestPlugin/Controller/Admin/CommentsController.php b/tests/test_app/Plugin/TestPlugin/Controller/Admin/CommentsController.php index 0fca68c8cc0..d4f72e9beb9 100644 --- a/tests/test_app/Plugin/TestPlugin/Controller/Admin/CommentsController.php +++ b/tests/test_app/Plugin/TestPlugin/Controller/Admin/CommentsController.php @@ -1,12 +1,12 @@