From ffa43f3c3b9f44db5efb9831287bef68a80e1432 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 19 Apr 2014 18:16:55 +0200 Subject: update headers to be compatible with phpdoc, slim down license text to make code more visible --- tests/classloader.php | 24 +++++----------- tests/unit/articleenhancer/EnhancerTest.php | 32 +++++++--------------- .../articleenhancer/RegexArticleEnhancerTest.php | 32 +++++++--------------- .../articleenhancer/XPathArticleEnhancerTest.php | 32 +++++++--------------- tests/unit/businesslayer/BusinessLayerTest.php | 32 +++++++--------------- tests/unit/businesslayer/FeedBusinessLayerTest.php | 32 +++++++--------------- .../unit/businesslayer/FolderBusinessLayerTest.php | 32 +++++++--------------- tests/unit/businesslayer/ItemBusinessLayerTest.php | 32 +++++++--------------- tests/unit/businesslayer/StatusFlagTest.php | 32 +++++++--------------- tests/unit/controller/ApiControllerTest.php | 32 +++++++--------------- tests/unit/controller/ExportControllerTest.php | 32 +++++++--------------- tests/unit/controller/FeedApiControllerTest.php | 32 +++++++--------------- tests/unit/controller/FeedControllerTest.php | 32 +++++++--------------- tests/unit/controller/FolderApiControllerTest.php | 32 +++++++--------------- tests/unit/controller/FolderControllerTest.php | 32 +++++++--------------- tests/unit/controller/ItemApiControllerTest.php | 32 +++++++--------------- tests/unit/controller/ItemControllerTest.php | 32 +++++++--------------- tests/unit/controller/PageControllerTest.php | 32 +++++++--------------- tests/unit/db/EntityTest.php | 32 +++++++--------------- tests/unit/db/FeedMapperTest.php | 32 +++++++--------------- tests/unit/db/FeedTest.php | 32 +++++++--------------- tests/unit/db/FolderMapperTest.php | 32 +++++++--------------- tests/unit/db/FolderTest.php | 32 +++++++--------------- tests/unit/db/ItemMapperTest.php | 32 +++++++--------------- tests/unit/db/ItemTest.php | 32 +++++++--------------- tests/unit/db/MapperFactoryTest.php | 32 +++++++--------------- tests/unit/db/MapperTest.php | 22 ++++----------- tests/unit/db/postgres/ItemMapperTest.php | 32 +++++++--------------- tests/unit/fetcher/FeedFetcherTest.php | 32 +++++++--------------- tests/unit/http/DownloadResponseTest.php | 22 ++++----------- tests/unit/http/TextDownloadResponseTest.php | 22 ++++----------- tests/unit/http/TextResponseTest.php | 22 ++++----------- tests/unit/middleware/CORSMiddlewareTest.php | 22 ++++----------- tests/unit/utility/ConfigTest.php | 32 +++++++--------------- tests/unit/utility/FaviconFetcherTest.php | 22 ++++----------- tests/unit/utility/MethodAnnotationReaderTest.php | 22 ++++----------- tests/unit/utility/OPMLExporterTest.php | 32 +++++++--------------- tests/unit/utility/UpdaterTest.php | 32 +++++++--------------- 38 files changed, 349 insertions(+), 789 deletions(-) (limited to 'tests') diff --git a/tests/classloader.php b/tests/classloader.php index b59ecd85a..bca9c21ea 100644 --- a/tests/classloader.php +++ b/tests/classloader.php @@ -1,24 +1,14 @@ . + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 */ require_once __DIR__ . '/../3rdparty/simplepie/autoloader.php'; diff --git a/tests/unit/articleenhancer/EnhancerTest.php b/tests/unit/articleenhancer/EnhancerTest.php index 663714590..31133dc4a 100644 --- a/tests/unit/articleenhancer/EnhancerTest.php +++ b/tests/unit/articleenhancer/EnhancerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\ArticleEnhancer; diff --git a/tests/unit/articleenhancer/RegexArticleEnhancerTest.php b/tests/unit/articleenhancer/RegexArticleEnhancerTest.php index 38c570cfb..b88abc985 100644 --- a/tests/unit/articleenhancer/RegexArticleEnhancerTest.php +++ b/tests/unit/articleenhancer/RegexArticleEnhancerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\ArticleEnhancer; diff --git a/tests/unit/articleenhancer/XPathArticleEnhancerTest.php b/tests/unit/articleenhancer/XPathArticleEnhancerTest.php index dd84c31fd..a0120a6f3 100644 --- a/tests/unit/articleenhancer/XPathArticleEnhancerTest.php +++ b/tests/unit/articleenhancer/XPathArticleEnhancerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\ArticleEnhancer; diff --git a/tests/unit/businesslayer/BusinessLayerTest.php b/tests/unit/businesslayer/BusinessLayerTest.php index 54ca11cba..e55badcf2 100644 --- a/tests/unit/businesslayer/BusinessLayerTest.php +++ b/tests/unit/businesslayer/BusinessLayerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\BusinessLayer; diff --git a/tests/unit/businesslayer/FeedBusinessLayerTest.php b/tests/unit/businesslayer/FeedBusinessLayerTest.php index f856f2ca6..1f4f4daa0 100644 --- a/tests/unit/businesslayer/FeedBusinessLayerTest.php +++ b/tests/unit/businesslayer/FeedBusinessLayerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\BusinessLayer; diff --git a/tests/unit/businesslayer/FolderBusinessLayerTest.php b/tests/unit/businesslayer/FolderBusinessLayerTest.php index 22b9e53d0..c66bb9453 100644 --- a/tests/unit/businesslayer/FolderBusinessLayerTest.php +++ b/tests/unit/businesslayer/FolderBusinessLayerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\BusinessLayer; diff --git a/tests/unit/businesslayer/ItemBusinessLayerTest.php b/tests/unit/businesslayer/ItemBusinessLayerTest.php index f0f9d1906..7ad3dc16e 100644 --- a/tests/unit/businesslayer/ItemBusinessLayerTest.php +++ b/tests/unit/businesslayer/ItemBusinessLayerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\BusinessLayer; diff --git a/tests/unit/businesslayer/StatusFlagTest.php b/tests/unit/businesslayer/StatusFlagTest.php index d96f40a6b..2e295b3d4 100644 --- a/tests/unit/businesslayer/StatusFlagTest.php +++ b/tests/unit/businesslayer/StatusFlagTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Db; diff --git a/tests/unit/controller/ApiControllerTest.php b/tests/unit/controller/ApiControllerTest.php index 6aa6ee4ea..79a7d02e9 100644 --- a/tests/unit/controller/ApiControllerTest.php +++ b/tests/unit/controller/ApiControllerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Controller; diff --git a/tests/unit/controller/ExportControllerTest.php b/tests/unit/controller/ExportControllerTest.php index bc3baf4cf..2fbd8d272 100644 --- a/tests/unit/controller/ExportControllerTest.php +++ b/tests/unit/controller/ExportControllerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Controller; diff --git a/tests/unit/controller/FeedApiControllerTest.php b/tests/unit/controller/FeedApiControllerTest.php index 752eb575b..fdd507258 100644 --- a/tests/unit/controller/FeedApiControllerTest.php +++ b/tests/unit/controller/FeedApiControllerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Controller; diff --git a/tests/unit/controller/FeedControllerTest.php b/tests/unit/controller/FeedControllerTest.php index 2135c5366..f25d4beed 100644 --- a/tests/unit/controller/FeedControllerTest.php +++ b/tests/unit/controller/FeedControllerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Controller; diff --git a/tests/unit/controller/FolderApiControllerTest.php b/tests/unit/controller/FolderApiControllerTest.php index 702699b98..aa134f58e 100644 --- a/tests/unit/controller/FolderApiControllerTest.php +++ b/tests/unit/controller/FolderApiControllerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Controller; diff --git a/tests/unit/controller/FolderControllerTest.php b/tests/unit/controller/FolderControllerTest.php index 142f8e2c4..04345aa84 100644 --- a/tests/unit/controller/FolderControllerTest.php +++ b/tests/unit/controller/FolderControllerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Controller; diff --git a/tests/unit/controller/ItemApiControllerTest.php b/tests/unit/controller/ItemApiControllerTest.php index ead262cd4..90f7a9680 100644 --- a/tests/unit/controller/ItemApiControllerTest.php +++ b/tests/unit/controller/ItemApiControllerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Controller; diff --git a/tests/unit/controller/ItemControllerTest.php b/tests/unit/controller/ItemControllerTest.php index c3296b2f6..c28eac9fa 100644 --- a/tests/unit/controller/ItemControllerTest.php +++ b/tests/unit/controller/ItemControllerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Controller; diff --git a/tests/unit/controller/PageControllerTest.php b/tests/unit/controller/PageControllerTest.php index 03ac1aa61..898226361 100644 --- a/tests/unit/controller/PageControllerTest.php +++ b/tests/unit/controller/PageControllerTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Controller; diff --git a/tests/unit/db/EntityTest.php b/tests/unit/db/EntityTest.php index c57d9997e..8356e0336 100644 --- a/tests/unit/db/EntityTest.php +++ b/tests/unit/db/EntityTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Db; diff --git a/tests/unit/db/FeedMapperTest.php b/tests/unit/db/FeedMapperTest.php index 4e78dbf3a..35433bf31 100644 --- a/tests/unit/db/FeedMapperTest.php +++ b/tests/unit/db/FeedMapperTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Db; diff --git a/tests/unit/db/FeedTest.php b/tests/unit/db/FeedTest.php index 0a3226b98..8e627c753 100644 --- a/tests/unit/db/FeedTest.php +++ b/tests/unit/db/FeedTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Db; diff --git a/tests/unit/db/FolderMapperTest.php b/tests/unit/db/FolderMapperTest.php index 9254bf493..5389800aa 100644 --- a/tests/unit/db/FolderMapperTest.php +++ b/tests/unit/db/FolderMapperTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Db; diff --git a/tests/unit/db/FolderTest.php b/tests/unit/db/FolderTest.php index 9899f2305..9c59cdeec 100644 --- a/tests/unit/db/FolderTest.php +++ b/tests/unit/db/FolderTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Db; diff --git a/tests/unit/db/ItemMapperTest.php b/tests/unit/db/ItemMapperTest.php index bf8210f5f..35b371526 100644 --- a/tests/unit/db/ItemMapperTest.php +++ b/tests/unit/db/ItemMapperTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Db; diff --git a/tests/unit/db/ItemTest.php b/tests/unit/db/ItemTest.php index dab4fdd90..b979450aa 100644 --- a/tests/unit/db/ItemTest.php +++ b/tests/unit/db/ItemTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Db; diff --git a/tests/unit/db/MapperFactoryTest.php b/tests/unit/db/MapperFactoryTest.php index 5f07f7cbb..3e82c1555 100644 --- a/tests/unit/db/MapperFactoryTest.php +++ b/tests/unit/db/MapperFactoryTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Db; diff --git a/tests/unit/db/MapperTest.php b/tests/unit/db/MapperTest.php index 1f41c2ba0..b25fc4fcc 100644 --- a/tests/unit/db/MapperTest.php +++ b/tests/unit/db/MapperTest.php @@ -1,24 +1,14 @@ . + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 */ diff --git a/tests/unit/db/postgres/ItemMapperTest.php b/tests/unit/db/postgres/ItemMapperTest.php index 2fbd7a71a..796a59f5f 100644 --- a/tests/unit/db/postgres/ItemMapperTest.php +++ b/tests/unit/db/postgres/ItemMapperTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Db\Postgres; diff --git a/tests/unit/fetcher/FeedFetcherTest.php b/tests/unit/fetcher/FeedFetcherTest.php index 7972a47b1..714e1d1de 100644 --- a/tests/unit/fetcher/FeedFetcherTest.php +++ b/tests/unit/fetcher/FeedFetcherTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Fetcher; diff --git a/tests/unit/http/DownloadResponseTest.php b/tests/unit/http/DownloadResponseTest.php index f72505bd3..82884ab85 100644 --- a/tests/unit/http/DownloadResponseTest.php +++ b/tests/unit/http/DownloadResponseTest.php @@ -1,24 +1,14 @@ . + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 */ diff --git a/tests/unit/http/TextDownloadResponseTest.php b/tests/unit/http/TextDownloadResponseTest.php index 3363c1df5..c7f2e211f 100644 --- a/tests/unit/http/TextDownloadResponseTest.php +++ b/tests/unit/http/TextDownloadResponseTest.php @@ -1,24 +1,14 @@ . + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 */ diff --git a/tests/unit/http/TextResponseTest.php b/tests/unit/http/TextResponseTest.php index ccffb9a1b..01241065f 100644 --- a/tests/unit/http/TextResponseTest.php +++ b/tests/unit/http/TextResponseTest.php @@ -1,24 +1,14 @@ . + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 */ diff --git a/tests/unit/middleware/CORSMiddlewareTest.php b/tests/unit/middleware/CORSMiddlewareTest.php index 96a50d88c..ccc0420ca 100644 --- a/tests/unit/middleware/CORSMiddlewareTest.php +++ b/tests/unit/middleware/CORSMiddlewareTest.php @@ -1,24 +1,14 @@ . + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 */ diff --git a/tests/unit/utility/ConfigTest.php b/tests/unit/utility/ConfigTest.php index 8dd64ac7b..186177489 100644 --- a/tests/unit/utility/ConfigTest.php +++ b/tests/unit/utility/ConfigTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Utility; diff --git a/tests/unit/utility/FaviconFetcherTest.php b/tests/unit/utility/FaviconFetcherTest.php index 875fcf11d..3dbb441f0 100644 --- a/tests/unit/utility/FaviconFetcherTest.php +++ b/tests/unit/utility/FaviconFetcherTest.php @@ -1,24 +1,14 @@ . + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 */ diff --git a/tests/unit/utility/MethodAnnotationReaderTest.php b/tests/unit/utility/MethodAnnotationReaderTest.php index d41224ffa..57d6e921e 100644 --- a/tests/unit/utility/MethodAnnotationReaderTest.php +++ b/tests/unit/utility/MethodAnnotationReaderTest.php @@ -1,24 +1,14 @@ . + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 */ diff --git a/tests/unit/utility/OPMLExporterTest.php b/tests/unit/utility/OPMLExporterTest.php index eb9384f27..958beaaa8 100644 --- a/tests/unit/utility/OPMLExporterTest.php +++ b/tests/unit/utility/OPMLExporterTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Utility; diff --git a/tests/unit/utility/UpdaterTest.php b/tests/unit/utility/UpdaterTest.php index 2e6b03351..68acb0d47 100644 --- a/tests/unit/utility/UpdaterTest.php +++ b/tests/unit/utility/UpdaterTest.php @@ -1,27 +1,15 @@ . -* -*/ + * ownCloud - News + * + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Alessandro Cosentino + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ namespace OCA\News\Utility; -- cgit v1.2.3