From a99510f06c41b76c93abe7317e919e1c363208d3 Mon Sep 17 00:00:00 2001 From: Art4 Date: Tue, 2 Jan 2018 09:53:15 +0100 Subject: [PATCH] bump year --- bootstrap.php | 2 +- download.php | 2 +- feed.php | 2 +- getimage.php | 2 +- getvideo.php | 2 +- index.php | 2 +- src/Application/App.php | 2 +- src/Application/Controller.php | 2 +- src/Application/ControllerAbstract.php | 2 +- src/Application/ControllerFactory.php | 2 +- src/Application/DownloadController.php | 2 +- src/Application/FeedController.php | 2 +- src/Application/ImageController.php | 2 +- src/Application/MainController.php | 2 +- src/Application/ResultController.php | 2 +- src/Cache/Cache.php | 2 +- src/Cache/CacheAware.php | 2 +- src/Cache/CacheAwareTrait.php | 2 +- src/Cache/CacheException.php | 2 +- src/Cache/FileCache.php | 2 +- src/Cache/InvalidArgumentException.php | 2 +- src/Cache/NullCache.php | 2 +- src/Config.php | 2 +- src/Container/Container.php | 2 +- src/Container/ContainerException.php | 2 +- src/Container/NotFoundException.php | 2 +- src/Container/SimpleContainer.php | 2 +- src/Http/Client.php | 2 +- src/Http/CurlClient.php | 2 +- src/Http/HttpClientAware.php | 2 +- src/Http/HttpClientAwareTrait.php | 2 +- src/Http/Message/Message.php | 2 +- src/Http/Message/Request.php | 2 +- src/Http/Message/Response.php | 2 +- src/Http/Message/ServerRequest.php | 2 +- src/Http/MessageTrait.php | 2 +- src/Http/Request.php | 2 +- src/Http/Response.php | 2 +- src/Logger/Handler/Entry.php | 2 +- src/Logger/Handler/Handler.php | 2 +- src/Logger/Handler/NullHandler.php | 2 +- src/Logger/Handler/SimpleEntry.php | 2 +- src/Logger/Handler/StreamHandler.php | 2 +- src/Logger/HandlerAwareLogger.php | 2 +- src/Logger/LogLevel.php | 2 +- src/Logger/Logger.php | 2 +- src/Logger/LoggerAware.php | 2 +- src/Logger/LoggerAwareTrait.php | 2 +- src/Logger/NullLogger.php | 2 +- src/Provider/Youtube/Format.php | 2 +- src/Provider/Youtube/Provider.php | 2 +- src/Provider/Youtube/SignatureDecipher.php | 2 +- src/Provider/Youtube/VideoInfo.php | 2 +- src/ServiceProvider.php | 2 +- src/Template/Engine.php | 2 +- src/Template/Template.php | 2 +- src/Toolkit.php | 2 +- src/VideoInfo/Exception.php | 2 +- src/VideoInfo/Format.php | 2 +- src/VideoInfo/InvalidInputException.php | 2 +- src/VideoInfo/Provider.php | 2 +- src/VideoInfo/VideoInfo.php | 2 +- tests/Fixture/Cache/DataProviderTrait.php | 2 +- tests/Fixture/Cache/Psr16CacheAdapter.php | 2 +- tests/Fixture/Cache/Psr16CacheException.php | 2 +- tests/Fixture/Cache/Psr16InvalidArgumentException.php | 2 +- tests/Fixture/Container/Psr11ContainerAdapter.php | 2 +- tests/Fixture/Container/Psr11ContainerException.php | 2 +- tests/Fixture/Container/Psr11NotFoundException.php | 2 +- tests/Fixture/Http/Message.php | 2 +- tests/Fixture/Http/Psr7MessageAdapter.php | 2 +- tests/Fixture/Http/Psr7RequestAdapter.php | 2 +- tests/Fixture/Http/Psr7ResponseAdapter.php | 2 +- tests/Fixture/Logger/Psr3LoggerAdapter.php | 2 +- tests/Fixture/TestCase.php | 2 +- tests/Unit/Application/AppTest.php | 2 +- tests/Unit/Application/ControllerFactoryTest.php | 2 +- tests/Unit/Application/ImageControllerTest.php | 2 +- tests/Unit/Cache/FileCacheTest.php | 2 +- tests/Unit/Cache/NullCacheTest.php | 2 +- tests/Unit/Container/SimpleContainerTest.php | 2 +- tests/Unit/Http/MessageTraitTest.php | 2 +- tests/Unit/Http/RequestTest.php | 2 +- tests/Unit/Http/ResponseTest.php | 2 +- tests/Unit/Logger/Handler/SimpleEntryTest.php | 2 +- tests/Unit/Logger/Handler/StreamHandlerTest.php | 2 +- tests/Unit/Logger/HandlerAwareLoggerTest.php | 2 +- tests/Unit/Logger/NullLoggerTest.php | 2 +- tests/Unit/Provider/Youtube/FormatTest.php | 2 +- tests/Unit/Provider/Youtube/ProviderTest.php | 2 +- tests/Unit/Provider/Youtube/VideoInfoTest.php | 2 +- tests/Unit/Template/EngineTest.php | 2 +- tests/Unit/Template/TemplateTest.php | 2 +- tests/Unit/ToolkitTest.php | 2 +- ytdl.user.js | 3 +++ 95 files changed, 97 insertions(+), 94 deletions(-) diff --git a/bootstrap.php b/bootstrap.php index 08a32cf9..88fb913f 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/download.php b/download.php index a4d8a1e9..3dce3435 100644 --- a/download.php +++ b/download.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/feed.php b/feed.php index 7c79efc7..f54b3f5d 100644 --- a/feed.php +++ b/feed.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/getimage.php b/getimage.php index 3ddcb922..38af811e 100644 --- a/getimage.php +++ b/getimage.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/getvideo.php b/getvideo.php index ef0a3ac6..7e8cb183 100644 --- a/getvideo.php +++ b/getvideo.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/index.php b/index.php index cc98c9b8..e68555e6 100644 --- a/index.php +++ b/index.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Application/App.php b/src/Application/App.php index ce8962da..b31ec320 100644 --- a/src/Application/App.php +++ b/src/Application/App.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Application/Controller.php b/src/Application/Controller.php index 4abd96ff..4c884044 100644 --- a/src/Application/Controller.php +++ b/src/Application/Controller.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Application/ControllerAbstract.php b/src/Application/ControllerAbstract.php index 569c53ff..9ce2e2c8 100644 --- a/src/Application/ControllerAbstract.php +++ b/src/Application/ControllerAbstract.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Application/ControllerFactory.php b/src/Application/ControllerFactory.php index 25ceb4a8..33e82bdf 100644 --- a/src/Application/ControllerFactory.php +++ b/src/Application/ControllerFactory.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Application/DownloadController.php b/src/Application/DownloadController.php index cc45a974..fd1bb56d 100644 --- a/src/Application/DownloadController.php +++ b/src/Application/DownloadController.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Application/FeedController.php b/src/Application/FeedController.php index 784755f9..cd7ffcf1 100644 --- a/src/Application/FeedController.php +++ b/src/Application/FeedController.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Application/ImageController.php b/src/Application/ImageController.php index 60af408f..5d9deeb4 100644 --- a/src/Application/ImageController.php +++ b/src/Application/ImageController.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Application/MainController.php b/src/Application/MainController.php index df58be0f..df8ac1ac 100644 --- a/src/Application/MainController.php +++ b/src/Application/MainController.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Application/ResultController.php b/src/Application/ResultController.php index 64a5bc10..4ffbaff6 100644 --- a/src/Application/ResultController.php +++ b/src/Application/ResultController.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Cache/Cache.php b/src/Cache/Cache.php index 4f378af0..118f9269 100644 --- a/src/Cache/Cache.php +++ b/src/Cache/Cache.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Cache/CacheAware.php b/src/Cache/CacheAware.php index 36993954..7d2da7ec 100644 --- a/src/Cache/CacheAware.php +++ b/src/Cache/CacheAware.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Cache/CacheAwareTrait.php b/src/Cache/CacheAwareTrait.php index a474b24f..7c60946d 100644 --- a/src/Cache/CacheAwareTrait.php +++ b/src/Cache/CacheAwareTrait.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Cache/CacheException.php b/src/Cache/CacheException.php index 7ef2d354..4c5f29b1 100644 --- a/src/Cache/CacheException.php +++ b/src/Cache/CacheException.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Cache/FileCache.php b/src/Cache/FileCache.php index 6f89524a..cdda9088 100644 --- a/src/Cache/FileCache.php +++ b/src/Cache/FileCache.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Cache/InvalidArgumentException.php b/src/Cache/InvalidArgumentException.php index 4a168f0a..abb8ff89 100644 --- a/src/Cache/InvalidArgumentException.php +++ b/src/Cache/InvalidArgumentException.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Cache/NullCache.php b/src/Cache/NullCache.php index c947020a..05eba082 100644 --- a/src/Cache/NullCache.php +++ b/src/Cache/NullCache.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Config.php b/src/Config.php index 58d045df..84607459 100644 --- a/src/Config.php +++ b/src/Config.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Container/Container.php b/src/Container/Container.php index 808a691d..9e34894d 100644 --- a/src/Container/Container.php +++ b/src/Container/Container.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Container/ContainerException.php b/src/Container/ContainerException.php index cb999d17..664f527e 100644 --- a/src/Container/ContainerException.php +++ b/src/Container/ContainerException.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Container/NotFoundException.php b/src/Container/NotFoundException.php index 16ab4fdd..e19b0610 100644 --- a/src/Container/NotFoundException.php +++ b/src/Container/NotFoundException.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Container/SimpleContainer.php b/src/Container/SimpleContainer.php index 2b55ec9c..21cb5bd1 100644 --- a/src/Container/SimpleContainer.php +++ b/src/Container/SimpleContainer.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Http/Client.php b/src/Http/Client.php index 9d66917d..3c9aa890 100644 --- a/src/Http/Client.php +++ b/src/Http/Client.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Http/CurlClient.php b/src/Http/CurlClient.php index f2dca878..9b6c614a 100644 --- a/src/Http/CurlClient.php +++ b/src/Http/CurlClient.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Http/HttpClientAware.php b/src/Http/HttpClientAware.php index 7bda1b87..39df97a2 100644 --- a/src/Http/HttpClientAware.php +++ b/src/Http/HttpClientAware.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Http/HttpClientAwareTrait.php b/src/Http/HttpClientAwareTrait.php index 1caed940..01d5435b 100644 --- a/src/Http/HttpClientAwareTrait.php +++ b/src/Http/HttpClientAwareTrait.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Http/Message/Message.php b/src/Http/Message/Message.php index 9c5924fb..38095286 100644 --- a/src/Http/Message/Message.php +++ b/src/Http/Message/Message.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Http/Message/Request.php b/src/Http/Message/Request.php index 5a6a6cec..e1b48800 100644 --- a/src/Http/Message/Request.php +++ b/src/Http/Message/Request.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Http/Message/Response.php b/src/Http/Message/Response.php index 3a7373d6..4ff5e7f9 100644 --- a/src/Http/Message/Response.php +++ b/src/Http/Message/Response.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Http/Message/ServerRequest.php b/src/Http/Message/ServerRequest.php index 401cab4e..002cd0fd 100644 --- a/src/Http/Message/ServerRequest.php +++ b/src/Http/Message/ServerRequest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Http/MessageTrait.php b/src/Http/MessageTrait.php index d693f17c..209ea89a 100644 --- a/src/Http/MessageTrait.php +++ b/src/Http/MessageTrait.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Http/Request.php b/src/Http/Request.php index f3db3847..afae908e 100644 --- a/src/Http/Request.php +++ b/src/Http/Request.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Http/Response.php b/src/Http/Response.php index 28fa97c6..f0e23ef6 100644 --- a/src/Http/Response.php +++ b/src/Http/Response.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Logger/Handler/Entry.php b/src/Logger/Handler/Entry.php index 56ec43fd..e0a28502 100644 --- a/src/Logger/Handler/Entry.php +++ b/src/Logger/Handler/Entry.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Logger/Handler/Handler.php b/src/Logger/Handler/Handler.php index 9fd1394a..30ef17fe 100644 --- a/src/Logger/Handler/Handler.php +++ b/src/Logger/Handler/Handler.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Logger/Handler/NullHandler.php b/src/Logger/Handler/NullHandler.php index b21ecf3e..fca555b7 100644 --- a/src/Logger/Handler/NullHandler.php +++ b/src/Logger/Handler/NullHandler.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Logger/Handler/SimpleEntry.php b/src/Logger/Handler/SimpleEntry.php index 7d52c763..6a5500de 100644 --- a/src/Logger/Handler/SimpleEntry.php +++ b/src/Logger/Handler/SimpleEntry.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Logger/Handler/StreamHandler.php b/src/Logger/Handler/StreamHandler.php index 9064a2c0..71039255 100644 --- a/src/Logger/Handler/StreamHandler.php +++ b/src/Logger/Handler/StreamHandler.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Logger/HandlerAwareLogger.php b/src/Logger/HandlerAwareLogger.php index 7dccba6c..e83b0a02 100644 --- a/src/Logger/HandlerAwareLogger.php +++ b/src/Logger/HandlerAwareLogger.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Logger/LogLevel.php b/src/Logger/LogLevel.php index 98e5af95..094cabc9 100644 --- a/src/Logger/LogLevel.php +++ b/src/Logger/LogLevel.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Logger/Logger.php b/src/Logger/Logger.php index 9c0fb335..d63c101d 100644 --- a/src/Logger/Logger.php +++ b/src/Logger/Logger.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Logger/LoggerAware.php b/src/Logger/LoggerAware.php index b8daa523..6b5e57f7 100644 --- a/src/Logger/LoggerAware.php +++ b/src/Logger/LoggerAware.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Logger/LoggerAwareTrait.php b/src/Logger/LoggerAwareTrait.php index 53e3db07..0a7de2a2 100644 --- a/src/Logger/LoggerAwareTrait.php +++ b/src/Logger/LoggerAwareTrait.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Logger/NullLogger.php b/src/Logger/NullLogger.php index fc754752..e2f9d4ff 100644 --- a/src/Logger/NullLogger.php +++ b/src/Logger/NullLogger.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Provider/Youtube/Format.php b/src/Provider/Youtube/Format.php index 96081d56..b67ef1dc 100644 --- a/src/Provider/Youtube/Format.php +++ b/src/Provider/Youtube/Format.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Provider/Youtube/Provider.php b/src/Provider/Youtube/Provider.php index 6d701514..06b6310c 100644 --- a/src/Provider/Youtube/Provider.php +++ b/src/Provider/Youtube/Provider.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Provider/Youtube/SignatureDecipher.php b/src/Provider/Youtube/SignatureDecipher.php index b3b69df1..3116d45b 100644 --- a/src/Provider/Youtube/SignatureDecipher.php +++ b/src/Provider/Youtube/SignatureDecipher.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Provider/Youtube/VideoInfo.php b/src/Provider/Youtube/VideoInfo.php index 995c0c91..97e4872c 100644 --- a/src/Provider/Youtube/VideoInfo.php +++ b/src/Provider/Youtube/VideoInfo.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php index 212bdb8c..8d8c5d35 100644 --- a/src/ServiceProvider.php +++ b/src/ServiceProvider.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Template/Engine.php b/src/Template/Engine.php index 8ffcfb76..3ae129e8 100644 --- a/src/Template/Engine.php +++ b/src/Template/Engine.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Template/Template.php b/src/Template/Template.php index a418e157..2dca3de4 100644 --- a/src/Template/Template.php +++ b/src/Template/Template.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Toolkit.php b/src/Toolkit.php index 8684c892..4c4f47e5 100644 --- a/src/Toolkit.php +++ b/src/Toolkit.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/VideoInfo/Exception.php b/src/VideoInfo/Exception.php index 7dfe5843..e199951b 100644 --- a/src/VideoInfo/Exception.php +++ b/src/VideoInfo/Exception.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/VideoInfo/Format.php b/src/VideoInfo/Format.php index cacd1222..d9f77237 100644 --- a/src/VideoInfo/Format.php +++ b/src/VideoInfo/Format.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/VideoInfo/InvalidInputException.php b/src/VideoInfo/InvalidInputException.php index 8b7c5dc4..c76cf402 100644 --- a/src/VideoInfo/InvalidInputException.php +++ b/src/VideoInfo/InvalidInputException.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/VideoInfo/Provider.php b/src/VideoInfo/Provider.php index 232cc08e..c5ce6414 100644 --- a/src/VideoInfo/Provider.php +++ b/src/VideoInfo/Provider.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/VideoInfo/VideoInfo.php b/src/VideoInfo/VideoInfo.php index 15a1ff36..363db321 100644 --- a/src/VideoInfo/VideoInfo.php +++ b/src/VideoInfo/VideoInfo.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Cache/DataProviderTrait.php b/tests/Fixture/Cache/DataProviderTrait.php index 5dfb90f2..8a000316 100644 --- a/tests/Fixture/Cache/DataProviderTrait.php +++ b/tests/Fixture/Cache/DataProviderTrait.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Cache/Psr16CacheAdapter.php b/tests/Fixture/Cache/Psr16CacheAdapter.php index f6ce568c..69c2b324 100644 --- a/tests/Fixture/Cache/Psr16CacheAdapter.php +++ b/tests/Fixture/Cache/Psr16CacheAdapter.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Cache/Psr16CacheException.php b/tests/Fixture/Cache/Psr16CacheException.php index 042e9945..d644a5c5 100644 --- a/tests/Fixture/Cache/Psr16CacheException.php +++ b/tests/Fixture/Cache/Psr16CacheException.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Cache/Psr16InvalidArgumentException.php b/tests/Fixture/Cache/Psr16InvalidArgumentException.php index c64baf6b..ac24521c 100644 --- a/tests/Fixture/Cache/Psr16InvalidArgumentException.php +++ b/tests/Fixture/Cache/Psr16InvalidArgumentException.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Container/Psr11ContainerAdapter.php b/tests/Fixture/Container/Psr11ContainerAdapter.php index c3f8d908..6385f65e 100644 --- a/tests/Fixture/Container/Psr11ContainerAdapter.php +++ b/tests/Fixture/Container/Psr11ContainerAdapter.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Container/Psr11ContainerException.php b/tests/Fixture/Container/Psr11ContainerException.php index c4ade2d6..cd1dd9a5 100644 --- a/tests/Fixture/Container/Psr11ContainerException.php +++ b/tests/Fixture/Container/Psr11ContainerException.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Container/Psr11NotFoundException.php b/tests/Fixture/Container/Psr11NotFoundException.php index 2383e0ec..fe88cebd 100644 --- a/tests/Fixture/Container/Psr11NotFoundException.php +++ b/tests/Fixture/Container/Psr11NotFoundException.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Http/Message.php b/tests/Fixture/Http/Message.php index 6d59f541..c7d6bc36 100644 --- a/tests/Fixture/Http/Message.php +++ b/tests/Fixture/Http/Message.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Http/Psr7MessageAdapter.php b/tests/Fixture/Http/Psr7MessageAdapter.php index e3365548..809e3288 100644 --- a/tests/Fixture/Http/Psr7MessageAdapter.php +++ b/tests/Fixture/Http/Psr7MessageAdapter.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Http/Psr7RequestAdapter.php b/tests/Fixture/Http/Psr7RequestAdapter.php index 2c5cecc5..205fe6e1 100644 --- a/tests/Fixture/Http/Psr7RequestAdapter.php +++ b/tests/Fixture/Http/Psr7RequestAdapter.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Http/Psr7ResponseAdapter.php b/tests/Fixture/Http/Psr7ResponseAdapter.php index 9a91ffa2..f314d4f4 100644 --- a/tests/Fixture/Http/Psr7ResponseAdapter.php +++ b/tests/Fixture/Http/Psr7ResponseAdapter.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/Logger/Psr3LoggerAdapter.php b/tests/Fixture/Logger/Psr3LoggerAdapter.php index 4faa26eb..438d1d9d 100644 --- a/tests/Fixture/Logger/Psr3LoggerAdapter.php +++ b/tests/Fixture/Logger/Psr3LoggerAdapter.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Fixture/TestCase.php b/tests/Fixture/TestCase.php index e89b4b4e..ffe65582 100644 --- a/tests/Fixture/TestCase.php +++ b/tests/Fixture/TestCase.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Application/AppTest.php b/tests/Unit/Application/AppTest.php index 5cc1491a..33a2f7f9 100644 --- a/tests/Unit/Application/AppTest.php +++ b/tests/Unit/Application/AppTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Application/ControllerFactoryTest.php b/tests/Unit/Application/ControllerFactoryTest.php index ccbe3011..f68fb934 100644 --- a/tests/Unit/Application/ControllerFactoryTest.php +++ b/tests/Unit/Application/ControllerFactoryTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Application/ImageControllerTest.php b/tests/Unit/Application/ImageControllerTest.php index c218d5cc..addf4b7a 100644 --- a/tests/Unit/Application/ImageControllerTest.php +++ b/tests/Unit/Application/ImageControllerTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Cache/FileCacheTest.php b/tests/Unit/Cache/FileCacheTest.php index 4cc1b804..e1b8e405 100644 --- a/tests/Unit/Cache/FileCacheTest.php +++ b/tests/Unit/Cache/FileCacheTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Cache/NullCacheTest.php b/tests/Unit/Cache/NullCacheTest.php index 4bc67355..54641def 100644 --- a/tests/Unit/Cache/NullCacheTest.php +++ b/tests/Unit/Cache/NullCacheTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Container/SimpleContainerTest.php b/tests/Unit/Container/SimpleContainerTest.php index 2a8fc4ed..4ba668a1 100644 --- a/tests/Unit/Container/SimpleContainerTest.php +++ b/tests/Unit/Container/SimpleContainerTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Http/MessageTraitTest.php b/tests/Unit/Http/MessageTraitTest.php index 6c9bb109..cc12fb3c 100644 --- a/tests/Unit/Http/MessageTraitTest.php +++ b/tests/Unit/Http/MessageTraitTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Http/RequestTest.php b/tests/Unit/Http/RequestTest.php index ed374a38..ec4596a4 100644 --- a/tests/Unit/Http/RequestTest.php +++ b/tests/Unit/Http/RequestTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Http/ResponseTest.php b/tests/Unit/Http/ResponseTest.php index 14ec3bde..cde2105e 100644 --- a/tests/Unit/Http/ResponseTest.php +++ b/tests/Unit/Http/ResponseTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Logger/Handler/SimpleEntryTest.php b/tests/Unit/Logger/Handler/SimpleEntryTest.php index d912e699..81ba303c 100644 --- a/tests/Unit/Logger/Handler/SimpleEntryTest.php +++ b/tests/Unit/Logger/Handler/SimpleEntryTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Logger/Handler/StreamHandlerTest.php b/tests/Unit/Logger/Handler/StreamHandlerTest.php index 9dc14210..d39a20e3 100644 --- a/tests/Unit/Logger/Handler/StreamHandlerTest.php +++ b/tests/Unit/Logger/Handler/StreamHandlerTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Logger/HandlerAwareLoggerTest.php b/tests/Unit/Logger/HandlerAwareLoggerTest.php index 4ffe11ad..bcf8446e 100644 --- a/tests/Unit/Logger/HandlerAwareLoggerTest.php +++ b/tests/Unit/Logger/HandlerAwareLoggerTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Logger/NullLoggerTest.php b/tests/Unit/Logger/NullLoggerTest.php index 396f4018..4606334a 100644 --- a/tests/Unit/Logger/NullLoggerTest.php +++ b/tests/Unit/Logger/NullLoggerTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Provider/Youtube/FormatTest.php b/tests/Unit/Provider/Youtube/FormatTest.php index a89329e7..0797d60c 100644 --- a/tests/Unit/Provider/Youtube/FormatTest.php +++ b/tests/Unit/Provider/Youtube/FormatTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Provider/Youtube/ProviderTest.php b/tests/Unit/Provider/Youtube/ProviderTest.php index 4f88de40..bb1e3c8f 100644 --- a/tests/Unit/Provider/Youtube/ProviderTest.php +++ b/tests/Unit/Provider/Youtube/ProviderTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Provider/Youtube/VideoInfoTest.php b/tests/Unit/Provider/Youtube/VideoInfoTest.php index e666150b..59d50985 100644 --- a/tests/Unit/Provider/Youtube/VideoInfoTest.php +++ b/tests/Unit/Provider/Youtube/VideoInfoTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Template/EngineTest.php b/tests/Unit/Template/EngineTest.php index 9833eb25..6713cf45 100644 --- a/tests/Unit/Template/EngineTest.php +++ b/tests/Unit/Template/EngineTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/Template/TemplateTest.php b/tests/Unit/Template/TemplateTest.php index 26e90052..56953780 100644 --- a/tests/Unit/Template/TemplateTest.php +++ b/tests/Unit/Template/TemplateTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/tests/Unit/ToolkitTest.php b/tests/Unit/ToolkitTest.php index 12a323da..a7dd444b 100644 --- a/tests/Unit/ToolkitTest.php +++ b/tests/Unit/ToolkitTest.php @@ -2,7 +2,7 @@ /* * PHP script for downloading videos from youtube - * Copyright (C) 2012-2017 John Eckman + * Copyright (C) 2012-2018 John Eckman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/ytdl.user.js b/ytdl.user.js index 41c38507..5faaced6 100644 --- a/ytdl.user.js +++ b/ytdl.user.js @@ -14,6 +14,9 @@ // ==/UserScript== /** + * PHP script for downloading videos from youtube + * Copyright (C) 2012-2018 John Eckman + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or