From 682821c71ed2af297170294632931be1ac769f25 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 12 Jan 2016 15:02:16 +0100 Subject: Happy new year! --- lib/private/app/appmanager.php | 3 ++- lib/private/app/codechecker/abstractcheck.php | 2 +- lib/private/app/codechecker/codechecker.php | 2 +- lib/private/app/codechecker/deprecationcheck.php | 2 +- lib/private/app/codechecker/emptycheck.php | 2 +- lib/private/app/codechecker/icheck.php | 2 +- lib/private/app/codechecker/infochecker.php | 3 ++- lib/private/app/codechecker/nodevisitor.php | 2 +- lib/private/app/codechecker/privatecheck.php | 2 +- lib/private/app/codechecker/strongcomparisoncheck.php | 2 +- lib/private/app/dependencyanalyzer.php | 2 +- lib/private/app/infoparser.php | 3 ++- lib/private/app/platform.php | 2 +- lib/private/app/platformrepository.php | 2 +- 14 files changed, 17 insertions(+), 14 deletions(-) (limited to 'lib/private/app') diff --git a/lib/private/app/appmanager.php b/lib/private/app/appmanager.php index 8ae93f98832..b060b2e6e1c 100644 --- a/lib/private/app/appmanager.php +++ b/lib/private/app/appmanager.php @@ -4,9 +4,10 @@ * @author Lukas Reschke * @author Morris Jobke * @author Robin Appelman + * @author Thomas Müller * @author Vincent Petry * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/codechecker/abstractcheck.php b/lib/private/app/codechecker/abstractcheck.php index c1c6524e42f..ca91d366482 100644 --- a/lib/private/app/codechecker/abstractcheck.php +++ b/lib/private/app/codechecker/abstractcheck.php @@ -2,7 +2,7 @@ /** * @author Joas Schilling * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/codechecker/codechecker.php b/lib/private/app/codechecker/codechecker.php index ef7dc7f3e4d..0ca597ccb4e 100644 --- a/lib/private/app/codechecker/codechecker.php +++ b/lib/private/app/codechecker/codechecker.php @@ -4,7 +4,7 @@ * @author Morris Jobke * @author Thomas Müller * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/codechecker/deprecationcheck.php b/lib/private/app/codechecker/deprecationcheck.php index 1d287edc858..fa5eae8ab1d 100644 --- a/lib/private/app/codechecker/deprecationcheck.php +++ b/lib/private/app/codechecker/deprecationcheck.php @@ -2,7 +2,7 @@ /** * @author Joas Schilling * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/codechecker/emptycheck.php b/lib/private/app/codechecker/emptycheck.php index 0e5df55d090..b779926d5e4 100644 --- a/lib/private/app/codechecker/emptycheck.php +++ b/lib/private/app/codechecker/emptycheck.php @@ -2,7 +2,7 @@ /** * @author Joas Schilling * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/codechecker/icheck.php b/lib/private/app/codechecker/icheck.php index a00e0d8fa13..97e0bc9b8a0 100644 --- a/lib/private/app/codechecker/icheck.php +++ b/lib/private/app/codechecker/icheck.php @@ -2,7 +2,7 @@ /** * @author Joas Schilling * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/codechecker/infochecker.php b/lib/private/app/codechecker/infochecker.php index 2589277118b..ac92ee2661c 100644 --- a/lib/private/app/codechecker/infochecker.php +++ b/lib/private/app/codechecker/infochecker.php @@ -1,8 +1,9 @@ * @author Morris Jobke * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/codechecker/nodevisitor.php b/lib/private/app/codechecker/nodevisitor.php index cf850147fd8..f9386caeeae 100644 --- a/lib/private/app/codechecker/nodevisitor.php +++ b/lib/private/app/codechecker/nodevisitor.php @@ -4,7 +4,7 @@ * @author Morris Jobke * @author Thomas Müller * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/codechecker/privatecheck.php b/lib/private/app/codechecker/privatecheck.php index bafcfd1d03e..32248ab21e2 100644 --- a/lib/private/app/codechecker/privatecheck.php +++ b/lib/private/app/codechecker/privatecheck.php @@ -2,7 +2,7 @@ /** * @author Joas Schilling * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/codechecker/strongcomparisoncheck.php b/lib/private/app/codechecker/strongcomparisoncheck.php index 3072027b258..919647a6a54 100644 --- a/lib/private/app/codechecker/strongcomparisoncheck.php +++ b/lib/private/app/codechecker/strongcomparisoncheck.php @@ -2,7 +2,7 @@ /** * @author Joas Schilling * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/dependencyanalyzer.php b/lib/private/app/dependencyanalyzer.php index 5d86368ea83..ba2479ae7aa 100644 --- a/lib/private/app/dependencyanalyzer.php +++ b/lib/private/app/dependencyanalyzer.php @@ -6,7 +6,7 @@ * @author Morris Jobke * @author Thomas Müller * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/infoparser.php b/lib/private/app/infoparser.php index a84163612e8..c33e5349f3b 100644 --- a/lib/private/app/infoparser.php +++ b/lib/private/app/infoparser.php @@ -1,10 +1,11 @@ + * @author Lukas Reschke * @author Morris Jobke * @author Thomas Müller * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/platform.php b/lib/private/app/platform.php index c16f050e13c..1d4c3767121 100644 --- a/lib/private/app/platform.php +++ b/lib/private/app/platform.php @@ -3,7 +3,7 @@ * @author Morris Jobke * @author Thomas Müller * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify diff --git a/lib/private/app/platformrepository.php b/lib/private/app/platformrepository.php index fa71bd7d91a..730c67f45ee 100644 --- a/lib/private/app/platformrepository.php +++ b/lib/private/app/platformrepository.php @@ -2,7 +2,7 @@ /** * @author Thomas Müller * - * @copyright Copyright (c) 2015, ownCloud, Inc. + * @copyright Copyright (c) 2016, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify -- cgit v1.2.3