diff --git a/.travis.yml b/.travis.yml index 037ad21f..52f60934 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,15 @@ matrix: include: - # FIXME: skipped for now since we use a different php version on the live server - # - language: php - # php: 7.0 - # cache: - # directories: src/vendor - # before_script: - # - composer install --dev --prefer-dist - # script: - # - sh bin/build.sh + - language: php + php: + - 7.1 + cache: + directories: src/vendor + before_script: + - composer install --dev --prefer-dist + script: + - sh bin/build.sh + - ./src/vendor/bin/phpunit - language: node_js node_js: 10 cache: yarn diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c15d041..863b9613 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [Build 6] - 2019-01-14 + +### Added + +- Add unit tests based on PHPUnit ([#824](https://github.com/serlo-org/athene2/pull/824)) + - Add yarn script `unit` that executes `./src/vendor/bin/phpunit` +- Pass CSRF token down +- Verify ReCAPTCHA tokens on server +- Specify Sentry release + ## [Build 5] - 2018-12-01 ### Added -- Add meta title to courses (([#814](https://github.com/serlo-org/athene2/pull/814))) +- Add meta title to courses ([#814](https://github.com/serlo-org/athene2/pull/814)) - Add share option to exercises ([#815](https://github.com/serlo-org/athene2/pull/815)) - Add Sentry to monitor PHP runtime errors ([#816](https://github.com/serlo-org/athene2/pull/816)) - Add versionized privacy policies ([#821](https://github.com/serlo-org/athene2/pull/821)) @@ -59,7 +69,7 @@ All notable changes to this project will be documented in this file. The format - Make list of unrevised revisions (e.g. https://de.serlo.org/mathe/entity/unrevised) faster ([#790](https://github.com/serlo-org/athene2/pull/790), [#780](https://github.com/serlo-org/athene2/pull/780)) - Show all unrevised revisions of an entity (and not only the newest one) ([#790](https://github.com/serlo-org/athene2/pull/790)) - Show a subject-specific Open Graph meta image (e.g. for Facebook previews) ([#678](https://github.com/serlo-org/athene2/pull/678)) -- Expose a tenant-spefiic Open Search description file ([#678](https://github.com/serlo-org/athene2/pull/678)) +- Expose a tenant-specific Open Search description file ([#678](https://github.com/serlo-org/athene2/pull/678)) - Link to new "Nachhaltigkeit" starting page ([#796](https://github.com/serlo-org/athene2/pull/796)) - Rename `*.php.dist` files to `*.dist.php` for better IDE support ([#801](https://github.com/serlo-org/athene2/pull/801)) - Improve performance of Docker Volumes on macOS ([#801](https://github.com/serlo-org/athene2/pull/801)) @@ -103,7 +113,8 @@ This release uses athene2-assets@3 (blue) ([Changelog](https://github.com/serlo- ## [Build 1] - 2017-10-05 -[unreleased]: https://github.com/serlo-org/athene2/compare/5...HEAD +[unreleased]: https://github.com/serlo-org/athene2/compare/6...HEAD +[build 6]: https://github.com/serlo-org/athene2/compare/5...6 [build 5]: https://github.com/serlo-org/athene2/compare/4...5 [build 4]: https://github.com/serlo-org/athene2/compare/3...4 [build 3]: https://github.com/serlo-org/athene2/compare/2...3 diff --git a/README.md b/README.md index 13873066..e43f4942 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ +Serlo logo + # Athene2 -[![Build status](https://img.shields.io/travis/com/serlo-org/athene2.svg)](https://travis-ci.com/serlo-org/athene2) [![Kanban board](https://img.shields.io/badge/Kanban-board-brightgreen.svg)](https://github.com/orgs/serlo-org/projects/1) +[![Build status](https://img.shields.io/travis/com/serlo/athene2/development.svg)](https://travis-ci.com/serlo/athene2) [![Kanban board](https://img.shields.io/badge/Kanban-board-brightgreen.svg)](https://github.com/orgs/serlo/projects/1) @@ -31,7 +33,7 @@ Now follow the upcoming instructions. ```sh # Clone the project: -$ git clone https://github.com/serlo-org/athene2.git +$ git clone https://github.com/serlo/athene2.git $ cd athene2 ``` @@ -152,10 +154,10 @@ a different browser. Development is straight forward, make your changes to the php files and then reload the browser. Done! -If you want to modify the assets (e.g. `.css`, `.js` files), you will also have to clone and set up https://github.com/serlo-org/athene2-assets. Before that, make sure you have [yarn](https://yarnpkg.com/en/docs/install) installed: +If you want to modify the assets (e.g. `.css`, `.js` files), you will also have to clone and set up https://github.com/serlo/athene2-assets. Before that, make sure you have [yarn](https://yarnpkg.com/en/docs/install) installed: ```sh -$ git clone https://github.com/serlo-org/athene2-assets +$ git clone https://github.com/serlo/athene2-assets $ cd athene2-assets $ yarn $ yarn start @@ -200,7 +202,8 @@ Open _package.json_ and make sure the values you got from running the two comman Most of these are outdated: -- [Knowledge base](https://github.com/serlo-org/athene2/wiki/Knowledge-base) -- [Development workflow (outdated)](https://github.com/serlo-org/athene2/wiki/Development-workflow) -- [Installation (totally outdated, do not look at this)](https://github.com/serlo-org/athene2/wiki/Installation) -- [Athene2 Guide (somewhat outdated)](https://serlo-org.github.io/athene2-guide/) +- [Knowledge base](https://github.com/serlo/athene2/wiki/Knowledge-base) +- [Testing](https://github.com/serlo/athene2/wiki/Testing) +- [Development workflow (outdated)](https://github.com/serlo/athene2/wiki/Development-workflow) +- [Installation (totally outdated, do not look at this)](https://github.com/serlo/athene2/wiki/Installation) +- [Athene2 Guide (somewhat outdated)](https://serlo.github.io/athene2-guide/) diff --git a/bin/ShortArrayConverter.php b/bin/ShortArrayConverter.php index b367e41b..1153652e 100755 --- a/bin/ShortArrayConverter.php +++ b/bin/ShortArrayConverter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/composer.json b/composer.json index 9d2032a9..c472d65d 100644 --- a/composer.json +++ b/composer.json @@ -33,5 +33,8 @@ }, "config": { "vendor-dir": "src/vendor" + }, + "require-dev": { + "phpunit/phpunit": "^5" } } diff --git a/composer.lock b/composer.lock index 033770e8..44d6d406 100644 --- a/composer.lock +++ b/composer.lock @@ -1,10 +1,10 @@ { "_readme": [ "This file locks the dependencies of your project to a known state", - "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "d300de3eec940d7c452b8df97a4eaa87", + "content-hash": "4022385d666574c0cb7a6b63adaa0731", "packages": [ { "name": "dnode/dnode", @@ -3824,14 +3824,1290 @@ "time": "2014-02-06T14:18:34+00:00" } ], - "packages-dev": [], + "packages-dev": [ + { + "name": "myclabs/deep-copy", + "version": "1.8.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8", + "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "replace": { + "myclabs/deep-copy": "self.version" + }, + "require-dev": { + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + }, + "files": [ + "src/DeepCopy/deep_copy.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "time": "2018-06-11T23:09:50+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "shasum": "" + }, + "require": { + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ], + "time": "2017-09-11T18:02:19+00:00" + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "4.3.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08", + "shasum": "" + }, + "require": { + "php": "^7.0", + "phpdocumentor/reflection-common": "^1.0.0", + "phpdocumentor/type-resolver": "^0.4.0", + "webmozart/assert": "^1.0" + }, + "require-dev": { + "doctrine/instantiator": "~1.0.5", + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "time": "2017-11-30T07:14:17+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "0.4.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", + "shasum": "" + }, + "require": { + "php": "^5.5 || ^7.0", + "phpdocumentor/reflection-common": "^1.0" + }, + "require-dev": { + "mockery/mockery": "^0.9.4", + "phpunit/phpunit": "^5.2||^4.8.24" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "time": "2017-07-14T14:27:02+00:00" + }, + { + "name": "phpspec/prophecy", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06", + "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.0.2", + "php": "^5.3|^7.0", + "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", + "sebastian/comparator": "^1.1|^2.0|^3.0", + "sebastian/recursion-context": "^1.0|^2.0|^3.0" + }, + "require-dev": { + "phpspec/phpspec": "^2.5|^3.2", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8.x-dev" + } + }, + "autoload": { + "psr-0": { + "Prophecy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", + "keywords": [ + "Double", + "Dummy", + "fake", + "mock", + "spy", + "stub" + ], + "time": "2018-08-05T17:53:17+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "4.0.8", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d", + "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-xmlwriter": "*", + "php": "^5.6 || ^7.0", + "phpunit/php-file-iterator": "^1.3", + "phpunit/php-text-template": "^1.2", + "phpunit/php-token-stream": "^1.4.2 || ^2.0", + "sebastian/code-unit-reverse-lookup": "^1.0", + "sebastian/environment": "^1.3.2 || ^2.0", + "sebastian/version": "^1.0 || ^2.0" + }, + "require-dev": { + "ext-xdebug": "^2.1.4", + "phpunit/phpunit": "^5.7" + }, + "suggest": { + "ext-xdebug": "^2.5.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "time": "2017-04-02T07:44:40+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "1.4.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "time": "2017-11-27T13:52:08+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "time": "2015-06-21T13:50:34+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "1.0.9", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", + "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "time": "2017-02-26T11:10:40+00:00" + }, + { + "name": "phpunit/php-token-stream", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-token-stream.git", + "reference": "791198a2c6254db10131eecfe8c06670700904db" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db", + "reference": "791198a2c6254db10131eecfe8c06670700904db", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.2.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Wrapper around PHP's tokenizer extension.", + "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "keywords": [ + "tokenizer" + ], + "time": "2017-11-27T05:48:46+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "5.7.27", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c", + "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "myclabs/deep-copy": "~1.3", + "php": "^5.6 || ^7.0", + "phpspec/prophecy": "^1.6.2", + "phpunit/php-code-coverage": "^4.0.4", + "phpunit/php-file-iterator": "~1.4", + "phpunit/php-text-template": "~1.2", + "phpunit/php-timer": "^1.0.6", + "phpunit/phpunit-mock-objects": "^3.2", + "sebastian/comparator": "^1.2.4", + "sebastian/diff": "^1.4.3", + "sebastian/environment": "^1.3.4 || ^2.0", + "sebastian/exporter": "~2.0", + "sebastian/global-state": "^1.1", + "sebastian/object-enumerator": "~2.0", + "sebastian/resource-operations": "~1.0", + "sebastian/version": "^1.0.6|^2.0.1", + "symfony/yaml": "~2.1|~3.0|~4.0" + }, + "conflict": { + "phpdocumentor/reflection-docblock": "3.0.2" + }, + "require-dev": { + "ext-pdo": "*" + }, + "suggest": { + "ext-xdebug": "*", + "phpunit/php-invoker": "~1.1" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.7.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "time": "2018-02-01T05:50:59+00:00" + }, + { + "name": "phpunit/phpunit-mock-objects", + "version": "3.4.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", + "reference": "a23b761686d50a560cc56233b9ecf49597cc9118" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118", + "reference": "a23b761686d50a560cc56233b9ecf49597cc9118", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.0.2", + "php": "^5.6 || ^7.0", + "phpunit/php-text-template": "^1.2", + "sebastian/exporter": "^1.2 || ^2.0" + }, + "conflict": { + "phpunit/phpunit": "<5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.4" + }, + "suggest": { + "ext-soap": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sb@sebastian-bergmann.de", + "role": "lead" + } + ], + "description": "Mock Object library for PHPUnit", + "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", + "keywords": [ + "mock", + "xunit" + ], + "time": "2017-06-30T09:13:00+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "time": "2017-03-04T06:30:41+00:00" + }, + { + "name": "sebastian/comparator", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be", + "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be", + "shasum": "" + }, + "require": { + "php": ">=5.3.3", + "sebastian/diff": "~1.2", + "sebastian/exporter": "~1.2 || ~2.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "http://www.github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "time": "2017-01-29T09:50:25+00:00" + }, + { + "name": "sebastian/diff", + "version": "1.4.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4", + "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff" + ], + "time": "2017-05-22T07:24:03+00:00" + }, + { + "name": "sebastian/environment", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac", + "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "time": "2016-11-26T07:53:53+00:00" + }, + { + "name": "sebastian/exporter", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4", + "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4", + "shasum": "" + }, + "require": { + "php": ">=5.3.3", + "sebastian/recursion-context": "~2.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "~4.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "http://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "time": "2016-11-19T08:54:04+00:00" + }, + { + "name": "sebastian/global-state", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4", + "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "require-dev": { + "phpunit/phpunit": "~4.2" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "time": "2015-10-12T03:26:01+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7", + "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7", + "shasum": "" + }, + "require": { + "php": ">=5.6", + "sebastian/recursion-context": "~2.0" + }, + "require-dev": { + "phpunit/phpunit": "~5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "time": "2017-02-18T15:18:39+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a", + "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "require-dev": { + "phpunit/phpunit": "~4.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "time": "2016-11-19T07:33:16+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", + "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", + "shasum": "" + }, + "require": { + "php": ">=5.6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "time": "2015-07-28T20:34:47+00:00" + }, + { + "name": "sebastian/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "time": "2016-10-03T07:35:21+00:00" + }, + { + "name": "symfony/yaml", + "version": "v4.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "c41175c801e3edfda90f32e292619d10c27103d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/c41175c801e3edfda90f32e292619d10c27103d7", + "reference": "c41175c801e3edfda90f32e292619d10c27103d7", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/console": "<3.4" + }, + "require-dev": { + "symfony/console": "~3.4|~4.0" + }, + "suggest": { + "symfony/console": "For validating YAML files using the lint command" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.2-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Yaml Component", + "homepage": "https://symfony.com", + "time": "2018-11-11T19:52:12+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/webmozart/assert.git", + "reference": "0df1908962e7a3071564e857d86874dad1ef204a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a", + "reference": "0df1908962e7a3071564e857d86874dad1ef204a", + "shasum": "" + }, + "require": { + "php": "^5.3.3 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "time": "2018-01-29T19:49:41+00:00" + } + ], "aliases": [], "minimum-stability": "stable", "stability-flags": [], "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": ">=5.5" + "php": ">=7.0" }, "platform-dev": [] } diff --git a/cypress/integration/csrf.js b/cypress/integration/csrf.js new file mode 100644 index 00000000..f4675317 --- /dev/null +++ b/cypress/integration/csrf.js @@ -0,0 +1,42 @@ +/* + * This file is part of Athene2. + * + * Copyright (c) 2013-2018 Serlo Education e.V. + * + * Licensed under the Apache License, Version 2.0 (the "License") + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 + * @link https://github.com/serlo-org/athene2 for the canonical source repository + */ +/// + +context('Csrf', () => { + it('de.serlo.localhost has a csrf token on window.csrf', () => { + cy.visit('http://de.serlo.localhost:4567/') + cy.window().should('have.property', 'csrf') + }) + it('home has the same token on window.csrf as /auth/login', () => { + cy.visit('http://de.serlo.localhost:4567/') + cy.window().its('csrf').then(csrf => { + cy.visit('http://de.serlo.localhost:4567/auth/login') + cy.window().its('csrf').should('equal', csrf) + }) + }) + it('window.csrf is the same token as the form field', () => { + cy.visit('http://de.serlo.localhost:4567/auth/login') + cy.window().its('csrf').then(csrf => { + cy.get('input[name="csrf"]').should('have.value', csrf) + }) + }) +}) diff --git a/docker-compose.dist.yml b/docker-compose.dist.yml index b749700e..f529fc45 100644 --- a/docker-compose.dist.yml +++ b/docker-compose.dist.yml @@ -23,6 +23,7 @@ services: - '4567:80' volumes: # For macOS, add `:delegated` to every volume for improved performance, see also https://docs.docker.com/docker-for-mac/osxfs-caching/#semantics + - ./phpunit.xml:/var/www/html/phpunit.xml - ./src/config:/var/www/html/src/config - ./src/lang:/var/www/html/src/lang - ./src/module:/var/www/html/src/module diff --git a/package.json b/package.json index f2ce6ed3..dcc39419 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "lint": "npm-run-all lint:*", "license": "ts-node scripts/license-headers", "e2e": "cypress open", + "unit": "./src/vendor/bin/phpunit", "format:php-cs-fixer": "yarn _php-cs-fixer", "format:prettier": "yarn _prettier --write", "lint:php-cs-fixer": "yarn _php-cs-fixer --dry-run", diff --git a/php-cs-fixer.config.php b/php-cs-fixer.config.php index 492f3bf7..51897a2c 100644 --- a/php-cs-fixer.config.php +++ b/php-cs-fixer.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/phpunit.xml b/phpunit.xml index 1665f848..eda360a7 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,19 +1,16 @@ - - - - ./src/module/ClassResolver/test - - - - - ./src/module - - ./src/module - ./src/module - ./src/module - - - + + + + ./src/module/Blog/test + + + ./src/module/Type/test + + + ./src/module/ClassResolver/test + + \ No newline at end of file diff --git a/src/config/application.config.php b/src/config/application.config.php index 170978b9..c1cfed86 100644 --- a/src/config/application.config.php +++ b/src/config/application.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/autoload/develop.local.dist.php b/src/config/autoload/develop.local.dist.php index 49caea97..4d48b417 100644 --- a/src/config/autoload/develop.local.dist.php +++ b/src/config/autoload/develop.local.dist.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/autoload/global.php b/src/config/autoload/global.php index b20f0816..56983e69 100644 --- a/src/config/autoload/global.php +++ b/src/config/autoload/global.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,11 +16,12 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ return [ + 'version' => '6', 'zfctwig' => [ 'environment_options' => [ 'cache' => __DIR__ . '/../../data/twig', diff --git a/src/config/autoload/local.dist.php b/src/config/autoload/local.dist.php index e4150fcd..6f9b1558 100644 --- a/src/config/autoload/local.dist.php +++ b/src/config/autoload/local.dist.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -33,6 +33,7 @@ ], 'recaptcha_options' => [ 'api_key' => '6LfwJFwUAAAAAKHhl-kjPbA6mCPjt_CrkCbn3okr', + 'secret' => '6LfwJFwUAAAAAPVsTPLe00oAb9oUTewOUe31pXSv', ], 'markdown' => [ 'host' => 'markdown', diff --git a/src/config/autoload/production.local.dist.php b/src/config/autoload/production.local.dist.php index da575bb8..4333a043 100644 --- a/src/config/autoload/production.local.dist.php +++ b/src/config/autoload/production.local.dist.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/autoload/production.memcached.local.dist.php b/src/config/autoload/production.memcached.local.dist.php index 9c6ad74d..413b993e 100644 --- a/src/config/autoload/production.memcached.local.dist.php +++ b/src/config/autoload/production.memcached.local.dist.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/autoload/serlo.config.local.dist.php b/src/config/autoload/serlo.config.local.dist.php index 5f58b4fa..2f1fbbff 100644 --- a/src/config/autoload/serlo.config.local.dist.php +++ b/src/config/autoload/serlo.config.local.dist.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -43,9 +43,6 @@ 'sender' => 'notifications@mail.serlo.org', 'location' => 'https://www.serlo.org', ], - 'recaptcha_options' => [ - 'api_key' => 'SECRET', - ], 'newsletter_options' => [ 'api_key' => 'SECRET', ], diff --git a/src/config/autoload/strokercache.global.php b/src/config/autoload/strokercache.global.php index 6869f58a..ae083eab 100644 --- a/src/config/autoload/strokercache.global.php +++ b/src/config/autoload/strokercache.global.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/autoload/translator.global.php b/src/config/autoload/translator.global.php index 676dc920..45cbd007 100644 --- a/src/config/autoload/translator.global.php +++ b/src/config/autoload/translator.global.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/autoload/zenddevelopertools.local.dist.php b/src/config/autoload/zenddevelopertools.local.dist.php index 937b13a1..c62a8062 100644 --- a/src/config/autoload/zenddevelopertools.local.dist.php +++ b/src/config/autoload/zenddevelopertools.local.dist.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/autoload/zfcrbac.global.php b/src/config/autoload/zfcrbac.global.php index 2b762c63..91720352 100644 --- a/src/config/autoload/zfcrbac.global.php +++ b/src/config/autoload/zfcrbac.global.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/firewall/contexter.php b/src/config/instance/firewall/contexter.php index d642c68f..88b750e4 100644 --- a/src/config/instance/firewall/contexter.php +++ b/src/config/instance/firewall/contexter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/firewall/flag.php b/src/config/instance/firewall/flag.php index 635d92a0..5cc28511 100644 --- a/src/config/instance/firewall/flag.php +++ b/src/config/instance/firewall/flag.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/firewall/license.php b/src/config/instance/firewall/license.php index 8eb24adc..3dfe8a9a 100644 --- a/src/config/instance/firewall/license.php +++ b/src/config/instance/firewall/license.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/firewall/related-content.php b/src/config/instance/firewall/related-content.php index da442f50..26516956 100644 --- a/src/config/instance/firewall/related-content.php +++ b/src/config/instance/firewall/related-content.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/firewall/user.php b/src/config/instance/firewall/user.php index 2fe47809..fb022392 100644 --- a/src/config/instance/firewall/user.php +++ b/src/config/instance/firewall/user.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/firewall/uuid.php b/src/config/instance/firewall/uuid.php index 32e156eb..d5c20b53 100644 --- a/src/config/instance/firewall/uuid.php +++ b/src/config/instance/firewall/uuid.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/navigation/default.php b/src/config/instance/navigation/default.php index 2c23c3d8..bdf6aa40 100644 --- a/src/config/instance/navigation/default.php +++ b/src/config/instance/navigation/default.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/navigation/footer_left.php b/src/config/instance/navigation/footer_left.php index f4c0561a..231014fd 100644 --- a/src/config/instance/navigation/footer_left.php +++ b/src/config/instance/navigation/footer_left.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/navigation/footer_right.php b/src/config/instance/navigation/footer_right.php index 0b63bc2b..2102f294 100644 --- a/src/config/instance/navigation/footer_right.php +++ b/src/config/instance/navigation/footer_right.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/navigation/social.php b/src/config/instance/navigation/social.php index 9452fd1e..8e541a1f 100644 --- a/src/config/instance/navigation/social.php +++ b/src/config/instance/navigation/social.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/navigation/subject_nav.php b/src/config/instance/navigation/subject_nav.php index 7b57441e..d27f2f98 100644 --- a/src/config/instance/navigation/subject_nav.php +++ b/src/config/instance/navigation/subject_nav.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/navigation/top-auth.php b/src/config/instance/navigation/top-auth.php index e33bd4e7..08340038 100644 --- a/src/config/instance/navigation/top-auth.php +++ b/src/config/instance/navigation/top-auth.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/navigation/top-left.php b/src/config/instance/navigation/top-left.php index 7b41f799..5b5b142c 100644 --- a/src/config/instance/navigation/top-left.php +++ b/src/config/instance/navigation/top-left.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/instance/navigation/top-right.php b/src/config/instance/navigation/top-right.php index 75a3124f..52efd969 100644 --- a/src/config/instance/navigation/top-right.php +++ b/src/config/instance/navigation/top-right.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/config/production.definitions.local.php.dist b/src/config/production.definitions.local.php.dist index e8ac4422..17c540d2 100644 --- a/src/config/production.definitions.local.php.dist +++ b/src/config/production.definitions.local.php.dist @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/init_autoloader.php b/src/init_autoloader.php index 540805ad..650aa092 100644 --- a/src/init_autoloader.php +++ b/src/init_autoloader.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/lang/routes/de.php b/src/lang/routes/de.php index f40af58b..c592394a 100644 --- a/src/lang/routes/de.php +++ b/src/lang/routes/de.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/lang/routes/en.php b/src/lang/routes/en.php index 5ade88fe..f14cda24 100644 --- a/src/lang/routes/en.php +++ b/src/lang/routes/en.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Admin/Module.php b/src/module/Admin/Module.php index 9a1684fa..569ab6d3 100644 --- a/src/module/Admin/Module.php +++ b/src/module/Admin/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Admin/config/module.config.php b/src/module/Admin/config/module.config.php index aee772c7..d2bf3944 100644 --- a/src/module/Admin/config/module.config.php +++ b/src/module/Admin/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Admin/src/Admin/Controller/DebuggerController.php b/src/module/Admin/src/Admin/Controller/DebuggerController.php index 202b4a49..9db37586 100644 --- a/src/module/Admin/src/Admin/Controller/DebuggerController.php +++ b/src/module/Admin/src/Admin/Controller/DebuggerController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Admin/src/Admin/Controller/HomeController.php b/src/module/Admin/src/Admin/Controller/HomeController.php index 199c38b8..365368fc 100644 --- a/src/module/Admin/src/Admin/Controller/HomeController.php +++ b/src/module/Admin/src/Admin/Controller/HomeController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Admin/src/Admin/Form/DebuggerForm.php b/src/module/Admin/src/Admin/Form/DebuggerForm.php index 89ad50c6..af36efa2 100644 --- a/src/module/Admin/src/Admin/Form/DebuggerForm.php +++ b/src/module/Admin/src/Admin/Form/DebuggerForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/Module.php b/src/module/Ads/Module.php index 4da8a858..b200f2dc 100644 --- a/src/module/Ads/Module.php +++ b/src/module/Ads/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/config/module.config.php b/src/module/Ads/config/module.config.php index 47e5847d..f6589b91 100644 --- a/src/module/Ads/config/module.config.php +++ b/src/module/Ads/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Controller/AdsController.php b/src/module/Ads/src/Ads/Controller/AdsController.php index 9979adff..31fe891e 100644 --- a/src/module/Ads/src/Ads/Controller/AdsController.php +++ b/src/module/Ads/src/Ads/Controller/AdsController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Entity/Ad.php b/src/module/Ads/src/Ads/Entity/Ad.php index aa5d0acb..493cbd16 100644 --- a/src/module/Ads/src/Ads/Entity/Ad.php +++ b/src/module/Ads/src/Ads/Entity/Ad.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Entity/AdInterface.php b/src/module/Ads/src/Ads/Entity/AdInterface.php index 1852ea6e..1afce512 100644 --- a/src/module/Ads/src/Ads/Entity/AdInterface.php +++ b/src/module/Ads/src/Ads/Entity/AdInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Entity/AdPage.php b/src/module/Ads/src/Ads/Entity/AdPage.php index d6952b80..f00ac918 100644 --- a/src/module/Ads/src/Ads/Entity/AdPage.php +++ b/src/module/Ads/src/Ads/Entity/AdPage.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Entity/AdPageInterface.php b/src/module/Ads/src/Ads/Entity/AdPageInterface.php index f7962ea4..67c744a3 100644 --- a/src/module/Ads/src/Ads/Entity/AdPageInterface.php +++ b/src/module/Ads/src/Ads/Entity/AdPageInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Exception/AdNotFoundException.php b/src/module/Ads/src/Ads/Exception/AdNotFoundException.php index 874801b2..ff3355fb 100644 --- a/src/module/Ads/src/Ads/Exception/AdNotFoundException.php +++ b/src/module/Ads/src/Ads/Exception/AdNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Exception/InvalidArgumentException.php b/src/module/Ads/src/Ads/Exception/InvalidArgumentException.php index 1cc32576..0e24a277 100644 --- a/src/module/Ads/src/Ads/Exception/InvalidArgumentException.php +++ b/src/module/Ads/src/Ads/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Factory/AdsManagerFactory.php b/src/module/Ads/src/Ads/Factory/AdsManagerFactory.php index 9db24b11..f8c647d5 100644 --- a/src/module/Ads/src/Ads/Factory/AdsManagerFactory.php +++ b/src/module/Ads/src/Ads/Factory/AdsManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Factory/BannerHelperFactory.php b/src/module/Ads/src/Ads/Factory/BannerHelperFactory.php index 7e7dae05..474c7d3f 100644 --- a/src/module/Ads/src/Ads/Factory/BannerHelperFactory.php +++ b/src/module/Ads/src/Ads/Factory/BannerHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Factory/HorizonHelperFactory.php b/src/module/Ads/src/Ads/Factory/HorizonHelperFactory.php index 5604bdbe..0c3805c4 100644 --- a/src/module/Ads/src/Ads/Factory/HorizonHelperFactory.php +++ b/src/module/Ads/src/Ads/Factory/HorizonHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Form/AdFilter.php b/src/module/Ads/src/Ads/Form/AdFilter.php index 0fff1bc4..3b4d7083 100644 --- a/src/module/Ads/src/Ads/Form/AdFilter.php +++ b/src/module/Ads/src/Ads/Form/AdFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Form/AdForm.php b/src/module/Ads/src/Ads/Form/AdForm.php index 7463c24d..19068ba7 100644 --- a/src/module/Ads/src/Ads/Form/AdForm.php +++ b/src/module/Ads/src/Ads/Form/AdForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Form/AdPageForm.php b/src/module/Ads/src/Ads/Form/AdPageForm.php index 33a15052..bf28f8d0 100644 --- a/src/module/Ads/src/Ads/Form/AdPageForm.php +++ b/src/module/Ads/src/Ads/Form/AdPageForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Hydrator/AdHydrator.php b/src/module/Ads/src/Ads/Hydrator/AdHydrator.php index 9d52da55..5ac497a4 100644 --- a/src/module/Ads/src/Ads/Hydrator/AdHydrator.php +++ b/src/module/Ads/src/Ads/Hydrator/AdHydrator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Manager/AdsManager.php b/src/module/Ads/src/Ads/Manager/AdsManager.php index 451bb79f..a386ab7f 100644 --- a/src/module/Ads/src/Ads/Manager/AdsManager.php +++ b/src/module/Ads/src/Ads/Manager/AdsManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Manager/AdsManagerAwareTrait.php b/src/module/Ads/src/Ads/Manager/AdsManagerAwareTrait.php index a90d5386..627b35bb 100644 --- a/src/module/Ads/src/Ads/Manager/AdsManagerAwareTrait.php +++ b/src/module/Ads/src/Ads/Manager/AdsManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/Manager/AdsManagerInterface.php b/src/module/Ads/src/Ads/Manager/AdsManagerInterface.php index 054a7731..79284509 100644 --- a/src/module/Ads/src/Ads/Manager/AdsManagerInterface.php +++ b/src/module/Ads/src/Ads/Manager/AdsManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/View/Helper/Banner.php b/src/module/Ads/src/Ads/View/Helper/Banner.php index 93652cf8..b0904e4d 100644 --- a/src/module/Ads/src/Ads/View/Helper/Banner.php +++ b/src/module/Ads/src/Ads/View/Helper/Banner.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ads/src/Ads/View/Helper/Horizon.php b/src/module/Ads/src/Ads/View/Helper/Horizon.php index 7c319630..e1a6c65a 100644 --- a/src/module/Ads/src/Ads/View/Helper/Horizon.php +++ b/src/module/Ads/src/Ads/View/Helper/Horizon.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/Module.php b/src/module/Alias/Module.php index 9680b2bc..343a025f 100644 --- a/src/module/Alias/Module.php +++ b/src/module/Alias/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/config/module.config.php b/src/module/Alias/config/module.config.php index 7731c400..b3a6f93a 100644 --- a/src/module/Alias/config/module.config.php +++ b/src/module/Alias/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/AliasManager.php b/src/module/Alias/src/Alias/AliasManager.php index cc90bf08..15ed2da5 100644 --- a/src/module/Alias/src/Alias/AliasManager.php +++ b/src/module/Alias/src/Alias/AliasManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/AliasManagerAwareTrait.php b/src/module/Alias/src/Alias/AliasManagerAwareTrait.php index 78d96518..52b66da2 100644 --- a/src/module/Alias/src/Alias/AliasManagerAwareTrait.php +++ b/src/module/Alias/src/Alias/AliasManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/AliasManagerInterface.php b/src/module/Alias/src/Alias/AliasManagerInterface.php index 202dbe36..c93bb6e2 100644 --- a/src/module/Alias/src/Alias/AliasManagerInterface.php +++ b/src/module/Alias/src/Alias/AliasManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Controller/AliasController.php b/src/module/Alias/src/Alias/Controller/AliasController.php index 3c4c48bc..3cd8b8f1 100644 --- a/src/module/Alias/src/Alias/Controller/AliasController.php +++ b/src/module/Alias/src/Alias/Controller/AliasController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Controller/Plugin/Url.php b/src/module/Alias/src/Alias/Controller/Plugin/Url.php index a9fa072c..36787f2c 100644 --- a/src/module/Alias/src/Alias/Controller/Plugin/Url.php +++ b/src/module/Alias/src/Alias/Controller/Plugin/Url.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Controller/RefreshController.php b/src/module/Alias/src/Alias/Controller/RefreshController.php index 81745e99..809b3b98 100644 --- a/src/module/Alias/src/Alias/Controller/RefreshController.php +++ b/src/module/Alias/src/Alias/Controller/RefreshController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Entity/Alias.php b/src/module/Alias/src/Alias/Entity/Alias.php index adea9b0f..14502d0b 100644 --- a/src/module/Alias/src/Alias/Entity/Alias.php +++ b/src/module/Alias/src/Alias/Entity/Alias.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Entity/AliasInterface.php b/src/module/Alias/src/Alias/Entity/AliasInterface.php index f4bb2a87..1417e4be 100644 --- a/src/module/Alias/src/Alias/Entity/AliasInterface.php +++ b/src/module/Alias/src/Alias/Entity/AliasInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Exception/AliasNotFoundException.php b/src/module/Alias/src/Alias/Exception/AliasNotFoundException.php index b1ed4370..a280be9e 100644 --- a/src/module/Alias/src/Alias/Exception/AliasNotFoundException.php +++ b/src/module/Alias/src/Alias/Exception/AliasNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Exception/AliasNotUniqueException.php b/src/module/Alias/src/Alias/Exception/AliasNotUniqueException.php index 2b047136..1955e3ec 100644 --- a/src/module/Alias/src/Alias/Exception/AliasNotUniqueException.php +++ b/src/module/Alias/src/Alias/Exception/AliasNotUniqueException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Exception/CanonicalUrlNotFoundException.php b/src/module/Alias/src/Alias/Exception/CanonicalUrlNotFoundException.php index 2c6c1295..2bdccb31 100644 --- a/src/module/Alias/src/Alias/Exception/CanonicalUrlNotFoundException.php +++ b/src/module/Alias/src/Alias/Exception/CanonicalUrlNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Exception/InvalidArgumentException.php b/src/module/Alias/src/Alias/Exception/InvalidArgumentException.php index 78f389b2..fe7e52da 100644 --- a/src/module/Alias/src/Alias/Exception/InvalidArgumentException.php +++ b/src/module/Alias/src/Alias/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Exception/RuntimeException.php b/src/module/Alias/src/Alias/Exception/RuntimeException.php index 3122ebe0..353cf191 100644 --- a/src/module/Alias/src/Alias/Exception/RuntimeException.php +++ b/src/module/Alias/src/Alias/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/AbstractListenerFactory.php b/src/module/Alias/src/Alias/Factory/AbstractListenerFactory.php index d84d3456..4b072294 100644 --- a/src/module/Alias/src/Alias/Factory/AbstractListenerFactory.php +++ b/src/module/Alias/src/Alias/Factory/AbstractListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/AliasHelperFactory.php b/src/module/Alias/src/Alias/Factory/AliasHelperFactory.php index 3789a0bc..eab04909 100644 --- a/src/module/Alias/src/Alias/Factory/AliasHelperFactory.php +++ b/src/module/Alias/src/Alias/Factory/AliasHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/AliasManagerFactory.php b/src/module/Alias/src/Alias/Factory/AliasManagerFactory.php index b1ba8893..c3ff9970 100644 --- a/src/module/Alias/src/Alias/Factory/AliasManagerFactory.php +++ b/src/module/Alias/src/Alias/Factory/AliasManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/AliasManagerFactoryTrait.php b/src/module/Alias/src/Alias/Factory/AliasManagerFactoryTrait.php index 45494218..84d741a7 100644 --- a/src/module/Alias/src/Alias/Factory/AliasManagerFactoryTrait.php +++ b/src/module/Alias/src/Alias/Factory/AliasManagerFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/AliasStorageFactory.php b/src/module/Alias/src/Alias/Factory/AliasStorageFactory.php index f82a6507..014096b2 100644 --- a/src/module/Alias/src/Alias/Factory/AliasStorageFactory.php +++ b/src/module/Alias/src/Alias/Factory/AliasStorageFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/BlogManagerListenerFactory.php b/src/module/Alias/src/Alias/Factory/BlogManagerListenerFactory.php index 80dd3f1c..f5872e4d 100644 --- a/src/module/Alias/src/Alias/Factory/BlogManagerListenerFactory.php +++ b/src/module/Alias/src/Alias/Factory/BlogManagerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/ManagerOptionsFactory.php b/src/module/Alias/src/Alias/Factory/ManagerOptionsFactory.php index 2d5d432b..803a8923 100644 --- a/src/module/Alias/src/Alias/Factory/ManagerOptionsFactory.php +++ b/src/module/Alias/src/Alias/Factory/ManagerOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/PageControllerListenerFactory.php b/src/module/Alias/src/Alias/Factory/PageControllerListenerFactory.php index f0b20369..a22ff752 100644 --- a/src/module/Alias/src/Alias/Factory/PageControllerListenerFactory.php +++ b/src/module/Alias/src/Alias/Factory/PageControllerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/RefreshControllerFactory.php b/src/module/Alias/src/Alias/Factory/RefreshControllerFactory.php index 9d2577d9..4030f0c8 100644 --- a/src/module/Alias/src/Alias/Factory/RefreshControllerFactory.php +++ b/src/module/Alias/src/Alias/Factory/RefreshControllerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/RepositoryManagerListenerFactory.php b/src/module/Alias/src/Alias/Factory/RepositoryManagerListenerFactory.php index 65dc3534..c7c6f406 100644 --- a/src/module/Alias/src/Alias/Factory/RepositoryManagerListenerFactory.php +++ b/src/module/Alias/src/Alias/Factory/RepositoryManagerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/TaxonomyManagerListenerFactory.php b/src/module/Alias/src/Alias/Factory/TaxonomyManagerListenerFactory.php index 4dd6d3d5..8aa1c6ba 100644 --- a/src/module/Alias/src/Alias/Factory/TaxonomyManagerListenerFactory.php +++ b/src/module/Alias/src/Alias/Factory/TaxonomyManagerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/UrlHelperFactory.php b/src/module/Alias/src/Alias/Factory/UrlHelperFactory.php index 6be4e5b5..45bdd06b 100644 --- a/src/module/Alias/src/Alias/Factory/UrlHelperFactory.php +++ b/src/module/Alias/src/Alias/Factory/UrlHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Factory/UrlPluginFactory.php b/src/module/Alias/src/Alias/Factory/UrlPluginFactory.php index 3dfb539e..01fa9fb6 100644 --- a/src/module/Alias/src/Alias/Factory/UrlPluginFactory.php +++ b/src/module/Alias/src/Alias/Factory/UrlPluginFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Listener/AbstractListener.php b/src/module/Alias/src/Alias/Listener/AbstractListener.php index 3467a051..dfa01c6b 100644 --- a/src/module/Alias/src/Alias/Listener/AbstractListener.php +++ b/src/module/Alias/src/Alias/Listener/AbstractListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Listener/BlogManagerListener.php b/src/module/Alias/src/Alias/Listener/BlogManagerListener.php index f429e864..f7c44bc8 100644 --- a/src/module/Alias/src/Alias/Listener/BlogManagerListener.php +++ b/src/module/Alias/src/Alias/Listener/BlogManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Listener/PageControllerListener.php b/src/module/Alias/src/Alias/Listener/PageControllerListener.php index 74222bc8..afb31bee 100644 --- a/src/module/Alias/src/Alias/Listener/PageControllerListener.php +++ b/src/module/Alias/src/Alias/Listener/PageControllerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Listener/RepositoryManagerListener.php b/src/module/Alias/src/Alias/Listener/RepositoryManagerListener.php index d811d64d..43840908 100644 --- a/src/module/Alias/src/Alias/Listener/RepositoryManagerListener.php +++ b/src/module/Alias/src/Alias/Listener/RepositoryManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Listener/TaxonomyManagerListener.php b/src/module/Alias/src/Alias/Listener/TaxonomyManagerListener.php index 1ec80195..47f8cb0a 100644 --- a/src/module/Alias/src/Alias/Listener/TaxonomyManagerListener.php +++ b/src/module/Alias/src/Alias/Listener/TaxonomyManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/Options/ManagerOptions.php b/src/module/Alias/src/Alias/Options/ManagerOptions.php index 67ecaffa..95ad7499 100644 --- a/src/module/Alias/src/Alias/Options/ManagerOptions.php +++ b/src/module/Alias/src/Alias/Options/ManagerOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/View/Helper/AliasHelper.php b/src/module/Alias/src/Alias/View/Helper/AliasHelper.php index 0b2c312b..110bfbd9 100644 --- a/src/module/Alias/src/Alias/View/Helper/AliasHelper.php +++ b/src/module/Alias/src/Alias/View/Helper/AliasHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Alias/src/Alias/View/Helper/Url.php b/src/module/Alias/src/Alias/View/Helper/Url.php index a871ea01..493c5b50 100644 --- a/src/module/Alias/src/Alias/View/Helper/Url.php +++ b/src/module/Alias/src/Alias/View/Helper/Url.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Application/Module.php b/src/module/Application/Module.php index cbd39e46..9f10bde0 100644 --- a/src/module/Application/Module.php +++ b/src/module/Application/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Application/config/module.config.php b/src/module/Application/config/module.config.php index 356d9f78..213226c5 100644 --- a/src/module/Application/config/module.config.php +++ b/src/module/Application/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Application/src/Application/Controller/IndexController.php b/src/module/Application/src/Application/Controller/IndexController.php index 5085a453..f85e4d82 100644 --- a/src/module/Application/src/Application/Controller/IndexController.php +++ b/src/module/Application/src/Application/Controller/IndexController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/Module.php b/src/module/Attachment/Module.php index e5ec0e50..69d5b4eb 100644 --- a/src/module/Attachment/Module.php +++ b/src/module/Attachment/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/config/module.config.php b/src/module/Attachment/config/module.config.php index 9a4577d5..cd761350 100644 --- a/src/module/Attachment/config/module.config.php +++ b/src/module/Attachment/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Controller/AttachmentController.php b/src/module/Attachment/src/Attachment/Controller/AttachmentController.php index 5832a161..5e8ae321 100644 --- a/src/module/Attachment/src/Attachment/Controller/AttachmentController.php +++ b/src/module/Attachment/src/Attachment/Controller/AttachmentController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Entity/Container.php b/src/module/Attachment/src/Attachment/Entity/Container.php index 03e545c3..63607d89 100644 --- a/src/module/Attachment/src/Attachment/Entity/Container.php +++ b/src/module/Attachment/src/Attachment/Entity/Container.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Entity/ContainerInterface.php b/src/module/Attachment/src/Attachment/Entity/ContainerInterface.php index d6a2600f..d13f4703 100644 --- a/src/module/Attachment/src/Attachment/Entity/ContainerInterface.php +++ b/src/module/Attachment/src/Attachment/Entity/ContainerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Entity/File.php b/src/module/Attachment/src/Attachment/Entity/File.php index c4e58c56..319f1563 100644 --- a/src/module/Attachment/src/Attachment/Entity/File.php +++ b/src/module/Attachment/src/Attachment/Entity/File.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Entity/FileInterface.php b/src/module/Attachment/src/Attachment/Entity/FileInterface.php index d2f1c5f3..ad8dabd1 100644 --- a/src/module/Attachment/src/Attachment/Entity/FileInterface.php +++ b/src/module/Attachment/src/Attachment/Entity/FileInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Exception/AttachmentNotFoundException.php b/src/module/Attachment/src/Attachment/Exception/AttachmentNotFoundException.php index 1c4680ba..78eb13ea 100644 --- a/src/module/Attachment/src/Attachment/Exception/AttachmentNotFoundException.php +++ b/src/module/Attachment/src/Attachment/Exception/AttachmentNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Exception/FileNotFoundException.php b/src/module/Attachment/src/Attachment/Exception/FileNotFoundException.php index 764aad53..c6065f26 100644 --- a/src/module/Attachment/src/Attachment/Exception/FileNotFoundException.php +++ b/src/module/Attachment/src/Attachment/Exception/FileNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Exception/InvalidArgumentException.php b/src/module/Attachment/src/Attachment/Exception/InvalidArgumentException.php index 58ff87a1..b3772691 100644 --- a/src/module/Attachment/src/Attachment/Exception/InvalidArgumentException.php +++ b/src/module/Attachment/src/Attachment/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Exception/NoFileSent.php b/src/module/Attachment/src/Attachment/Exception/NoFileSent.php index 7c50fa3a..44890410 100644 --- a/src/module/Attachment/src/Attachment/Exception/NoFileSent.php +++ b/src/module/Attachment/src/Attachment/Exception/NoFileSent.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Exception/RuntimeException.php b/src/module/Attachment/src/Attachment/Exception/RuntimeException.php index f62869f6..d4ee17ed 100644 --- a/src/module/Attachment/src/Attachment/Exception/RuntimeException.php +++ b/src/module/Attachment/src/Attachment/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Factory/AttachmentManagerFactory.php b/src/module/Attachment/src/Attachment/Factory/AttachmentManagerFactory.php index 1e43fba3..3b499aee 100644 --- a/src/module/Attachment/src/Attachment/Factory/AttachmentManagerFactory.php +++ b/src/module/Attachment/src/Attachment/Factory/AttachmentManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Factory/ModuleOptionsFactory.php b/src/module/Attachment/src/Attachment/Factory/ModuleOptionsFactory.php index 12464df4..444aa784 100644 --- a/src/module/Attachment/src/Attachment/Factory/ModuleOptionsFactory.php +++ b/src/module/Attachment/src/Attachment/Factory/ModuleOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Form/AttachmentFieldset.php b/src/module/Attachment/src/Attachment/Form/AttachmentFieldset.php index 64c192a1..6f3d65b1 100644 --- a/src/module/Attachment/src/Attachment/Form/AttachmentFieldset.php +++ b/src/module/Attachment/src/Attachment/Form/AttachmentFieldset.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Form/AttachmentFieldsetProvider.php b/src/module/Attachment/src/Attachment/Form/AttachmentFieldsetProvider.php index ef344451..5892da86 100644 --- a/src/module/Attachment/src/Attachment/Form/AttachmentFieldsetProvider.php +++ b/src/module/Attachment/src/Attachment/Form/AttachmentFieldsetProvider.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Form/AttachmentForm.php b/src/module/Attachment/src/Attachment/Form/AttachmentForm.php index 4e5ce160..fb494c83 100644 --- a/src/module/Attachment/src/Attachment/Form/AttachmentForm.php +++ b/src/module/Attachment/src/Attachment/Form/AttachmentForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Manager/AttachmentManager.php b/src/module/Attachment/src/Attachment/Manager/AttachmentManager.php index 61e0404e..585847e5 100644 --- a/src/module/Attachment/src/Attachment/Manager/AttachmentManager.php +++ b/src/module/Attachment/src/Attachment/Manager/AttachmentManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Manager/AttachmentManagerAwareTrait.php b/src/module/Attachment/src/Attachment/Manager/AttachmentManagerAwareTrait.php index 69816c8f..bc4d91d7 100644 --- a/src/module/Attachment/src/Attachment/Manager/AttachmentManagerAwareTrait.php +++ b/src/module/Attachment/src/Attachment/Manager/AttachmentManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Manager/AttachmentManagerInterface.php b/src/module/Attachment/src/Attachment/Manager/AttachmentManagerInterface.php index 69fc6dfb..ad9d1a6d 100644 --- a/src/module/Attachment/src/Attachment/Manager/AttachmentManagerInterface.php +++ b/src/module/Attachment/src/Attachment/Manager/AttachmentManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Attachment/src/Attachment/Options/ModuleOptions.php b/src/module/Attachment/src/Attachment/Options/ModuleOptions.php index 3219e589..f25870d8 100644 --- a/src/module/Attachment/src/Attachment/Options/ModuleOptions.php +++ b/src/module/Attachment/src/Attachment/Options/ModuleOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/Module.php b/src/module/Authentication/Module.php index b03ec0c3..4a3de37f 100644 --- a/src/module/Authentication/Module.php +++ b/src/module/Authentication/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/config/module.config.php b/src/module/Authentication/config/module.config.php index 4a5daabe..e4abeed5 100644 --- a/src/module/Authentication/config/module.config.php +++ b/src/module/Authentication/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/Adapter/AdapterInterface.php b/src/module/Authentication/src/Authentication/Adapter/AdapterInterface.php index 716fe8f6..df2a13b8 100644 --- a/src/module/Authentication/src/Authentication/Adapter/AdapterInterface.php +++ b/src/module/Authentication/src/Authentication/Adapter/AdapterInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/Adapter/UserAuthAdapter.php b/src/module/Authentication/src/Authentication/Adapter/UserAuthAdapter.php index 60f05752..baf65ebc 100644 --- a/src/module/Authentication/src/Authentication/Adapter/UserAuthAdapter.php +++ b/src/module/Authentication/src/Authentication/Adapter/UserAuthAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/Controller/AuthenticationController.php b/src/module/Authentication/src/Authentication/Controller/AuthenticationController.php index ae29a4ea..3353e9d1 100644 --- a/src/module/Authentication/src/Authentication/Controller/AuthenticationController.php +++ b/src/module/Authentication/src/Authentication/Controller/AuthenticationController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/Factory/AuthenticationControllerFactory.php b/src/module/Authentication/src/Authentication/Factory/AuthenticationControllerFactory.php index acb15624..5895bc34 100644 --- a/src/module/Authentication/src/Authentication/Factory/AuthenticationControllerFactory.php +++ b/src/module/Authentication/src/Authentication/Factory/AuthenticationControllerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/Factory/AuthenticationServiceFactory.php b/src/module/Authentication/src/Authentication/Factory/AuthenticationServiceFactory.php index 40059188..9c6d0040 100644 --- a/src/module/Authentication/src/Authentication/Factory/AuthenticationServiceFactory.php +++ b/src/module/Authentication/src/Authentication/Factory/AuthenticationServiceFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/Factory/AuthenticationServiceFactoryTrait.php b/src/module/Authentication/src/Authentication/Factory/AuthenticationServiceFactoryTrait.php index 111207b8..db7a3026 100644 --- a/src/module/Authentication/src/Authentication/Factory/AuthenticationServiceFactoryTrait.php +++ b/src/module/Authentication/src/Authentication/Factory/AuthenticationServiceFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/Factory/HashServiceFactory.php b/src/module/Authentication/src/Authentication/Factory/HashServiceFactory.php index ece4be11..7da84f2d 100644 --- a/src/module/Authentication/src/Authentication/Factory/HashServiceFactory.php +++ b/src/module/Authentication/src/Authentication/Factory/HashServiceFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/Factory/UserSessionStorageFactory.php b/src/module/Authentication/src/Authentication/Factory/UserSessionStorageFactory.php index 67b23fb1..7e8fae18 100644 --- a/src/module/Authentication/src/Authentication/Factory/UserSessionStorageFactory.php +++ b/src/module/Authentication/src/Authentication/Factory/UserSessionStorageFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/Form/ActivateForm.php b/src/module/Authentication/src/Authentication/Form/ActivateForm.php index 8ca5bd1a..875c3485 100644 --- a/src/module/Authentication/src/Authentication/Form/ActivateForm.php +++ b/src/module/Authentication/src/Authentication/Form/ActivateForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/HashFilter.php b/src/module/Authentication/src/Authentication/HashFilter.php index 5b59ab55..5e724a9d 100644 --- a/src/module/Authentication/src/Authentication/HashFilter.php +++ b/src/module/Authentication/src/Authentication/HashFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/HashService.php b/src/module/Authentication/src/Authentication/HashService.php index e717b3b4..99dc79ba 100644 --- a/src/module/Authentication/src/Authentication/HashService.php +++ b/src/module/Authentication/src/Authentication/HashService.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/HashServiceAwareTrait.php b/src/module/Authentication/src/Authentication/HashServiceAwareTrait.php index 206c7781..bf5e5073 100644 --- a/src/module/Authentication/src/Authentication/HashServiceAwareTrait.php +++ b/src/module/Authentication/src/Authentication/HashServiceAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/HashServiceInterface.php b/src/module/Authentication/src/Authentication/HashServiceInterface.php index 30053c58..0dee18c3 100644 --- a/src/module/Authentication/src/Authentication/HashServiceInterface.php +++ b/src/module/Authentication/src/Authentication/HashServiceInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/Service/AuthenticationService.php b/src/module/Authentication/src/Authentication/Service/AuthenticationService.php index e1411244..7b9c8d1b 100644 --- a/src/module/Authentication/src/Authentication/Service/AuthenticationService.php +++ b/src/module/Authentication/src/Authentication/Service/AuthenticationService.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authentication/src/Authentication/Storage/UserSessionStorage.php b/src/module/Authentication/src/Authentication/Storage/UserSessionStorage.php index c40b9375..a9ef73ab 100644 --- a/src/module/Authentication/src/Authentication/Storage/UserSessionStorage.php +++ b/src/module/Authentication/src/Authentication/Storage/UserSessionStorage.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/Module.php b/src/module/Authorization/Module.php index 21726812..a7b3f5e0 100644 --- a/src/module/Authorization/Module.php +++ b/src/module/Authorization/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/config/module.config.php b/src/module/Authorization/config/module.config.php index b0e8e450..8b5fcef8 100644 --- a/src/module/Authorization/config/module.config.php +++ b/src/module/Authorization/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Assertion/AssertionInterface.php b/src/module/Authorization/src/Authorization/Assertion/AssertionInterface.php index 675aed44..cff32cd0 100644 --- a/src/module/Authorization/src/Authorization/Assertion/AssertionInterface.php +++ b/src/module/Authorization/src/Authorization/Assertion/AssertionInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Assertion/AssertionPluginManager.php b/src/module/Authorization/src/Authorization/Assertion/AssertionPluginManager.php index 4614bf4e..6c860f0c 100644 --- a/src/module/Authorization/src/Authorization/Assertion/AssertionPluginManager.php +++ b/src/module/Authorization/src/Authorization/Assertion/AssertionPluginManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Assertion/InstanceAssertion.php b/src/module/Authorization/src/Authorization/Assertion/InstanceAssertion.php index 1c0342ad..f9ead079 100644 --- a/src/module/Authorization/src/Authorization/Assertion/InstanceAssertion.php +++ b/src/module/Authorization/src/Authorization/Assertion/InstanceAssertion.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Assertion/RequestInstanceAssertion.php b/src/module/Authorization/src/Authorization/Assertion/RequestInstanceAssertion.php index dc6f4cb8..7f94b7c3 100644 --- a/src/module/Authorization/src/Authorization/Assertion/RequestInstanceAssertion.php +++ b/src/module/Authorization/src/Authorization/Assertion/RequestInstanceAssertion.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Assertion/RoleAssertion.php b/src/module/Authorization/src/Authorization/Assertion/RoleAssertion.php index 99b0f588..6b491e65 100644 --- a/src/module/Authorization/src/Authorization/Assertion/RoleAssertion.php +++ b/src/module/Authorization/src/Authorization/Assertion/RoleAssertion.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Controller/ForbiddenController.php b/src/module/Authorization/src/Authorization/Controller/ForbiddenController.php index eeffb556..78bc1bad 100644 --- a/src/module/Authorization/src/Authorization/Controller/ForbiddenController.php +++ b/src/module/Authorization/src/Authorization/Controller/ForbiddenController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Controller/PermissionController.php b/src/module/Authorization/src/Authorization/Controller/PermissionController.php index 27a2757e..c9171dd6 100644 --- a/src/module/Authorization/src/Authorization/Controller/PermissionController.php +++ b/src/module/Authorization/src/Authorization/Controller/PermissionController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Controller/Plugin/AssertGranted.php b/src/module/Authorization/src/Authorization/Controller/Plugin/AssertGranted.php index 08520377..cdd6d958 100644 --- a/src/module/Authorization/src/Authorization/Controller/Plugin/AssertGranted.php +++ b/src/module/Authorization/src/Authorization/Controller/Plugin/AssertGranted.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Controller/RoleController.php b/src/module/Authorization/src/Authorization/Controller/RoleController.php index b8162400..8ff7be5c 100644 --- a/src/module/Authorization/src/Authorization/Controller/RoleController.php +++ b/src/module/Authorization/src/Authorization/Controller/RoleController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Entity/ParametrizedPermissionInterface.php b/src/module/Authorization/src/Authorization/Entity/ParametrizedPermissionInterface.php index 97635705..2a56ae53 100644 --- a/src/module/Authorization/src/Authorization/Entity/ParametrizedPermissionInterface.php +++ b/src/module/Authorization/src/Authorization/Entity/ParametrizedPermissionInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Entity/PermissionAwareInterface.php b/src/module/Authorization/src/Authorization/Entity/PermissionAwareInterface.php index 2d0f61e8..b33b4e79 100644 --- a/src/module/Authorization/src/Authorization/Entity/PermissionAwareInterface.php +++ b/src/module/Authorization/src/Authorization/Entity/PermissionAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Entity/PermissionInterface.php b/src/module/Authorization/src/Authorization/Entity/PermissionInterface.php index 5da87d78..a9edf542 100644 --- a/src/module/Authorization/src/Authorization/Entity/PermissionInterface.php +++ b/src/module/Authorization/src/Authorization/Entity/PermissionInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Entity/RoleInterface.php b/src/module/Authorization/src/Authorization/Entity/RoleInterface.php index 5221b3a0..4abafa33 100644 --- a/src/module/Authorization/src/Authorization/Entity/RoleInterface.php +++ b/src/module/Authorization/src/Authorization/Entity/RoleInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Exception/InvalidArgumentException.php b/src/module/Authorization/src/Authorization/Exception/InvalidArgumentException.php index af17cf46..380743ac 100644 --- a/src/module/Authorization/src/Authorization/Exception/InvalidArgumentException.php +++ b/src/module/Authorization/src/Authorization/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Exception/PermissionNotFoundException.php b/src/module/Authorization/src/Authorization/Exception/PermissionNotFoundException.php index 5e3ea74e..4f33b10d 100644 --- a/src/module/Authorization/src/Authorization/Exception/PermissionNotFoundException.php +++ b/src/module/Authorization/src/Authorization/Exception/PermissionNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Exception/RoleNotFoundException.php b/src/module/Authorization/src/Authorization/Exception/RoleNotFoundException.php index 8178b2d9..24d42c14 100644 --- a/src/module/Authorization/src/Authorization/Exception/RoleNotFoundException.php +++ b/src/module/Authorization/src/Authorization/Exception/RoleNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Exception/RuntimeException.php b/src/module/Authorization/src/Authorization/Exception/RuntimeException.php index 50f572fc..95f94c19 100644 --- a/src/module/Authorization/src/Authorization/Exception/RuntimeException.php +++ b/src/module/Authorization/src/Authorization/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Factory/AssertionPluginManagerFactory.php b/src/module/Authorization/src/Authorization/Factory/AssertionPluginManagerFactory.php index 8aad7c82..8c93aefc 100644 --- a/src/module/Authorization/src/Authorization/Factory/AssertionPluginManagerFactory.php +++ b/src/module/Authorization/src/Authorization/Factory/AssertionPluginManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Factory/AuthorizationServiceFactory.php b/src/module/Authorization/src/Authorization/Factory/AuthorizationServiceFactory.php index e5dd888e..e496ef4a 100644 --- a/src/module/Authorization/src/Authorization/Factory/AuthorizationServiceFactory.php +++ b/src/module/Authorization/src/Authorization/Factory/AuthorizationServiceFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Factory/HydratableControllerGuardFactory.php b/src/module/Authorization/src/Authorization/Factory/HydratableControllerGuardFactory.php index 4a4d9340..5cd0028b 100644 --- a/src/module/Authorization/src/Authorization/Factory/HydratableControllerGuardFactory.php +++ b/src/module/Authorization/src/Authorization/Factory/HydratableControllerGuardFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Factory/InstanceAssertionFactory.php b/src/module/Authorization/src/Authorization/Factory/InstanceAssertionFactory.php index cbeeed34..bfc0e534 100644 --- a/src/module/Authorization/src/Authorization/Factory/InstanceAssertionFactory.php +++ b/src/module/Authorization/src/Authorization/Factory/InstanceAssertionFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Factory/PermissionControllerFactory.php b/src/module/Authorization/src/Authorization/Factory/PermissionControllerFactory.php index a9aa58c8..3c12860d 100644 --- a/src/module/Authorization/src/Authorization/Factory/PermissionControllerFactory.php +++ b/src/module/Authorization/src/Authorization/Factory/PermissionControllerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Factory/PermissionServiceFactory.php b/src/module/Authorization/src/Authorization/Factory/PermissionServiceFactory.php index 84cda24c..66cafe1c 100644 --- a/src/module/Authorization/src/Authorization/Factory/PermissionServiceFactory.php +++ b/src/module/Authorization/src/Authorization/Factory/PermissionServiceFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Factory/RequestInstanceAssertionFactory.php b/src/module/Authorization/src/Authorization/Factory/RequestInstanceAssertionFactory.php index 3ca6eb05..7d279a23 100644 --- a/src/module/Authorization/src/Authorization/Factory/RequestInstanceAssertionFactory.php +++ b/src/module/Authorization/src/Authorization/Factory/RequestInstanceAssertionFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Factory/RoleAssertionFactory.php b/src/module/Authorization/src/Authorization/Factory/RoleAssertionFactory.php index a3c30f28..81469b3c 100644 --- a/src/module/Authorization/src/Authorization/Factory/RoleAssertionFactory.php +++ b/src/module/Authorization/src/Authorization/Factory/RoleAssertionFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Factory/RoleControllerFactory.php b/src/module/Authorization/src/Authorization/Factory/RoleControllerFactory.php index e8fdf132..153b5591 100644 --- a/src/module/Authorization/src/Authorization/Factory/RoleControllerFactory.php +++ b/src/module/Authorization/src/Authorization/Factory/RoleControllerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Factory/RoleFormFactory.php b/src/module/Authorization/src/Authorization/Factory/RoleFormFactory.php index 970bd16d..786bdfc0 100644 --- a/src/module/Authorization/src/Authorization/Factory/RoleFormFactory.php +++ b/src/module/Authorization/src/Authorization/Factory/RoleFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Factory/RoleServiceFactory.php b/src/module/Authorization/src/Authorization/Factory/RoleServiceFactory.php index 22b671a5..b99da9f8 100644 --- a/src/module/Authorization/src/Authorization/Factory/RoleServiceFactory.php +++ b/src/module/Authorization/src/Authorization/Factory/RoleServiceFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Form/PermissionForm.php b/src/module/Authorization/src/Authorization/Form/PermissionForm.php index c287c567..13dd332c 100644 --- a/src/module/Authorization/src/Authorization/Form/PermissionForm.php +++ b/src/module/Authorization/src/Authorization/Form/PermissionForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Form/RoleForm.php b/src/module/Authorization/src/Authorization/Form/RoleForm.php index 4ba26365..57c4a262 100644 --- a/src/module/Authorization/src/Authorization/Form/RoleForm.php +++ b/src/module/Authorization/src/Authorization/Form/RoleForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Form/UserForm.php b/src/module/Authorization/src/Authorization/Form/UserForm.php index 90aac299..1410ce78 100644 --- a/src/module/Authorization/src/Authorization/Form/UserForm.php +++ b/src/module/Authorization/src/Authorization/Form/UserForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Guard/HydratableControllerGuard.php b/src/module/Authorization/src/Authorization/Guard/HydratableControllerGuard.php index a07c3ebe..2a4af433 100644 --- a/src/module/Authorization/src/Authorization/Guard/HydratableControllerGuard.php +++ b/src/module/Authorization/src/Authorization/Guard/HydratableControllerGuard.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Result/AuthorizationResult.php b/src/module/Authorization/src/Authorization/Result/AuthorizationResult.php index 8ebc478e..ae7d8683 100644 --- a/src/module/Authorization/src/Authorization/Result/AuthorizationResult.php +++ b/src/module/Authorization/src/Authorization/Result/AuthorizationResult.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Service/AuthorizationAssertionTrait.php b/src/module/Authorization/src/Authorization/Service/AuthorizationAssertionTrait.php index cb03ff21..8f0ba94c 100644 --- a/src/module/Authorization/src/Authorization/Service/AuthorizationAssertionTrait.php +++ b/src/module/Authorization/src/Authorization/Service/AuthorizationAssertionTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Service/AuthorizationService.php b/src/module/Authorization/src/Authorization/Service/AuthorizationService.php index d461c9ca..54ea3be8 100644 --- a/src/module/Authorization/src/Authorization/Service/AuthorizationService.php +++ b/src/module/Authorization/src/Authorization/Service/AuthorizationService.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Service/PermissionService.php b/src/module/Authorization/src/Authorization/Service/PermissionService.php index ef5762a8..fed27b0d 100644 --- a/src/module/Authorization/src/Authorization/Service/PermissionService.php +++ b/src/module/Authorization/src/Authorization/Service/PermissionService.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Service/PermissionServiceAwareTrait.php b/src/module/Authorization/src/Authorization/Service/PermissionServiceAwareTrait.php index 8f900054..15a79a9d 100644 --- a/src/module/Authorization/src/Authorization/Service/PermissionServiceAwareTrait.php +++ b/src/module/Authorization/src/Authorization/Service/PermissionServiceAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Service/PermissionServiceInterface.php b/src/module/Authorization/src/Authorization/Service/PermissionServiceInterface.php index 72efc4e7..7c0212f9 100644 --- a/src/module/Authorization/src/Authorization/Service/PermissionServiceInterface.php +++ b/src/module/Authorization/src/Authorization/Service/PermissionServiceInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Service/RoleService.php b/src/module/Authorization/src/Authorization/Service/RoleService.php index b9fb80c5..0745b8a8 100644 --- a/src/module/Authorization/src/Authorization/Service/RoleService.php +++ b/src/module/Authorization/src/Authorization/Service/RoleService.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Service/RoleServiceAwareTrait.php b/src/module/Authorization/src/Authorization/Service/RoleServiceAwareTrait.php index 2c19b1a9..192e5e81 100644 --- a/src/module/Authorization/src/Authorization/Service/RoleServiceAwareTrait.php +++ b/src/module/Authorization/src/Authorization/Service/RoleServiceAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Authorization/src/Authorization/Service/RoleServiceInterface.php b/src/module/Authorization/src/Authorization/Service/RoleServiceInterface.php index 2a59f30e..46ef2fdb 100644 --- a/src/module/Authorization/src/Authorization/Service/RoleServiceInterface.php +++ b/src/module/Authorization/src/Authorization/Service/RoleServiceInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/Module.php b/src/module/Blog/Module.php index 9d5a446e..68d199fc 100644 --- a/src/module/Blog/Module.php +++ b/src/module/Blog/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/config/dependencies.config.php b/src/module/Blog/config/dependencies.config.php index ecfd3001..bc62c5f7 100644 --- a/src/module/Blog/config/dependencies.config.php +++ b/src/module/Blog/config/dependencies.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/config/module.config.php b/src/module/Blog/config/module.config.php index 0b527179..929103fa 100644 --- a/src/module/Blog/config/module.config.php +++ b/src/module/Blog/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/config/router.config.php b/src/module/Blog/config/router.config.php index 6efa2296..b56967a6 100644 --- a/src/module/Blog/config/router.config.php +++ b/src/module/Blog/config/router.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Controller/BlogController.php b/src/module/Blog/src/Blog/Controller/BlogController.php index 119c39fa..6dfb042c 100644 --- a/src/module/Blog/src/Blog/Controller/BlogController.php +++ b/src/module/Blog/src/Blog/Controller/BlogController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Entity/Post.php b/src/module/Blog/src/Blog/Entity/Post.php index fbf2fb7b..be079989 100644 --- a/src/module/Blog/src/Blog/Entity/Post.php +++ b/src/module/Blog/src/Blog/Entity/Post.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Entity/PostInterface.php b/src/module/Blog/src/Blog/Entity/PostInterface.php index 2f7ae7c1..b0e4cde2 100644 --- a/src/module/Blog/src/Blog/Entity/PostInterface.php +++ b/src/module/Blog/src/Blog/Entity/PostInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Exception/InvalidArgumentException.php b/src/module/Blog/src/Blog/Exception/InvalidArgumentException.php index 150463ee..3afe840e 100644 --- a/src/module/Blog/src/Blog/Exception/InvalidArgumentException.php +++ b/src/module/Blog/src/Blog/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Exception/PostNotFoundException.php b/src/module/Blog/src/Blog/Exception/PostNotFoundException.php index 6f2f5642..0068c843 100644 --- a/src/module/Blog/src/Blog/Exception/PostNotFoundException.php +++ b/src/module/Blog/src/Blog/Exception/PostNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Exception/RuntimeException.php b/src/module/Blog/src/Blog/Exception/RuntimeException.php index 107d127b..dbb992e9 100644 --- a/src/module/Blog/src/Blog/Exception/RuntimeException.php +++ b/src/module/Blog/src/Blog/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Factory/BlogManagerFactory.php b/src/module/Blog/src/Blog/Factory/BlogManagerFactory.php index 61ed756d..2b327b51 100644 --- a/src/module/Blog/src/Blog/Factory/BlogManagerFactory.php +++ b/src/module/Blog/src/Blog/Factory/BlogManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Filter/PostPublishedFilter.php b/src/module/Blog/src/Blog/Filter/PostPublishedFilter.php index a4b8cff7..43075a17 100644 --- a/src/module/Blog/src/Blog/Filter/PostPublishedFilter.php +++ b/src/module/Blog/src/Blog/Filter/PostPublishedFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Filter/PostUnpublishedFilter.php b/src/module/Blog/src/Blog/Filter/PostUnpublishedFilter.php index 2c8047b4..d52cdb6d 100644 --- a/src/module/Blog/src/Blog/Filter/PostUnpublishedFilter.php +++ b/src/module/Blog/src/Blog/Filter/PostUnpublishedFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Form/CreatePostForm.php b/src/module/Blog/src/Blog/Form/CreatePostForm.php index ddbf68f1..1fb231f9 100644 --- a/src/module/Blog/src/Blog/Form/CreatePostForm.php +++ b/src/module/Blog/src/Blog/Form/CreatePostForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Form/UpdatePostForm.php b/src/module/Blog/src/Blog/Form/UpdatePostForm.php index 141764a5..4ae3f8f9 100644 --- a/src/module/Blog/src/Blog/Form/UpdatePostForm.php +++ b/src/module/Blog/src/Blog/Form/UpdatePostForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Manager/BlogManager.php b/src/module/Blog/src/Blog/Manager/BlogManager.php index bec736ff..71d0b69a 100644 --- a/src/module/Blog/src/Blog/Manager/BlogManager.php +++ b/src/module/Blog/src/Blog/Manager/BlogManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -34,7 +34,6 @@ use Instance\Manager\InstanceManagerInterface; use Taxonomy\Manager\TaxonomyManagerAwareTrait; use Taxonomy\Manager\TaxonomyManagerInterface; -use Uuid\Manager\UuidManagerAwareTrait; use Zend\EventManager\EventManagerAwareTrait; use Zend\Form\FormInterface; use ZfcRbac\Service\AuthorizationService; @@ -46,6 +45,15 @@ class BlogManager implements BlogManagerInterface use InstanceManagerAwareTrait, AuthorizationAssertionTrait; use EventManagerAwareTrait; + /** + * @TODO AuthorizationService should be AuthorizationServiceInterface (depends on zf-commons) + * + * @param ClassResolverInterface $classResolver + * @param TaxonomyManagerInterface $taxonomyManager + * @param ObjectManager $objectManager + * @param InstanceManagerInterface $instanceManager + * @param AuthorizationService $authorizationService + */ public function __construct( ClassResolverInterface $classResolver, TaxonomyManagerInterface $taxonomyManager, diff --git a/src/module/Blog/src/Blog/Manager/BlogManagerAwareTrait.php b/src/module/Blog/src/Blog/Manager/BlogManagerAwareTrait.php index 47b1ff2e..1a0a259a 100644 --- a/src/module/Blog/src/Blog/Manager/BlogManagerAwareTrait.php +++ b/src/module/Blog/src/Blog/Manager/BlogManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Manager/BlogManagerInterface.php b/src/module/Blog/src/Blog/Manager/BlogManagerInterface.php index 710a61a7..97c09212 100644 --- a/src/module/Blog/src/Blog/Manager/BlogManagerInterface.php +++ b/src/module/Blog/src/Blog/Manager/BlogManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/src/Blog/Provider/TokenizerProvider.php b/src/module/Blog/src/Blog/Provider/TokenizerProvider.php index 63ebd968..8ddac350 100644 --- a/src/module/Blog/src/Blog/Provider/TokenizerProvider.php +++ b/src/module/Blog/src/Blog/Provider/TokenizerProvider.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Blog/test/BlogTest/Entity/PostTest.php b/src/module/Blog/test/BlogTest/Entity/PostTest.php new file mode 100644 index 00000000..8491568c --- /dev/null +++ b/src/module/Blog/test/BlogTest/Entity/PostTest.php @@ -0,0 +1,78 @@ +post = new Post(); + parent::setObject($this->post); + } + + protected function getData() + { + return array( + "author" => $this->createMock("User\Entity\UserInterface"), + "blog" => $this->createMock("Taxonomy\Entity\TaxonomyTermInterface"), + "title" => "title", + "content" => "content", + "timestamp" => new DateTime(), + "publish" => new DateTime(), + + ); + } + + public function testIsPublished() + { + $post = new Post(); + //set DateTime in past + $post->setPublish(new Datetime("2000-03-14")); + $this->assertTrue($post->isPublished()); + } + + public function testAddTaxonomyTerm() + { + $post = new Post(); + $taxTerm = $this->createMock("Taxonomy\Entity\TaxonomyTermInterface"); + $post->addTaxonomyTerm($taxTerm); + $this->assertSame($taxTerm, $post->getBlog()); + } + + public function testRemoveTaxonomyTerm() + { + $post = new Post(); + + //test for unimplemented method -> exception + $this->expectException(Exception::class); + $post->removeTaxonomyTerm($this->createMock("Taxonomy\Entity\TaxonomyTermInterface")); + } +} diff --git a/src/module/Blog/test/BlogTest/Manager/BlogManagerTest.php b/src/module/Blog/test/BlogTest/Manager/BlogManagerTest.php new file mode 100644 index 00000000..1c9bacf7 --- /dev/null +++ b/src/module/Blog/test/BlogTest/Manager/BlogManagerTest.php @@ -0,0 +1,249 @@ +classResolver = $this->mockClassResolver(); + $this->objectManager = $this->mockObjectManager(); + $this->authorizationService = $this->mockAuthorizationService(); + $this->eventManager = $this->mockEventManager(); + + $this->taxonomyManager = $this->createMock(TaxonomyManagerInterface::class); + $this->instanceManager = $this->createMock(InstanceManagerInterface::class); + + $this->blogManager = new BlogManager($this->classResolver, $this->taxonomyManager, $this->objectManager, $this->instanceManager, $this->authorizationService); + $this->blogManager->setEventManager($this->eventManager); + } + + + public function testGetBlog_Granted() + { + $blog = new TaxonomyTerm(); + + $this->taxonomyManager->expects($this->once()) + ->method('getTerm') + ->with($this->equalTo(1)) + ->will($this->returnValue($blog)); + $this->prepareIsGranted($this->authorizationService, 'blog.get', $blog, true); + $this->assertEquals($blog, $this->blogManager->getBlog(1)); + } + + /** + *@expectedException \ZfcRbac\Exception\UnauthorizedException + */ + public function testGetBlog_NotGranted() + { + $blog = new TaxonomyTerm(); + + $this->taxonomyManager->expects($this->once()) + ->method('getTerm') + ->with($this->equalTo(1)) + ->will($this->returnValue($blog)); + + $this->prepareIsGranted($this->authorizationService, 'blog.get', $blog, false); + $this->blogManager->getBlog(1); + } + + public function testFindAllBlogs_Granted() + { + //dummy objects + $childDummy = new TaxonomyTerm(); + $taxonomyDummy = new Taxonomy(); + $taxonomyDummy->addTerm($childDummy); + $instanceDummy = new Instance(); + + $this->taxonomyManager->expects($this->once()) + ->method('findTaxonomyByName') + ->with($this->equalTo('blog'), $instanceDummy) + ->will($this->returnValue($taxonomyDummy)); + $this->prepareIsGranted($this->authorizationService, 'blog.get', $childDummy, true); + + $this->assertEquals($taxonomyDummy->getChildren(), $this->blogManager->findAllBlogs($instanceDummy)); + } + + /** + *@expectedException \ZfcRbac\Exception\UnauthorizedException + */ + public function testFindAllBlogs_NotGranted() + { + $childDummy = new TaxonomyTerm(); + $taxonomyDummy = new Taxonomy(); + $taxonomyDummy->addTerm($childDummy); + $instanceDummy = new Instance(); + + $this->taxonomyManager->expects($this->once()) + ->method('findTaxonomyByName') + ->with($this->equalTo('blog'), $instanceDummy) + ->will($this->returnValue($taxonomyDummy)); + $this->prepareIsGranted($this->authorizationService, 'blog.get', $childDummy, false); + $this->blogManager->findAllBlogs($instanceDummy); + } + + public function testGetPost_FoundGranted() + { + $repoName = "Blog\Entity\Post"; + $post = new Post(); + $post->setTitle("Post1"); + + $this->prepareResolveClass( + $this->classResolver, + "Blog\Entity\PostInterface", + $repoName + ); + $this->prepareFind($this->objectManager, $repoName, 1, $post); + $this->prepareIsGranted($this->authorizationService, 'blog.post.get', $post, true); + + $this->assertEquals($post, $this->blogManager->getPost(1)); + } + + /** + *@expectedException \Blog\Exception\PostNotFoundException + */ + public function testGetPost_NotFound() + { + $repoName = "Blog\Entity\Post"; + + $this->prepareResolveClass( + $this->classResolver, + PostInterface::class, + $repoName + ); + $this->prepareIsGranted($this->authorizationService, 'blog.post.get', null, true); + $this->prepareFind($this->objectManager, $repoName, 1, null); + $this->blogManager->getPost(1); + } + + public function testUpdatePost_Granted_Valid() + { + $post = new Post(); + $post->setTitle("Title"); + + $form = $this->createMock(FormInterface::class); + $form->expects($this->once())->method('getObject')->will($this->returnValue($post)); + $form->expects($this->any())->method('isValid')->will($this->returnValue(true)); + + $this->prepareIsGranted($this->authorizationService, 'blog.post.update', $post, true); + + //check persist + $this->objectManager->expects($this->once())->method("persist")->with($this->equalTo($post)); + //check event trigger + $this->eventManager->expects($this->once())->method("trigger")->with( + $this->equalTo("update"), + $this->equalTo($this->blogManager), + $this->equalTo(['post' => $post]) + ); + + $this->blogManager->updatePost($form); + } + + /** + *@expectedException \RuntimeException + */ + public function testUpdatePost_Granted_NotValid() + { + $post = new Post(); + $post->setTitle("Title"); + + $form = $this->createMock(FormInterface::class); + $form->expects($this->once())->method('getObject')->will($this->returnValue($post)); + $form->expects($this->any())->method('isValid')->will($this->returnValue(false)); + $this->prepareIsGranted($this->authorizationService, 'blog.post.update', $post, true); + $this->blogManager->updatePost($form); + } + + public function testCreatePost_Granted_Valid() + { + $post = new Post(); + $post->setTitle("Title"); + + $this->prepareResolve( + $this->classResolver, + PostInterface::class, + $post + ); + + $form = $this->createMock(FormInterface::class); + $form->expects($this->any())->method('isValid')->will($this->returnValue(true)); + $this->prepareIsGranted($this->authorizationService, 'blog.post.create', $post, true); + //check persist + $this->objectManager->expects($this->once())->method("persist")->with($this->equalTo($post)); + //check event trigger + $this->eventManager->expects($this->once())->method("trigger")->with( + $this->equalTo("create"), + $this->equalTo($this->blogManager), + $this->equalTo(['post' => $post]) + ); + + $this->blogManager->createPost($form); + } + + /** + *@expectedException \RuntimeException + */ + public function testCreatePost_NotValid() + { + $post = new Post(); + $post->setTitle("Title"); + + $this->prepareResolve( + $this->classResolver, + PostInterface::class, + $post + ); + + $form = $this->createMock(FormInterface::class); + $form->expects($this->any())->method('isValid')->will($this->returnValue(false)); + $this->blogManager->createPost($form); + } +} diff --git a/src/module/Cache/Module.php b/src/module/Cache/Module.php index 1461aafc..cdc496eb 100644 --- a/src/module/Cache/Module.php +++ b/src/module/Cache/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Cache/config/module.config.php b/src/module/Cache/config/module.config.php index d645c049..905579d4 100644 --- a/src/module/Cache/config/module.config.php +++ b/src/module/Cache/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Cache/src/Cache/Factory/RouteStrategyFactory.php b/src/module/Cache/src/Cache/Factory/RouteStrategyFactory.php index 58ca9bf9..d533a99f 100644 --- a/src/module/Cache/src/Cache/Factory/RouteStrategyFactory.php +++ b/src/module/Cache/src/Cache/Factory/RouteStrategyFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Cache/src/Cache/IdGenerator/AjaxGenerator.php b/src/module/Cache/src/Cache/IdGenerator/AjaxGenerator.php index 3be0d085..1f6e1e18 100644 --- a/src/module/Cache/src/Cache/IdGenerator/AjaxGenerator.php +++ b/src/module/Cache/src/Cache/IdGenerator/AjaxGenerator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Cache/src/Cache/Strategy/RouteStrategy.php b/src/module/Cache/src/Cache/Strategy/RouteStrategy.php index fba7a404..6e53c9f4 100644 --- a/src/module/Cache/src/Cache/Strategy/RouteStrategy.php +++ b/src/module/Cache/src/Cache/Strategy/RouteStrategy.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/Module.php b/src/module/CacheInvalidator/Module.php index 0354ef94..699b06ed 100644 --- a/src/module/CacheInvalidator/Module.php +++ b/src/module/CacheInvalidator/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/config/module.config.php b/src/module/CacheInvalidator/config/module.config.php index f91e635b..733ff117 100644 --- a/src/module/CacheInvalidator/config/module.config.php +++ b/src/module/CacheInvalidator/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/CacheListenerFactory.php b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/CacheListenerFactory.php index 8ab61842..6542d9da 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/CacheListenerFactory.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/CacheListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/CacheOptionsFactory.php b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/CacheOptionsFactory.php index da0080eb..74bf30ed 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/CacheOptionsFactory.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/CacheOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/InvalidatorManagerFactory.php b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/InvalidatorManagerFactory.php index 38424bf0..58fe9d95 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/InvalidatorManagerFactory.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/InvalidatorManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/NavigationStorageInvalidatorFactory.php b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/NavigationStorageInvalidatorFactory.php index 6f7aa738..3e606d5c 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/NavigationStorageInvalidatorFactory.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/NavigationStorageInvalidatorFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/RepositoryStorageInvalidatorFactory.php b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/RepositoryStorageInvalidatorFactory.php index 24675f82..abb162cf 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/RepositoryStorageInvalidatorFactory.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/RepositoryStorageInvalidatorFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/StrokerStorageInvalidatorFactory.php b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/StrokerStorageInvalidatorFactory.php index 07fbf7c1..66438d91 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/StrokerStorageInvalidatorFactory.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/StrokerStorageInvalidatorFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/TaxonomyStorageInvalidatorFactory.php b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/TaxonomyStorageInvalidatorFactory.php index e65d6262..029f9f34 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Factory/TaxonomyStorageInvalidatorFactory.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Factory/TaxonomyStorageInvalidatorFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/InvalidatorInterface.php b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/InvalidatorInterface.php index 72a5bcdf..4a31b402 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/InvalidatorInterface.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/InvalidatorInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/InvalidatorManager.php b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/InvalidatorManager.php index df6b7e83..13ce8983 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/InvalidatorManager.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/InvalidatorManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/NavigationStorageInvalidator.php b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/NavigationStorageInvalidator.php index 10ca0146..1ab9ba0d 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/NavigationStorageInvalidator.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/NavigationStorageInvalidator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/RepositoryStorageInvalidator.php b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/RepositoryStorageInvalidator.php index aeabb7a6..4c08ae2b 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/RepositoryStorageInvalidator.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/RepositoryStorageInvalidator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/StrokerStorageInvalidator.php b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/StrokerStorageInvalidator.php index 05987cc0..c77e8845 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/StrokerStorageInvalidator.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/StrokerStorageInvalidator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/TaxonomyStorageInvalidator.php b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/TaxonomyStorageInvalidator.php index 4f7e0ee4..07699339 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/TaxonomyStorageInvalidator.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Invalidator/TaxonomyStorageInvalidator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Listener/CacheListener.php b/src/module/CacheInvalidator/src/CacheInvalidator/Listener/CacheListener.php index 0d3d3159..36105a03 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Listener/CacheListener.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Listener/CacheListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/CacheInvalidator/src/CacheInvalidator/Options/CacheOptions.php b/src/module/CacheInvalidator/src/CacheInvalidator/Options/CacheOptions.php index b143adc4..90572352 100644 --- a/src/module/CacheInvalidator/src/CacheInvalidator/Options/CacheOptions.php +++ b/src/module/CacheInvalidator/src/CacheInvalidator/Options/CacheOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/Module.php b/src/module/ClassResolver/Module.php index 6750aa93..0587fa98 100644 --- a/src/module/ClassResolver/Module.php +++ b/src/module/ClassResolver/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/config/module.config.php b/src/module/ClassResolver/config/module.config.php index e771b949..9c7a47c6 100644 --- a/src/module/ClassResolver/config/module.config.php +++ b/src/module/ClassResolver/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/src/ClassResolver/ClassResolver.php b/src/module/ClassResolver/src/ClassResolver/ClassResolver.php index 1a20b237..56ac7f5e 100644 --- a/src/module/ClassResolver/src/ClassResolver/ClassResolver.php +++ b/src/module/ClassResolver/src/ClassResolver/ClassResolver.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/src/ClassResolver/ClassResolverAwareInterface.php b/src/module/ClassResolver/src/ClassResolver/ClassResolverAwareInterface.php index fc872beb..2c468241 100644 --- a/src/module/ClassResolver/src/ClassResolver/ClassResolverAwareInterface.php +++ b/src/module/ClassResolver/src/ClassResolver/ClassResolverAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/src/ClassResolver/ClassResolverAwareTrait.php b/src/module/ClassResolver/src/ClassResolver/ClassResolverAwareTrait.php index dd05a1f6..c5177f92 100644 --- a/src/module/ClassResolver/src/ClassResolver/ClassResolverAwareTrait.php +++ b/src/module/ClassResolver/src/ClassResolver/ClassResolverAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/src/ClassResolver/ClassResolverFactory.php b/src/module/ClassResolver/src/ClassResolver/ClassResolverFactory.php index 956603cb..2e97f01d 100644 --- a/src/module/ClassResolver/src/ClassResolver/ClassResolverFactory.php +++ b/src/module/ClassResolver/src/ClassResolver/ClassResolverFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/src/ClassResolver/ClassResolverFactoryTrait.php b/src/module/ClassResolver/src/ClassResolver/ClassResolverFactoryTrait.php index 0f244e71..af6c5806 100644 --- a/src/module/ClassResolver/src/ClassResolver/ClassResolverFactoryTrait.php +++ b/src/module/ClassResolver/src/ClassResolver/ClassResolverFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/src/ClassResolver/ClassResolverInterface.php b/src/module/ClassResolver/src/ClassResolver/ClassResolverInterface.php index af0f1aa3..db93cbed 100644 --- a/src/module/ClassResolver/src/ClassResolver/ClassResolverInterface.php +++ b/src/module/ClassResolver/src/ClassResolver/ClassResolverInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/src/ClassResolver/Exception/InvalidArgumentException.php b/src/module/ClassResolver/src/ClassResolver/Exception/InvalidArgumentException.php index bb24c24c..896b5a4e 100644 --- a/src/module/ClassResolver/src/ClassResolver/Exception/InvalidArgumentException.php +++ b/src/module/ClassResolver/src/ClassResolver/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/src/ClassResolver/Exception/RuntimeException.php b/src/module/ClassResolver/src/ClassResolver/Exception/RuntimeException.php index c7ab69f1..37d043ac 100644 --- a/src/module/ClassResolver/src/ClassResolver/Exception/RuntimeException.php +++ b/src/module/ClassResolver/src/ClassResolver/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/test/ClassResolverTest/ClassResolverAwareTraitTest.php b/src/module/ClassResolver/test/ClassResolverTest/ClassResolverAwareTraitTest.php index c438369e..0259c0c8 100644 --- a/src/module/ClassResolver/test/ClassResolverTest/ClassResolverAwareTraitTest.php +++ b/src/module/ClassResolver/test/ClassResolverTest/ClassResolverAwareTraitTest.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,16 +16,15 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ namespace ClassResolverTest; use ClassResolverTest\Fake\ClassResolverAware; -use PHPUnit\Framework\TestCase; -class ClassResolverAwareTraitTest extends TestCase +class ClassResolverAwareTraitTest extends \PHPUnit_Framework_TestCase { protected $trait; @@ -36,7 +35,7 @@ public function setUp() public function testSetGet() { - $mock = $this->getMock('ClassResolver\ClassResolver'); + $mock = $this->createMock('ClassResolver\ClassResolver'); $this->trait->setClassResolver($mock); $this->assertSame($mock, $this->trait->getClassResolver()); } diff --git a/src/module/ClassResolver/test/ClassResolverTest/ClassResolverFactoryTest.php b/src/module/ClassResolver/test/ClassResolverTest/ClassResolverFactoryTest.php index 92f4b42b..8a8e27ef 100644 --- a/src/module/ClassResolver/test/ClassResolverTest/ClassResolverFactoryTest.php +++ b/src/module/ClassResolver/test/ClassResolverTest/ClassResolverFactoryTest.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -24,9 +24,8 @@ use ClassResolver\ClassResolverFactory; use Zend\ServiceManager\ServiceManager; -use PHPUnit\Framework\TestCase; -class ClassResolverFactoryTest extends TestCase +class ClassResolverFactoryTest extends \PHPUnit_Framework_TestCase { public function testFactory() { diff --git a/src/module/ClassResolver/test/ClassResolverTest/ClassResolverTest.php b/src/module/ClassResolver/test/ClassResolverTest/ClassResolverTest.php index 84529d86..fdf87daf 100644 --- a/src/module/ClassResolver/test/ClassResolverTest/ClassResolverTest.php +++ b/src/module/ClassResolver/test/ClassResolverTest/ClassResolverTest.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -25,9 +25,8 @@ use ClassResolver\ClassResolver; use ClassResolverTest\Fake\Foo; use Zend\ServiceManager\ServiceManager; -use PHPUnit\Framework\TestCase; -class ClassResolverTest extends TestCase +class ClassResolverTest extends \PHPUnit_Framework_TestCase { protected $classResolver; protected $serviceLocatorMock; diff --git a/src/module/ClassResolver/test/ClassResolverTest/Fake/Bar.php b/src/module/ClassResolver/test/ClassResolverTest/Fake/Bar.php index fbbf290b..982a82fa 100644 --- a/src/module/ClassResolver/test/ClassResolverTest/Fake/Bar.php +++ b/src/module/ClassResolver/test/ClassResolverTest/Fake/Bar.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/test/ClassResolverTest/Fake/BarInterface.php b/src/module/ClassResolver/test/ClassResolverTest/Fake/BarInterface.php index c762a236..41ea8ed6 100644 --- a/src/module/ClassResolver/test/ClassResolverTest/Fake/BarInterface.php +++ b/src/module/ClassResolver/test/ClassResolverTest/Fake/BarInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/test/ClassResolverTest/Fake/ClassResolverAware.php b/src/module/ClassResolver/test/ClassResolverTest/Fake/ClassResolverAware.php index bec0352b..1f22d974 100644 --- a/src/module/ClassResolver/test/ClassResolverTest/Fake/ClassResolverAware.php +++ b/src/module/ClassResolver/test/ClassResolverTest/Fake/ClassResolverAware.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/test/ClassResolverTest/Fake/Foo.php b/src/module/ClassResolver/test/ClassResolverTest/Fake/Foo.php index 076b09fc..cd8892bc 100644 --- a/src/module/ClassResolver/test/ClassResolverTest/Fake/Foo.php +++ b/src/module/ClassResolver/test/ClassResolverTest/Fake/Foo.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/ClassResolver/test/ClassResolverTest/Fake/FooInterface.php b/src/module/ClassResolver/test/ClassResolverTest/Fake/FooInterface.php index baeadc51..6bff7f5d 100644 --- a/src/module/ClassResolver/test/ClassResolverTest/Fake/FooInterface.php +++ b/src/module/ClassResolver/test/ClassResolverTest/Fake/FooInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/Module.php b/src/module/Common/Module.php index 2d9aff99..6d292d89 100644 --- a/src/module/Common/Module.php +++ b/src/module/Common/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/config/module.config.php b/src/module/Common/config/module.config.php index bc923161..ec81a7f4 100644 --- a/src/module/Common/config/module.config.php +++ b/src/module/Common/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Controller/AbstractAPIAwareActionController.php b/src/module/Common/src/Common/Controller/AbstractAPIAwareActionController.php index 2449893d..3e9314d2 100644 --- a/src/module/Common/src/Common/Controller/AbstractAPIAwareActionController.php +++ b/src/module/Common/src/Common/Controller/AbstractAPIAwareActionController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Controller/Plugin/RedirectHelper.php b/src/module/Common/src/Common/Controller/Plugin/RedirectHelper.php index a59f07f9..8ce2b904 100644 --- a/src/module/Common/src/Common/Controller/Plugin/RedirectHelper.php +++ b/src/module/Common/src/Common/Controller/Plugin/RedirectHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Controller/Plugin/RefererProvider.php b/src/module/Common/src/Common/Controller/Plugin/RefererProvider.php index 2601e01a..8c5c266a 100644 --- a/src/module/Common/src/Common/Controller/Plugin/RefererProvider.php +++ b/src/module/Common/src/Common/Controller/Plugin/RefererProvider.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/CsrfTokenGenerator.php b/src/module/Common/src/Common/CsrfTokenGenerator.php new file mode 100644 index 00000000..074152b3 --- /dev/null +++ b/src/module/Common/src/Common/CsrfTokenGenerator.php @@ -0,0 +1,31 @@ +setAttribute('class', 'g-recaptcha btn btn-success pull-right'); + $this->setAttribute('data-sitekey', $recaptcha_options['api_key']); + + $this->secret = $recaptcha_options['secret']; + } + + /** + * Should return an array specification compatible with + * {@link Zend\InputFilter\Factory::createInputFilter()}. + * + * @return array + */ + public function getInputSpecification() + { + return [ + 'name' => $this->getName(), + 'required' => true, + 'validators' => [ + [ + 'name' => 'Common\Validator\ReCaptchaValidator', + 'options' => [ + 'secret' => $this->secret, + ], + ], + ], + ]; + } +} diff --git a/src/module/Common/src/Common/Form/Element/Title.php b/src/module/Common/src/Common/Form/Element/Title.php index d349deef..a825ae9e 100644 --- a/src/module/Common/src/Common/Form/Element/Title.php +++ b/src/module/Common/src/Common/Form/Element/Title.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,16 +16,16 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ namespace Common\Form\Element; use Zend\Form\Element\Text; -use Zend\InputFilter\InputFilterProviderInterface; +use Zend\InputFilter\InputProviderInterface; -class Title extends Text implements InputFilterProviderInterface +class Title extends Text implements InputProviderInterface { public function __construct() { @@ -41,7 +41,7 @@ public function __construct() * * @return array */ - public function getInputFilterSpecification() + public function getInputSpecification() { return [ 'name' => $this->getName(), diff --git a/src/module/Common/src/Common/Guard/IntGuardTrait.php b/src/module/Common/src/Common/Guard/IntGuardTrait.php index bbef5d8d..ba85dfb6 100644 --- a/src/module/Common/src/Common/Guard/IntGuardTrait.php +++ b/src/module/Common/src/Common/Guard/IntGuardTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Guard/NumericGuardTrait.php b/src/module/Common/src/Common/Guard/NumericGuardTrait.php index b4e56fb5..f880a0b5 100644 --- a/src/module/Common/src/Common/Guard/NumericGuardTrait.php +++ b/src/module/Common/src/Common/Guard/NumericGuardTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Guard/StringGuardTrait.php b/src/module/Common/src/Common/Guard/StringGuardTrait.php index 9cab245d..22dbaed2 100644 --- a/src/module/Common/src/Common/Guard/StringGuardTrait.php +++ b/src/module/Common/src/Common/Guard/StringGuardTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Hydrator/AbstractHydratorPlugin.php b/src/module/Common/src/Common/Hydrator/AbstractHydratorPlugin.php index 0b504eaf..95711c32 100644 --- a/src/module/Common/src/Common/Hydrator/AbstractHydratorPlugin.php +++ b/src/module/Common/src/Common/Hydrator/AbstractHydratorPlugin.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Hydrator/AbstractKeyHydrator.php b/src/module/Common/src/Common/Hydrator/AbstractKeyHydrator.php index 7b9162ed..fc8dd934 100644 --- a/src/module/Common/src/Common/Hydrator/AbstractKeyHydrator.php +++ b/src/module/Common/src/Common/Hydrator/AbstractKeyHydrator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Hydrator/HydratorPluginAwareDoctrineObject.php b/src/module/Common/src/Common/Hydrator/HydratorPluginAwareDoctrineObject.php index 1f063bda..4ccc8cd8 100644 --- a/src/module/Common/src/Common/Hydrator/HydratorPluginAwareDoctrineObject.php +++ b/src/module/Common/src/Common/Hydrator/HydratorPluginAwareDoctrineObject.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Hydrator/HydratorPluginInterface.php b/src/module/Common/src/Common/Hydrator/HydratorPluginInterface.php index f4b2189e..d27b77bf 100644 --- a/src/module/Common/src/Common/Hydrator/HydratorPluginInterface.php +++ b/src/module/Common/src/Common/Hydrator/HydratorPluginInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Hydrator/HydratorPluginManager.php b/src/module/Common/src/Common/Hydrator/HydratorPluginManager.php index 5898f351..e8790aa5 100644 --- a/src/module/Common/src/Common/Hydrator/HydratorPluginManager.php +++ b/src/module/Common/src/Common/Hydrator/HydratorPluginManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Listener/AbstractSharedListenerAggregate.php b/src/module/Common/src/Common/Listener/AbstractSharedListenerAggregate.php index e081b2c6..e501a419 100644 --- a/src/module/Common/src/Common/Listener/AbstractSharedListenerAggregate.php +++ b/src/module/Common/src/Common/Listener/AbstractSharedListenerAggregate.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/ObjectManager/Flushable.php b/src/module/Common/src/Common/ObjectManager/Flushable.php index a9816cad..b05ab1f5 100644 --- a/src/module/Common/src/Common/ObjectManager/Flushable.php +++ b/src/module/Common/src/Common/ObjectManager/Flushable.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Paginator/DoctrinePaginatorFactory.php b/src/module/Common/src/Common/Paginator/DoctrinePaginatorFactory.php index f82925f8..8b64d014 100644 --- a/src/module/Common/src/Common/Paginator/DoctrinePaginatorFactory.php +++ b/src/module/Common/src/Common/Paginator/DoctrinePaginatorFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Router/Slashable.php b/src/module/Common/src/Common/Router/Slashable.php index cfa55f72..ff00addb 100644 --- a/src/module/Common/src/Common/Router/Slashable.php +++ b/src/module/Common/src/Common/Router/Slashable.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Traits/AuthenticationServiceAwareTrait.php b/src/module/Common/src/Common/Traits/AuthenticationServiceAwareTrait.php index 2fd9af61..7a9b0b7d 100644 --- a/src/module/Common/src/Common/Traits/AuthenticationServiceAwareTrait.php +++ b/src/module/Common/src/Common/Traits/AuthenticationServiceAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Traits/ConfigAwareTrait.php b/src/module/Common/src/Common/Traits/ConfigAwareTrait.php index 4936643d..041112fa 100644 --- a/src/module/Common/src/Common/Traits/ConfigAwareTrait.php +++ b/src/module/Common/src/Common/Traits/ConfigAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Traits/EntityManagerAwareTrait.php b/src/module/Common/src/Common/Traits/EntityManagerAwareTrait.php index c15868fb..d4c37462 100644 --- a/src/module/Common/src/Common/Traits/EntityManagerAwareTrait.php +++ b/src/module/Common/src/Common/Traits/EntityManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Traits/FlushableTrait.php b/src/module/Common/src/Common/Traits/FlushableTrait.php index 699c0da4..b314d26d 100644 --- a/src/module/Common/src/Common/Traits/FlushableTrait.php +++ b/src/module/Common/src/Common/Traits/FlushableTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Traits/InstanceManagerTrait.php b/src/module/Common/src/Common/Traits/InstanceManagerTrait.php index 5aa21c2f..0485e139 100644 --- a/src/module/Common/src/Common/Traits/InstanceManagerTrait.php +++ b/src/module/Common/src/Common/Traits/InstanceManagerTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Traits/ObjectManagerAwareTrait.php b/src/module/Common/src/Common/Traits/ObjectManagerAwareTrait.php index 2488b7eb..6a3fe919 100644 --- a/src/module/Common/src/Common/Traits/ObjectManagerAwareTrait.php +++ b/src/module/Common/src/Common/Traits/ObjectManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Traits/RouterAwareTrait.php b/src/module/Common/src/Common/Traits/RouterAwareTrait.php index 97d43465..ed04376c 100644 --- a/src/module/Common/src/Common/Traits/RouterAwareTrait.php +++ b/src/module/Common/src/Common/Traits/RouterAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Validator/CsrfValidator.php b/src/module/Common/src/Common/Validator/CsrfValidator.php index 206b9429..c35770ac 100644 --- a/src/module/Common/src/Common/Validator/CsrfValidator.php +++ b/src/module/Common/src/Common/Validator/CsrfValidator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -24,6 +24,7 @@ namespace Common\Validator; +use Common\CsrfTokenGenerator; use Zend\Validator\Csrf; class CsrfValidator extends Csrf @@ -33,7 +34,7 @@ class CsrfValidator extends Csrf */ protected function generateHash() { - $this->hash = md5(session_id()); + $this->hash = CsrfTokenGenerator::getToken(); $this->setValue($this->hash); $this->initCsrfToken(); diff --git a/src/module/Common/src/Common/Validator/NotIdentical.php b/src/module/Common/src/Common/Validator/NotIdentical.php index 668e7d7b..b69de920 100644 --- a/src/module/Common/src/Common/Validator/NotIdentical.php +++ b/src/module/Common/src/Common/Validator/NotIdentical.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Common/src/Common/Validator/ReCaptchaValidator.php b/src/module/Common/src/Common/Validator/ReCaptchaValidator.php new file mode 100644 index 00000000..9088e17e --- /dev/null +++ b/src/module/Common/src/Common/Validator/ReCaptchaValidator.php @@ -0,0 +1,118 @@ + 'The provided token was invalid', + ]; + + + /** + * ReCaptcha Secret for validator + * + * @var string + */ + private $secret; + + /** + * Sets validator options + * + * @param mixed $options + */ + public function __construct($options) + { + parent::__construct($options); + $this->setSecret($options['secret']); + } + + public function setSecret($secret) + { + $this->secret = $secret; + } + /** + * Returns true if and only if a token has been set and the provided value + * matches that token. + * + * @param mixed $value + * @param array $context + * @return bool + * @throws RuntimeException if the token doesn't exist in the context array + */ + public function isValid($value, array $context = null) + { + $this->setValue($value); + $url = 'https://www.google.com/recaptcha/api/siteverify'; + + $httpHeader = array( + 'Accept: application/json', + 'Content-Type: application/x-www-form-urlencoded', + ); + + $data = array( + 'secret' => $this->secret, + 'response' => $value, + ); + + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_HTTPHEADER, $httpHeader); + curl_setopt($ch, CURLOPT_POST, true); + curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + + $result = json_decode(curl_exec($ch), true); + curl_close($ch); + + if (!$result['success']) { + $this->error(self::INVALID_TOKEN); + } + + return $result['success']; + } +} diff --git a/src/module/Contexter/Module.php b/src/module/Contexter/Module.php index 24684345..4085980a 100644 --- a/src/module/Contexter/Module.php +++ b/src/module/Contexter/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/config/module.config.php b/src/module/Contexter/config/module.config.php index 7971aec9..80d80e2f 100644 --- a/src/module/Contexter/config/module.config.php +++ b/src/module/Contexter/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/config/router.config.php b/src/module/Contexter/config/router.config.php index b89fed89..1a6c1b38 100644 --- a/src/module/Contexter/config/router.config.php +++ b/src/module/Contexter/config/router.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/config/services.config.php b/src/module/Contexter/config/services.config.php index 3467dc39..7fef39f4 100644 --- a/src/module/Contexter/config/services.config.php +++ b/src/module/Contexter/config/services.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Adapter/AbstractAdapter.php b/src/module/Contexter/src/Contexter/Adapter/AbstractAdapter.php index 474380ce..98787c3d 100644 --- a/src/module/Contexter/src/Contexter/Adapter/AbstractAdapter.php +++ b/src/module/Contexter/src/Contexter/Adapter/AbstractAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Adapter/AdapterInterface.php b/src/module/Contexter/src/Contexter/Adapter/AdapterInterface.php index a9610ddf..f6930307 100644 --- a/src/module/Contexter/src/Contexter/Adapter/AdapterInterface.php +++ b/src/module/Contexter/src/Contexter/Adapter/AdapterInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Adapter/EntityControllerAdapter.php b/src/module/Contexter/src/Contexter/Adapter/EntityControllerAdapter.php index 4f05af05..e5346249 100644 --- a/src/module/Contexter/src/Contexter/Adapter/EntityControllerAdapter.php +++ b/src/module/Contexter/src/Contexter/Adapter/EntityControllerAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Adapter/RelatedContentControllerAdapter.php b/src/module/Contexter/src/Contexter/Adapter/RelatedContentControllerAdapter.php index 477f319c..4d0252e8 100644 --- a/src/module/Contexter/src/Contexter/Adapter/RelatedContentControllerAdapter.php +++ b/src/module/Contexter/src/Contexter/Adapter/RelatedContentControllerAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Adapter/SubjectControllerAdapter.php b/src/module/Contexter/src/Contexter/Adapter/SubjectControllerAdapter.php index 1e418355..5dada103 100644 --- a/src/module/Contexter/src/Contexter/Adapter/SubjectControllerAdapter.php +++ b/src/module/Contexter/src/Contexter/Adapter/SubjectControllerAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Adapter/TaxonomyTermControllerAdapter.php b/src/module/Contexter/src/Contexter/Adapter/TaxonomyTermControllerAdapter.php index a205ff98..f41fe14c 100644 --- a/src/module/Contexter/src/Contexter/Adapter/TaxonomyTermControllerAdapter.php +++ b/src/module/Contexter/src/Contexter/Adapter/TaxonomyTermControllerAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Controller/ContextController.php b/src/module/Contexter/src/Contexter/Controller/ContextController.php index 4f2f0db2..d02ffdd8 100644 --- a/src/module/Contexter/src/Contexter/Controller/ContextController.php +++ b/src/module/Contexter/src/Contexter/Controller/ContextController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Entity/Context.php b/src/module/Contexter/src/Contexter/Entity/Context.php index 16dde511..53114a84 100644 --- a/src/module/Contexter/src/Contexter/Entity/Context.php +++ b/src/module/Contexter/src/Contexter/Entity/Context.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Entity/ContextInterface.php b/src/module/Contexter/src/Contexter/Entity/ContextInterface.php index 750daa7a..c4856f9c 100644 --- a/src/module/Contexter/src/Contexter/Entity/ContextInterface.php +++ b/src/module/Contexter/src/Contexter/Entity/ContextInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Entity/Route.php b/src/module/Contexter/src/Contexter/Entity/Route.php index 715297d5..f24229b0 100644 --- a/src/module/Contexter/src/Contexter/Entity/Route.php +++ b/src/module/Contexter/src/Contexter/Entity/Route.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Entity/RouteInterface.php b/src/module/Contexter/src/Contexter/Entity/RouteInterface.php index 121a8d13..36b466de 100644 --- a/src/module/Contexter/src/Contexter/Entity/RouteInterface.php +++ b/src/module/Contexter/src/Contexter/Entity/RouteInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Entity/RouteParameter.php b/src/module/Contexter/src/Contexter/Entity/RouteParameter.php index 24c6cf18..20a9e40a 100644 --- a/src/module/Contexter/src/Contexter/Entity/RouteParameter.php +++ b/src/module/Contexter/src/Contexter/Entity/RouteParameter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Entity/RouteParameterInterface.php b/src/module/Contexter/src/Contexter/Entity/RouteParameterInterface.php index 9e63b241..6d935c5d 100644 --- a/src/module/Contexter/src/Contexter/Entity/RouteParameterInterface.php +++ b/src/module/Contexter/src/Contexter/Entity/RouteParameterInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Exception/ContextNotFoundException.php b/src/module/Contexter/src/Contexter/Exception/ContextNotFoundException.php index 5492ae5d..7bfb4969 100644 --- a/src/module/Contexter/src/Contexter/Exception/ContextNotFoundException.php +++ b/src/module/Contexter/src/Contexter/Exception/ContextNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Exception/InvalidArgumentException.php b/src/module/Contexter/src/Contexter/Exception/InvalidArgumentException.php index 90cce66c..60742dc0 100644 --- a/src/module/Contexter/src/Contexter/Exception/InvalidArgumentException.php +++ b/src/module/Contexter/src/Contexter/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Exception/RuntimeException.php b/src/module/Contexter/src/Contexter/Exception/RuntimeException.php index c5a74d5c..77c6b908 100644 --- a/src/module/Contexter/src/Contexter/Exception/RuntimeException.php +++ b/src/module/Contexter/src/Contexter/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Factory/ContexterHelperFactory.php b/src/module/Contexter/src/Contexter/Factory/ContexterHelperFactory.php index 82233211..fee5a6b8 100644 --- a/src/module/Contexter/src/Contexter/Factory/ContexterHelperFactory.php +++ b/src/module/Contexter/src/Contexter/Factory/ContexterHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Factory/ModuleOptionsFactory.php b/src/module/Contexter/src/Contexter/Factory/ModuleOptionsFactory.php index 83cb2cdd..c998362a 100644 --- a/src/module/Contexter/src/Contexter/Factory/ModuleOptionsFactory.php +++ b/src/module/Contexter/src/Contexter/Factory/ModuleOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Factory/RouterFactory.php b/src/module/Contexter/src/Contexter/Factory/RouterFactory.php index d078a8bb..be6be95c 100644 --- a/src/module/Contexter/src/Contexter/Factory/RouterFactory.php +++ b/src/module/Contexter/src/Contexter/Factory/RouterFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Form/ContextForm.php b/src/module/Contexter/src/Contexter/Form/ContextForm.php index e48f67b5..aba15148 100644 --- a/src/module/Contexter/src/Contexter/Form/ContextForm.php +++ b/src/module/Contexter/src/Contexter/Form/ContextForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Form/ParameterFieldset.php b/src/module/Contexter/src/Contexter/Form/ParameterFieldset.php index 2299660f..be9cbd48 100644 --- a/src/module/Contexter/src/Contexter/Form/ParameterFieldset.php +++ b/src/module/Contexter/src/Contexter/Form/ParameterFieldset.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Form/UrlForm.php b/src/module/Contexter/src/Contexter/Form/UrlForm.php index 822f1257..fe8b72af 100644 --- a/src/module/Contexter/src/Contexter/Form/UrlForm.php +++ b/src/module/Contexter/src/Contexter/Form/UrlForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Manager/ContextManager.php b/src/module/Contexter/src/Contexter/Manager/ContextManager.php index b70b8ab6..108aa061 100644 --- a/src/module/Contexter/src/Contexter/Manager/ContextManager.php +++ b/src/module/Contexter/src/Contexter/Manager/ContextManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Manager/ContextManagerAwareInterface.php b/src/module/Contexter/src/Contexter/Manager/ContextManagerAwareInterface.php index a26aee57..5f76d85c 100644 --- a/src/module/Contexter/src/Contexter/Manager/ContextManagerAwareInterface.php +++ b/src/module/Contexter/src/Contexter/Manager/ContextManagerAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Manager/ContextManagerAwareTrait.php b/src/module/Contexter/src/Contexter/Manager/ContextManagerAwareTrait.php index 512a8b3d..2247aa94 100644 --- a/src/module/Contexter/src/Contexter/Manager/ContextManagerAwareTrait.php +++ b/src/module/Contexter/src/Contexter/Manager/ContextManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Manager/ContextManagerInterface.php b/src/module/Contexter/src/Contexter/Manager/ContextManagerInterface.php index f0fef2c8..bfc9ff6f 100644 --- a/src/module/Contexter/src/Contexter/Manager/ContextManagerInterface.php +++ b/src/module/Contexter/src/Contexter/Manager/ContextManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Options/ModuleOptions.php b/src/module/Contexter/src/Contexter/Options/ModuleOptions.php index ff607914..eb822559 100644 --- a/src/module/Contexter/src/Contexter/Options/ModuleOptions.php +++ b/src/module/Contexter/src/Contexter/Options/ModuleOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Router/Router.php b/src/module/Contexter/src/Contexter/Router/Router.php index 7df9f457..18256b89 100644 --- a/src/module/Contexter/src/Contexter/Router/Router.php +++ b/src/module/Contexter/src/Contexter/Router/Router.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Router/RouterAwareInterface.php b/src/module/Contexter/src/Contexter/Router/RouterAwareInterface.php index f684afd5..43389ac6 100644 --- a/src/module/Contexter/src/Contexter/Router/RouterAwareInterface.php +++ b/src/module/Contexter/src/Contexter/Router/RouterAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Router/RouterAwareTrait.php b/src/module/Contexter/src/Contexter/Router/RouterAwareTrait.php index 17caf4db..30874272 100644 --- a/src/module/Contexter/src/Contexter/Router/RouterAwareTrait.php +++ b/src/module/Contexter/src/Contexter/Router/RouterAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/Router/RouterInterface.php b/src/module/Contexter/src/Contexter/Router/RouterInterface.php index 585da11a..5faf9c5b 100644 --- a/src/module/Contexter/src/Contexter/Router/RouterInterface.php +++ b/src/module/Contexter/src/Contexter/Router/RouterInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Contexter/src/Contexter/View/Helper/Contexter.php b/src/module/Contexter/src/Contexter/View/Helper/Contexter.php index 231ec98c..2735886f 100644 --- a/src/module/Contexter/src/Contexter/View/Helper/Contexter.php +++ b/src/module/Contexter/src/Contexter/View/Helper/Contexter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/Module.php b/src/module/Discussion/Module.php index 5c7eb89a..f56ef0d1 100644 --- a/src/module/Discussion/Module.php +++ b/src/module/Discussion/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/config/module.config.php b/src/module/Discussion/config/module.config.php index ad0bcc96..14babb57 100644 --- a/src/module/Discussion/config/module.config.php +++ b/src/module/Discussion/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Controller/AbstractController.php b/src/module/Discussion/src/Discussion/Controller/AbstractController.php index 8adadbe7..23f1b0fa 100644 --- a/src/module/Discussion/src/Discussion/Controller/AbstractController.php +++ b/src/module/Discussion/src/Discussion/Controller/AbstractController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Controller/DiscussionController.php b/src/module/Discussion/src/Discussion/Controller/DiscussionController.php index 1228dc60..5ef16282 100644 --- a/src/module/Discussion/src/Discussion/Controller/DiscussionController.php +++ b/src/module/Discussion/src/Discussion/Controller/DiscussionController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Controller/DiscussionsController.php b/src/module/Discussion/src/Discussion/Controller/DiscussionsController.php index 1a79dfdc..bff33b8f 100644 --- a/src/module/Discussion/src/Discussion/Controller/DiscussionsController.php +++ b/src/module/Discussion/src/Discussion/Controller/DiscussionsController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/DiscussionManager.php b/src/module/Discussion/src/Discussion/DiscussionManager.php index d0873cff..ee773e45 100644 --- a/src/module/Discussion/src/Discussion/DiscussionManager.php +++ b/src/module/Discussion/src/Discussion/DiscussionManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/DiscussionManagerAwareTrait.php b/src/module/Discussion/src/Discussion/DiscussionManagerAwareTrait.php index d84667a3..bb47fbad 100644 --- a/src/module/Discussion/src/Discussion/DiscussionManagerAwareTrait.php +++ b/src/module/Discussion/src/Discussion/DiscussionManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/DiscussionManagerInterface.php b/src/module/Discussion/src/Discussion/DiscussionManagerInterface.php index 193c92c8..ceb5790b 100644 --- a/src/module/Discussion/src/Discussion/DiscussionManagerInterface.php +++ b/src/module/Discussion/src/Discussion/DiscussionManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Entity/Comment.php b/src/module/Discussion/src/Discussion/Entity/Comment.php index b1b8779a..1cbe749f 100644 --- a/src/module/Discussion/src/Discussion/Entity/Comment.php +++ b/src/module/Discussion/src/Discussion/Entity/Comment.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Entity/CommentInterface.php b/src/module/Discussion/src/Discussion/Entity/CommentInterface.php index a4457ae9..175147b7 100644 --- a/src/module/Discussion/src/Discussion/Entity/CommentInterface.php +++ b/src/module/Discussion/src/Discussion/Entity/CommentInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Entity/Vote.php b/src/module/Discussion/src/Discussion/Entity/Vote.php index 8a6e89ec..6eb16f78 100644 --- a/src/module/Discussion/src/Discussion/Entity/Vote.php +++ b/src/module/Discussion/src/Discussion/Entity/Vote.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Entity/VoteInterface.php b/src/module/Discussion/src/Discussion/Entity/VoteInterface.php index 3db8e877..9ded86a5 100644 --- a/src/module/Discussion/src/Discussion/Entity/VoteInterface.php +++ b/src/module/Discussion/src/Discussion/Entity/VoteInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Exception/CommentNotFoundException.php b/src/module/Discussion/src/Discussion/Exception/CommentNotFoundException.php index 8539ec58..e4cb5f29 100644 --- a/src/module/Discussion/src/Discussion/Exception/CommentNotFoundException.php +++ b/src/module/Discussion/src/Discussion/Exception/CommentNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Exception/InvalidArgumentException.php b/src/module/Discussion/src/Discussion/Exception/InvalidArgumentException.php index d96caf3b..390eb2a3 100644 --- a/src/module/Discussion/src/Discussion/Exception/InvalidArgumentException.php +++ b/src/module/Discussion/src/Discussion/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Exception/RuntimeException.php b/src/module/Discussion/src/Discussion/Exception/RuntimeException.php index ccda19e9..186ec080 100644 --- a/src/module/Discussion/src/Discussion/Exception/RuntimeException.php +++ b/src/module/Discussion/src/Discussion/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Factory/DiscussionHelperFactory.php b/src/module/Discussion/src/Discussion/Factory/DiscussionHelperFactory.php index 1a39a1cf..42e2a647 100644 --- a/src/module/Discussion/src/Discussion/Factory/DiscussionHelperFactory.php +++ b/src/module/Discussion/src/Discussion/Factory/DiscussionHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Factory/DiscussionManagerFactory.php b/src/module/Discussion/src/Discussion/Factory/DiscussionManagerFactory.php index e8f16cec..656acc85 100644 --- a/src/module/Discussion/src/Discussion/Factory/DiscussionManagerFactory.php +++ b/src/module/Discussion/src/Discussion/Factory/DiscussionManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Form/AbstractForm.php b/src/module/Discussion/src/Discussion/Form/AbstractForm.php index 3309e6c7..69c9766f 100644 --- a/src/module/Discussion/src/Discussion/Form/AbstractForm.php +++ b/src/module/Discussion/src/Discussion/Form/AbstractForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Form/CommentForm.php b/src/module/Discussion/src/Discussion/Form/CommentForm.php index 83b8ede9..ea5a06f7 100644 --- a/src/module/Discussion/src/Discussion/Form/CommentForm.php +++ b/src/module/Discussion/src/Discussion/Form/CommentForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/Form/DiscussionForm.php b/src/module/Discussion/src/Discussion/Form/DiscussionForm.php index f68a3d89..b41489f2 100644 --- a/src/module/Discussion/src/Discussion/Form/DiscussionForm.php +++ b/src/module/Discussion/src/Discussion/Form/DiscussionForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Discussion/src/Discussion/View/Helper/Discussion.php b/src/module/Discussion/src/Discussion/View/Helper/Discussion.php index c7571ed6..f4a1d0cf 100644 --- a/src/module/Discussion/src/Discussion/View/Helper/Discussion.php +++ b/src/module/Discussion/src/Discussion/View/Helper/Discussion.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/Module.php b/src/module/Entity/Module.php index e70762b9..4ef034a1 100644 --- a/src/module/Entity/Module.php +++ b/src/module/Entity/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/config/module.config.php b/src/module/Entity/config/module.config.php index 5a1e9735..967c89a6 100644 --- a/src/module/Entity/config/module.config.php +++ b/src/module/Entity/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/config/route.config.php b/src/module/Entity/config/route.config.php index dffc7d70..052fccd7 100644 --- a/src/module/Entity/config/route.config.php +++ b/src/module/Entity/config/route.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/config/types.config.php b/src/module/Entity/config/types.config.php index b7bd9615..4c88592b 100644 --- a/src/module/Entity/config/types.config.php +++ b/src/module/Entity/config/types.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Controller/AbstractController.php b/src/module/Entity/src/Entity/Controller/AbstractController.php index 59a74178..d701d0a7 100644 --- a/src/module/Entity/src/Entity/Controller/AbstractController.php +++ b/src/module/Entity/src/Entity/Controller/AbstractController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Controller/ApiController.php b/src/module/Entity/src/Entity/Controller/ApiController.php index a552190d..c86f0f91 100644 --- a/src/module/Entity/src/Entity/Controller/ApiController.php +++ b/src/module/Entity/src/Entity/Controller/ApiController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Controller/EntityController.php b/src/module/Entity/src/Entity/Controller/EntityController.php index 27fa6a8b..b9e72651 100644 --- a/src/module/Entity/src/Entity/Controller/EntityController.php +++ b/src/module/Entity/src/Entity/Controller/EntityController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Controller/LicenseController.php b/src/module/Entity/src/Entity/Controller/LicenseController.php index 9f4c538b..2a43c8c4 100644 --- a/src/module/Entity/src/Entity/Controller/LicenseController.php +++ b/src/module/Entity/src/Entity/Controller/LicenseController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Controller/LinkController.php b/src/module/Entity/src/Entity/Controller/LinkController.php index cb95a1f7..498c8161 100644 --- a/src/module/Entity/src/Entity/Controller/LinkController.php +++ b/src/module/Entity/src/Entity/Controller/LinkController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Controller/PageController.php b/src/module/Entity/src/Entity/Controller/PageController.php index 44094d79..b6951983 100644 --- a/src/module/Entity/src/Entity/Controller/PageController.php +++ b/src/module/Entity/src/Entity/Controller/PageController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Controller/RepositoryController.php b/src/module/Entity/src/Entity/Controller/RepositoryController.php index 87e5d92d..c616cc9e 100644 --- a/src/module/Entity/src/Entity/Controller/RepositoryController.php +++ b/src/module/Entity/src/Entity/Controller/RepositoryController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Controller/TOCController.php b/src/module/Entity/src/Entity/Controller/TOCController.php index d77e169c..a9ccdcf6 100644 --- a/src/module/Entity/src/Entity/Controller/TOCController.php +++ b/src/module/Entity/src/Entity/Controller/TOCController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Controller/TaxonomyController.php b/src/module/Entity/src/Entity/Controller/TaxonomyController.php index 6242a544..ca376068 100644 --- a/src/module/Entity/src/Entity/Controller/TaxonomyController.php +++ b/src/module/Entity/src/Entity/Controller/TaxonomyController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Entity/Entity.php b/src/module/Entity/src/Entity/Entity/Entity.php index b08b8fda..52142f2d 100644 --- a/src/module/Entity/src/Entity/Entity/Entity.php +++ b/src/module/Entity/src/Entity/Entity/Entity.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Entity/EntityInterface.php b/src/module/Entity/src/Entity/Entity/EntityInterface.php index 3d40d30d..fed6fa81 100644 --- a/src/module/Entity/src/Entity/Entity/EntityInterface.php +++ b/src/module/Entity/src/Entity/Entity/EntityInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Entity/EntityLink.php b/src/module/Entity/src/Entity/Entity/EntityLink.php index fd720d67..f9b3bbf0 100644 --- a/src/module/Entity/src/Entity/Entity/EntityLink.php +++ b/src/module/Entity/src/Entity/Entity/EntityLink.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Entity/Revision.php b/src/module/Entity/src/Entity/Entity/Revision.php index e2e7cb23..bf42b2c0 100644 --- a/src/module/Entity/src/Entity/Entity/Revision.php +++ b/src/module/Entity/src/Entity/Entity/Revision.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Entity/RevisionField.php b/src/module/Entity/src/Entity/Entity/RevisionField.php index f48dd249..efe81bb4 100644 --- a/src/module/Entity/src/Entity/Entity/RevisionField.php +++ b/src/module/Entity/src/Entity/Entity/RevisionField.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Entity/RevisionInterface.php b/src/module/Entity/src/Entity/Entity/RevisionInterface.php index af04c76e..e7ce1cd2 100644 --- a/src/module/Entity/src/Entity/Entity/RevisionInterface.php +++ b/src/module/Entity/src/Entity/Entity/RevisionInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Exception/BadMethodCallException.php b/src/module/Entity/src/Entity/Exception/BadMethodCallException.php index a7e579cf..b83acfce 100644 --- a/src/module/Entity/src/Entity/Exception/BadMethodCallException.php +++ b/src/module/Entity/src/Entity/Exception/BadMethodCallException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Exception/ClassNotFoundException.php b/src/module/Entity/src/Entity/Exception/ClassNotFoundException.php index 03e558c2..02bbed83 100644 --- a/src/module/Entity/src/Entity/Exception/ClassNotFoundException.php +++ b/src/module/Entity/src/Entity/Exception/ClassNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Exception/EntityNotFoundException.php b/src/module/Entity/src/Entity/Exception/EntityNotFoundException.php index e5721f52..1a486ed7 100644 --- a/src/module/Entity/src/Entity/Exception/EntityNotFoundException.php +++ b/src/module/Entity/src/Entity/Exception/EntityNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Exception/InvalidArgumentException.php b/src/module/Entity/src/Entity/Exception/InvalidArgumentException.php index 5ec169ac..71d4b204 100644 --- a/src/module/Entity/src/Entity/Exception/InvalidArgumentException.php +++ b/src/module/Entity/src/Entity/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Exception/RuntimeException.php b/src/module/Entity/src/Entity/Exception/RuntimeException.php index 6d589b30..6c103b63 100644 --- a/src/module/Entity/src/Entity/Exception/RuntimeException.php +++ b/src/module/Entity/src/Entity/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/AbstractFormFactory.php b/src/module/Entity/src/Entity/Factory/AbstractFormFactory.php index 9b1e3b47..2282be5b 100644 --- a/src/module/Entity/src/Entity/Factory/AbstractFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/AbstractFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/ApiControllerFactory.php b/src/module/Entity/src/Entity/Factory/ApiControllerFactory.php index d155912c..2fc5d491 100644 --- a/src/module/Entity/src/Entity/Factory/ApiControllerFactory.php +++ b/src/module/Entity/src/Entity/Factory/ApiControllerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/AppletFormFactory.php b/src/module/Entity/src/Entity/Factory/AppletFormFactory.php index 9092d8ae..02106b26 100644 --- a/src/module/Entity/src/Entity/Factory/AppletFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/AppletFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/ArticleFormFactory.php b/src/module/Entity/src/Entity/Factory/ArticleFormFactory.php index 147c4161..f8c74133 100644 --- a/src/module/Entity/src/Entity/Factory/ArticleFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/ArticleFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/EntityHelperFactory.php b/src/module/Entity/src/Entity/Factory/EntityHelperFactory.php index fc1aa310..deb2adf2 100644 --- a/src/module/Entity/src/Entity/Factory/EntityHelperFactory.php +++ b/src/module/Entity/src/Entity/Factory/EntityHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/GroupedTextExerciseFormFactory.php b/src/module/Entity/src/Entity/Factory/GroupedTextExerciseFormFactory.php index add9afbc..a301d0ae 100644 --- a/src/module/Entity/src/Entity/Factory/GroupedTextExerciseFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/GroupedTextExerciseFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/InputChallengeFormFactory.php b/src/module/Entity/src/Entity/Factory/InputChallengeFormFactory.php index 8d7c9817..62ba5766 100644 --- a/src/module/Entity/src/Entity/Factory/InputChallengeFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/InputChallengeFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/MathPuzzleFormFactory.php b/src/module/Entity/src/Entity/Factory/MathPuzzleFormFactory.php index 5f64b4e9..4fbb0877 100644 --- a/src/module/Entity/src/Entity/Factory/MathPuzzleFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/MathPuzzleFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/ModuleFormFactory.php b/src/module/Entity/src/Entity/Factory/ModuleFormFactory.php index 6d958040..4d12b45c 100644 --- a/src/module/Entity/src/Entity/Factory/ModuleFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/ModuleFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/ModuleOptionsFactory.php b/src/module/Entity/src/Entity/Factory/ModuleOptionsFactory.php index 9a2a2d85..c7d66736 100644 --- a/src/module/Entity/src/Entity/Factory/ModuleOptionsFactory.php +++ b/src/module/Entity/src/Entity/Factory/ModuleOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/ModulePageFormFactory.php b/src/module/Entity/src/Entity/Factory/ModulePageFormFactory.php index df3d835d..73942fb3 100644 --- a/src/module/Entity/src/Entity/Factory/ModulePageFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/ModulePageFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/MultipleChoiceRightAnswerFormFactory.php b/src/module/Entity/src/Entity/Factory/MultipleChoiceRightAnswerFormFactory.php index c16f73eb..0771d464 100644 --- a/src/module/Entity/src/Entity/Factory/MultipleChoiceRightAnswerFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/MultipleChoiceRightAnswerFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/MultipleChoiceWrongAnswerFormFactory.php b/src/module/Entity/src/Entity/Factory/MultipleChoiceWrongAnswerFormFactory.php index dbd20d34..b21210be 100644 --- a/src/module/Entity/src/Entity/Factory/MultipleChoiceWrongAnswerFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/MultipleChoiceWrongAnswerFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/SingleChoiceAnswerFormFactory.php b/src/module/Entity/src/Entity/Factory/SingleChoiceAnswerFormFactory.php index 68aa8987..a74030f5 100644 --- a/src/module/Entity/src/Entity/Factory/SingleChoiceAnswerFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/SingleChoiceAnswerFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/TextExerciseFormFactory.php b/src/module/Entity/src/Entity/Factory/TextExerciseFormFactory.php index 24dd627e..18464e29 100644 --- a/src/module/Entity/src/Entity/Factory/TextExerciseFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/TextExerciseFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/TextExerciseGroupFormFactory.php b/src/module/Entity/src/Entity/Factory/TextExerciseGroupFormFactory.php index 6d26d769..320b3c99 100644 --- a/src/module/Entity/src/Entity/Factory/TextExerciseGroupFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/TextExerciseGroupFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/TextHintFormFactory.php b/src/module/Entity/src/Entity/Factory/TextHintFormFactory.php index 9db05078..8d2afb4d 100644 --- a/src/module/Entity/src/Entity/Factory/TextHintFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/TextHintFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/TextSolutionFormFactory.php b/src/module/Entity/src/Entity/Factory/TextSolutionFormFactory.php index b2bfec34..3b52d1f9 100644 --- a/src/module/Entity/src/Entity/Factory/TextSolutionFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/TextSolutionFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Factory/VideoFormFactory.php b/src/module/Entity/src/Entity/Factory/VideoFormFactory.php index 19a7e696..4f6fa077 100644 --- a/src/module/Entity/src/Entity/Factory/VideoFormFactory.php +++ b/src/module/Entity/src/Entity/Factory/VideoFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Filter/EntityAgeCollectionFilter.php b/src/module/Entity/src/Entity/Filter/EntityAgeCollectionFilter.php index 2270aaa8..d277e3f0 100644 --- a/src/module/Entity/src/Entity/Filter/EntityAgeCollectionFilter.php +++ b/src/module/Entity/src/Entity/Filter/EntityAgeCollectionFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/AppletForm.php b/src/module/Entity/src/Entity/Form/AppletForm.php index fc3fed07..a815dc32 100644 --- a/src/module/Entity/src/Entity/Form/AppletForm.php +++ b/src/module/Entity/src/Entity/Form/AppletForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/ArticleForm.php b/src/module/Entity/src/Entity/Form/ArticleForm.php index 5f781622..f0602c6e 100644 --- a/src/module/Entity/src/Entity/Form/ArticleForm.php +++ b/src/module/Entity/src/Entity/Form/ArticleForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/Controls.php b/src/module/Entity/src/Entity/Form/Controls.php index 53121cb8..ffda17f9 100644 --- a/src/module/Entity/src/Entity/Form/Controls.php +++ b/src/module/Entity/src/Entity/Form/Controls.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/Element/MetaDescription.php b/src/module/Entity/src/Entity/Form/Element/MetaDescription.php index 455d1f92..72fa5a74 100644 --- a/src/module/Entity/src/Entity/Form/Element/MetaDescription.php +++ b/src/module/Entity/src/Entity/Form/Element/MetaDescription.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,16 +16,16 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ namespace Entity\Form\Element; use Zend\Form\Element\Text; -use Zend\InputFilter\InputFilterProviderInterface; +use Zend\InputFilter\InputProviderInterface; -class MetaDescription extends Text implements InputFilterProviderInterface +class MetaDescription extends Text implements InputProviderInterface { public function __construct() { @@ -42,7 +42,7 @@ public function __construct() * * @return array */ - public function getInputFilterSpecification() + public function getInputSpecification() { return [ 'name' => $this->getName(), diff --git a/src/module/Entity/src/Entity/Form/Element/MetaTitle.php b/src/module/Entity/src/Entity/Form/Element/MetaTitle.php index 32d34761..a600387d 100644 --- a/src/module/Entity/src/Entity/Form/Element/MetaTitle.php +++ b/src/module/Entity/src/Entity/Form/Element/MetaTitle.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,16 +16,16 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ namespace Entity\Form\Element; use Zend\Form\Element\Text; -use Zend\InputFilter\InputFilterProviderInterface; +use Zend\InputFilter\InputProviderInterface; -class MetaTitle extends Text implements InputFilterProviderInterface +class MetaTitle extends Text implements InputProviderInterface { public function __construct() { @@ -42,7 +42,7 @@ public function __construct() * * @return array */ - public function getInputFilterSpecification() + public function getInputSpecification() { return [ 'name' => $this->getName(), diff --git a/src/module/Entity/src/Entity/Form/GroupedTextExerciseForm.php b/src/module/Entity/src/Entity/Form/GroupedTextExerciseForm.php index 77ce5e0e..5e6b3cfd 100644 --- a/src/module/Entity/src/Entity/Form/GroupedTextExerciseForm.php +++ b/src/module/Entity/src/Entity/Form/GroupedTextExerciseForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/InputChallengeForm.php b/src/module/Entity/src/Entity/Form/InputChallengeForm.php index 3dd0e457..2d140daa 100644 --- a/src/module/Entity/src/Entity/Form/InputChallengeForm.php +++ b/src/module/Entity/src/Entity/Form/InputChallengeForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/MathPuzzleForm.php b/src/module/Entity/src/Entity/Form/MathPuzzleForm.php index 28484a17..bdb34663 100644 --- a/src/module/Entity/src/Entity/Form/MathPuzzleForm.php +++ b/src/module/Entity/src/Entity/Form/MathPuzzleForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/ModuleForm.php b/src/module/Entity/src/Entity/Form/ModuleForm.php index 48b9fd61..8a4ba0de 100644 --- a/src/module/Entity/src/Entity/Form/ModuleForm.php +++ b/src/module/Entity/src/Entity/Form/ModuleForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/ModulePageForm.php b/src/module/Entity/src/Entity/Form/ModulePageForm.php index 49fae929..77a5df5b 100644 --- a/src/module/Entity/src/Entity/Form/ModulePageForm.php +++ b/src/module/Entity/src/Entity/Form/ModulePageForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/MoveForm.php b/src/module/Entity/src/Entity/Form/MoveForm.php index 5280e901..2a1004e8 100644 --- a/src/module/Entity/src/Entity/Form/MoveForm.php +++ b/src/module/Entity/src/Entity/Form/MoveForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/MultipleChoiceRightAnswerForm.php b/src/module/Entity/src/Entity/Form/MultipleChoiceRightAnswerForm.php index 08e9fde0..d197a118 100644 --- a/src/module/Entity/src/Entity/Form/MultipleChoiceRightAnswerForm.php +++ b/src/module/Entity/src/Entity/Form/MultipleChoiceRightAnswerForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/MultipleChoiceWrongAnswerForm.php b/src/module/Entity/src/Entity/Form/MultipleChoiceWrongAnswerForm.php index 662b550e..b74cffb6 100644 --- a/src/module/Entity/src/Entity/Form/MultipleChoiceWrongAnswerForm.php +++ b/src/module/Entity/src/Entity/Form/MultipleChoiceWrongAnswerForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/SingleChoiceAnswerForm.php b/src/module/Entity/src/Entity/Form/SingleChoiceAnswerForm.php index c396c659..40307889 100644 --- a/src/module/Entity/src/Entity/Form/SingleChoiceAnswerForm.php +++ b/src/module/Entity/src/Entity/Form/SingleChoiceAnswerForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/TextExerciseForm.php b/src/module/Entity/src/Entity/Form/TextExerciseForm.php index e9d9a5cf..0396d3c4 100644 --- a/src/module/Entity/src/Entity/Form/TextExerciseForm.php +++ b/src/module/Entity/src/Entity/Form/TextExerciseForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/TextExerciseGroupForm.php b/src/module/Entity/src/Entity/Form/TextExerciseGroupForm.php index 9a6b75a5..0722afe9 100644 --- a/src/module/Entity/src/Entity/Form/TextExerciseGroupForm.php +++ b/src/module/Entity/src/Entity/Form/TextExerciseGroupForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/TextHintForm.php b/src/module/Entity/src/Entity/Form/TextHintForm.php index d5ab72d4..1393911f 100644 --- a/src/module/Entity/src/Entity/Form/TextHintForm.php +++ b/src/module/Entity/src/Entity/Form/TextHintForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/TextSolutionForm.php b/src/module/Entity/src/Entity/Form/TextSolutionForm.php index 5b8fb7ba..0886ebfa 100644 --- a/src/module/Entity/src/Entity/Form/TextSolutionForm.php +++ b/src/module/Entity/src/Entity/Form/TextSolutionForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Form/VideoForm.php b/src/module/Entity/src/Entity/Form/VideoForm.php index 8e04f9c0..36a1a08f 100644 --- a/src/module/Entity/src/Entity/Form/VideoForm.php +++ b/src/module/Entity/src/Entity/Form/VideoForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Listener/AbstractDispatchListener.php b/src/module/Entity/src/Entity/Listener/AbstractDispatchListener.php index 8a86adc8..8f5429c2 100644 --- a/src/module/Entity/src/Entity/Listener/AbstractDispatchListener.php +++ b/src/module/Entity/src/Entity/Listener/AbstractDispatchListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Listener/EntityControllerListener.php b/src/module/Entity/src/Entity/Listener/EntityControllerListener.php index 9473858f..458fe3da 100644 --- a/src/module/Entity/src/Entity/Listener/EntityControllerListener.php +++ b/src/module/Entity/src/Entity/Listener/EntityControllerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Listener/PageControllerListener.php b/src/module/Entity/src/Entity/Listener/PageControllerListener.php index 026b5537..3233347a 100644 --- a/src/module/Entity/src/Entity/Listener/PageControllerListener.php +++ b/src/module/Entity/src/Entity/Listener/PageControllerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Listener/RepositoryControllerListener.php b/src/module/Entity/src/Entity/Listener/RepositoryControllerListener.php index cd965cc1..9680e4e8 100644 --- a/src/module/Entity/src/Entity/Listener/RepositoryControllerListener.php +++ b/src/module/Entity/src/Entity/Listener/RepositoryControllerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Listener/TOCControllerListener.php b/src/module/Entity/src/Entity/Listener/TOCControllerListener.php index 7e06c787..bc8e1c0d 100644 --- a/src/module/Entity/src/Entity/Listener/TOCControllerListener.php +++ b/src/module/Entity/src/Entity/Listener/TOCControllerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Manager/EntityManager.php b/src/module/Entity/src/Entity/Manager/EntityManager.php index 6cdb45ae..45c15028 100644 --- a/src/module/Entity/src/Entity/Manager/EntityManager.php +++ b/src/module/Entity/src/Entity/Manager/EntityManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Manager/EntityManagerAwareInterface.php b/src/module/Entity/src/Entity/Manager/EntityManagerAwareInterface.php index d58fb6c7..ad7a28a4 100644 --- a/src/module/Entity/src/Entity/Manager/EntityManagerAwareInterface.php +++ b/src/module/Entity/src/Entity/Manager/EntityManagerAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Manager/EntityManagerAwareTrait.php b/src/module/Entity/src/Entity/Manager/EntityManagerAwareTrait.php index 8ab24501..b538df01 100644 --- a/src/module/Entity/src/Entity/Manager/EntityManagerAwareTrait.php +++ b/src/module/Entity/src/Entity/Manager/EntityManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Manager/EntityManagerInterface.php b/src/module/Entity/src/Entity/Manager/EntityManagerInterface.php index 50d5e35d..ee22128b 100644 --- a/src/module/Entity/src/Entity/Manager/EntityManagerInterface.php +++ b/src/module/Entity/src/Entity/Manager/EntityManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Options/AbstractLinkOptions.php b/src/module/Entity/src/Entity/Options/AbstractLinkOptions.php index a36fabdf..f1e79374 100644 --- a/src/module/Entity/src/Entity/Options/AbstractLinkOptions.php +++ b/src/module/Entity/src/Entity/Options/AbstractLinkOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Options/ComponentOptionsInterface.php b/src/module/Entity/src/Entity/Options/ComponentOptionsInterface.php index 67f344f4..6e30688f 100644 --- a/src/module/Entity/src/Entity/Options/ComponentOptionsInterface.php +++ b/src/module/Entity/src/Entity/Options/ComponentOptionsInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Options/EntityOptions.php b/src/module/Entity/src/Entity/Options/EntityOptions.php index ad808657..580ce4c4 100644 --- a/src/module/Entity/src/Entity/Options/EntityOptions.php +++ b/src/module/Entity/src/Entity/Options/EntityOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Options/LinkOptions.php b/src/module/Entity/src/Entity/Options/LinkOptions.php index 98a2857b..dd61a6bc 100644 --- a/src/module/Entity/src/Entity/Options/LinkOptions.php +++ b/src/module/Entity/src/Entity/Options/LinkOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Options/ModuleOptions.php b/src/module/Entity/src/Entity/Options/ModuleOptions.php index 739a7876..c86aa86f 100644 --- a/src/module/Entity/src/Entity/Options/ModuleOptions.php +++ b/src/module/Entity/src/Entity/Options/ModuleOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Options/ModuleOptionsAwareTrait.php b/src/module/Entity/src/Entity/Options/ModuleOptionsAwareTrait.php index 7110441f..1ce7e6b2 100644 --- a/src/module/Entity/src/Entity/Options/ModuleOptionsAwareTrait.php +++ b/src/module/Entity/src/Entity/Options/ModuleOptionsAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Options/RedirectOptions.php b/src/module/Entity/src/Entity/Options/RedirectOptions.php index cba22825..6c774c74 100644 --- a/src/module/Entity/src/Entity/Options/RedirectOptions.php +++ b/src/module/Entity/src/Entity/Options/RedirectOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Options/RelatedContentOptions.php b/src/module/Entity/src/Entity/Options/RelatedContentOptions.php index 6a948a9c..70e3a438 100644 --- a/src/module/Entity/src/Entity/Options/RelatedContentOptions.php +++ b/src/module/Entity/src/Entity/Options/RelatedContentOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Options/RepositoryOptions.php b/src/module/Entity/src/Entity/Options/RepositoryOptions.php index bd4f758d..2e880ac0 100644 --- a/src/module/Entity/src/Entity/Options/RepositoryOptions.php +++ b/src/module/Entity/src/Entity/Options/RepositoryOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Options/SearchOptions.php b/src/module/Entity/src/Entity/Options/SearchOptions.php index ab19a18a..4b45c20e 100644 --- a/src/module/Entity/src/Entity/Options/SearchOptions.php +++ b/src/module/Entity/src/Entity/Options/SearchOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Provider/TokenProvider.php b/src/module/Entity/src/Entity/Provider/TokenProvider.php index 8a42a116..5cc99899 100644 --- a/src/module/Entity/src/Entity/Provider/TokenProvider.php +++ b/src/module/Entity/src/Entity/Provider/TokenProvider.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Result/Result.php b/src/module/Entity/src/Entity/Result/Result.php index 84c4aa9a..e46bf12b 100644 --- a/src/module/Entity/src/Entity/Result/Result.php +++ b/src/module/Entity/src/Entity/Result/Result.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Result/ResultInterface.php b/src/module/Entity/src/Entity/Result/ResultInterface.php index 142bbb1b..647b118b 100644 --- a/src/module/Entity/src/Entity/Result/ResultInterface.php +++ b/src/module/Entity/src/Entity/Result/ResultInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/Result/UrlResult.php b/src/module/Entity/src/Entity/Result/UrlResult.php index 0eccdbd1..550af125 100644 --- a/src/module/Entity/src/Entity/Result/UrlResult.php +++ b/src/module/Entity/src/Entity/Result/UrlResult.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/View/Helper/EntityHelper.php b/src/module/Entity/src/Entity/View/Helper/EntityHelper.php index 638fc84a..0ce8f924 100644 --- a/src/module/Entity/src/Entity/View/Helper/EntityHelper.php +++ b/src/module/Entity/src/Entity/View/Helper/EntityHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/View/Helper/InputChallengeHelper.php b/src/module/Entity/src/Entity/View/Helper/InputChallengeHelper.php index 23ddc4c0..662ad6e1 100644 --- a/src/module/Entity/src/Entity/View/Helper/InputChallengeHelper.php +++ b/src/module/Entity/src/Entity/View/Helper/InputChallengeHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/View/Helper/MultipleChoiceHelper.php b/src/module/Entity/src/Entity/View/Helper/MultipleChoiceHelper.php index 64a7690b..ef481372 100644 --- a/src/module/Entity/src/Entity/View/Helper/MultipleChoiceHelper.php +++ b/src/module/Entity/src/Entity/View/Helper/MultipleChoiceHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Entity/src/Entity/View/Helper/SingleChoiceHelper.php b/src/module/Entity/src/Entity/View/Helper/SingleChoiceHelper.php index fc129129..22e42fc5 100644 --- a/src/module/Entity/src/Entity/View/Helper/SingleChoiceHelper.php +++ b/src/module/Entity/src/Entity/View/Helper/SingleChoiceHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/Module.php b/src/module/Event/Module.php index d7612806..b08a63b4 100644 --- a/src/module/Event/Module.php +++ b/src/module/Event/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/config/module.config.php b/src/module/Event/config/module.config.php index 1906f5a9..3689db8e 100644 --- a/src/module/Event/config/module.config.php +++ b/src/module/Event/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Controller/EventController.php b/src/module/Event/src/Event/Controller/EventController.php index bf9055d3..138ebae1 100644 --- a/src/module/Event/src/Event/Controller/EventController.php +++ b/src/module/Event/src/Event/Controller/EventController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Entity/Event.php b/src/module/Event/src/Event/Entity/Event.php index 7ff873d6..f69d269e 100644 --- a/src/module/Event/src/Event/Entity/Event.php +++ b/src/module/Event/src/Event/Entity/Event.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Entity/EventInterface.php b/src/module/Event/src/Event/Entity/EventInterface.php index b894abec..c9be8e26 100644 --- a/src/module/Event/src/Event/Entity/EventInterface.php +++ b/src/module/Event/src/Event/Entity/EventInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Entity/EventLog.php b/src/module/Event/src/Event/Entity/EventLog.php index 4a0dff42..7f0105ed 100644 --- a/src/module/Event/src/Event/Entity/EventLog.php +++ b/src/module/Event/src/Event/Entity/EventLog.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Entity/EventLogInterface.php b/src/module/Event/src/Event/Entity/EventLogInterface.php index bc5d75fe..85bce4e7 100644 --- a/src/module/Event/src/Event/Entity/EventLogInterface.php +++ b/src/module/Event/src/Event/Entity/EventLogInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Entity/EventParameter.php b/src/module/Event/src/Event/Entity/EventParameter.php index 9292190e..7980948d 100644 --- a/src/module/Event/src/Event/Entity/EventParameter.php +++ b/src/module/Event/src/Event/Entity/EventParameter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Entity/EventParameterInterface.php b/src/module/Event/src/Event/Entity/EventParameterInterface.php index 3c54463f..408613f6 100644 --- a/src/module/Event/src/Event/Entity/EventParameterInterface.php +++ b/src/module/Event/src/Event/Entity/EventParameterInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Entity/EventParameterName.php b/src/module/Event/src/Event/Entity/EventParameterName.php index 7586f3cd..2586abb0 100644 --- a/src/module/Event/src/Event/Entity/EventParameterName.php +++ b/src/module/Event/src/Event/Entity/EventParameterName.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Entity/EventParameterNameInterface.php b/src/module/Event/src/Event/Entity/EventParameterNameInterface.php index 7f93c97d..bd2ef84f 100644 --- a/src/module/Event/src/Event/Entity/EventParameterNameInterface.php +++ b/src/module/Event/src/Event/Entity/EventParameterNameInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Entity/EventParameterString.php b/src/module/Event/src/Event/Entity/EventParameterString.php index a1000ab1..474b956c 100644 --- a/src/module/Event/src/Event/Entity/EventParameterString.php +++ b/src/module/Event/src/Event/Entity/EventParameterString.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Entity/EventParameterUuid.php b/src/module/Event/src/Event/Entity/EventParameterUuid.php index 8f915c84..d67d1f9c 100644 --- a/src/module/Event/src/Event/Entity/EventParameterUuid.php +++ b/src/module/Event/src/Event/Entity/EventParameterUuid.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/EventManager.php b/src/module/Event/src/Event/EventManager.php index 8fab136b..ade132e9 100644 --- a/src/module/Event/src/Event/EventManager.php +++ b/src/module/Event/src/Event/EventManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/EventManagerAwareTrait.php b/src/module/Event/src/Event/EventManagerAwareTrait.php index 6b64d245..41421e43 100644 --- a/src/module/Event/src/Event/EventManagerAwareTrait.php +++ b/src/module/Event/src/Event/EventManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/EventManagerInterface.php b/src/module/Event/src/Event/EventManagerInterface.php index a2643d48..64cc8837 100644 --- a/src/module/Event/src/Event/EventManagerInterface.php +++ b/src/module/Event/src/Event/EventManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Exception/EntityNotFoundException.php b/src/module/Event/src/Event/Exception/EntityNotFoundException.php index ca595871..37b384ea 100644 --- a/src/module/Event/src/Event/Exception/EntityNotFoundException.php +++ b/src/module/Event/src/Event/Exception/EntityNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Exception/InvalidArgumentException.php b/src/module/Event/src/Event/Exception/InvalidArgumentException.php index dc5467d7..49fd5279 100644 --- a/src/module/Event/src/Event/Exception/InvalidArgumentException.php +++ b/src/module/Event/src/Event/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Exception/RuntimeException.php b/src/module/Event/src/Event/Exception/RuntimeException.php index d52d02f6..4a52467a 100644 --- a/src/module/Event/src/Event/Exception/RuntimeException.php +++ b/src/module/Event/src/Event/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Factory/AbstractListenerFactory.php b/src/module/Event/src/Event/Factory/AbstractListenerFactory.php index a4cd3444..36a72f44 100644 --- a/src/module/Event/src/Event/Factory/AbstractListenerFactory.php +++ b/src/module/Event/src/Event/Factory/AbstractListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Factory/DiscussionManagerListenerFactory.php b/src/module/Event/src/Event/Factory/DiscussionManagerListenerFactory.php index 289b6bb3..2d4d11be 100644 --- a/src/module/Event/src/Event/Factory/DiscussionManagerListenerFactory.php +++ b/src/module/Event/src/Event/Factory/DiscussionManagerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Factory/EntityManagerListenerFactory.php b/src/module/Event/src/Event/Factory/EntityManagerListenerFactory.php index b1de5673..c50c8c68 100644 --- a/src/module/Event/src/Event/Factory/EntityManagerListenerFactory.php +++ b/src/module/Event/src/Event/Factory/EntityManagerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Factory/EventLogHelperFactory.php b/src/module/Event/src/Event/Factory/EventLogHelperFactory.php index b2eed755..8f76db98 100644 --- a/src/module/Event/src/Event/Factory/EventLogHelperFactory.php +++ b/src/module/Event/src/Event/Factory/EventLogHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Factory/EventManagerFactory.php b/src/module/Event/src/Event/Factory/EventManagerFactory.php index 609b868b..2ff3cc48 100644 --- a/src/module/Event/src/Event/Factory/EventManagerFactory.php +++ b/src/module/Event/src/Event/Factory/EventManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Factory/LicenseManagerListenerFactory.php b/src/module/Event/src/Event/Factory/LicenseManagerListenerFactory.php index f6b3b98a..a2a0b9bf 100644 --- a/src/module/Event/src/Event/Factory/LicenseManagerListenerFactory.php +++ b/src/module/Event/src/Event/Factory/LicenseManagerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Factory/LinkServiceListenerFactory.php b/src/module/Event/src/Event/Factory/LinkServiceListenerFactory.php index 106456fc..bf0e81e2 100644 --- a/src/module/Event/src/Event/Factory/LinkServiceListenerFactory.php +++ b/src/module/Event/src/Event/Factory/LinkServiceListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Factory/RepositoryManagerListenerFactory.php b/src/module/Event/src/Event/Factory/RepositoryManagerListenerFactory.php index 6feb66cd..586fb878 100644 --- a/src/module/Event/src/Event/Factory/RepositoryManagerListenerFactory.php +++ b/src/module/Event/src/Event/Factory/RepositoryManagerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Factory/TaxonomyManagerListenerFactory.php b/src/module/Event/src/Event/Factory/TaxonomyManagerListenerFactory.php index cd105f97..4842c439 100644 --- a/src/module/Event/src/Event/Factory/TaxonomyManagerListenerFactory.php +++ b/src/module/Event/src/Event/Factory/TaxonomyManagerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Factory/UuidManagerListenerFactory.php b/src/module/Event/src/Event/Factory/UuidManagerListenerFactory.php index b59fbc5a..73b66f46 100644 --- a/src/module/Event/src/Event/Factory/UuidManagerListenerFactory.php +++ b/src/module/Event/src/Event/Factory/UuidManagerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Filter/PersistentEventLogFilterChain.php b/src/module/Event/src/Event/Filter/PersistentEventLogFilterChain.php index 4cc52c2c..cbf5177c 100644 --- a/src/module/Event/src/Event/Filter/PersistentEventLogFilterChain.php +++ b/src/module/Event/src/Event/Filter/PersistentEventLogFilterChain.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Filter/PersistentParameterFilter.php b/src/module/Event/src/Event/Filter/PersistentParameterFilter.php index ff03d280..376db43b 100644 --- a/src/module/Event/src/Event/Filter/PersistentParameterFilter.php +++ b/src/module/Event/src/Event/Filter/PersistentParameterFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Listener/AbstractListener.php b/src/module/Event/src/Event/Listener/AbstractListener.php index ce935a6a..4f9af2b7 100644 --- a/src/module/Event/src/Event/Listener/AbstractListener.php +++ b/src/module/Event/src/Event/Listener/AbstractListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Listener/DiscussionManagerListener.php b/src/module/Event/src/Event/Listener/DiscussionManagerListener.php index be80a274..5242de8f 100644 --- a/src/module/Event/src/Event/Listener/DiscussionManagerListener.php +++ b/src/module/Event/src/Event/Listener/DiscussionManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Listener/EntityManagerListener.php b/src/module/Event/src/Event/Listener/EntityManagerListener.php index 56daed9f..2b9121a1 100644 --- a/src/module/Event/src/Event/Listener/EntityManagerListener.php +++ b/src/module/Event/src/Event/Listener/EntityManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Listener/LicenseManagerListener.php b/src/module/Event/src/Event/Listener/LicenseManagerListener.php index 84751090..3ae985c8 100644 --- a/src/module/Event/src/Event/Listener/LicenseManagerListener.php +++ b/src/module/Event/src/Event/Listener/LicenseManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Listener/LinkServiceListener.php b/src/module/Event/src/Event/Listener/LinkServiceListener.php index 769358c6..56ff3201 100644 --- a/src/module/Event/src/Event/Listener/LinkServiceListener.php +++ b/src/module/Event/src/Event/Listener/LinkServiceListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Listener/RepositoryManagerListener.php b/src/module/Event/src/Event/Listener/RepositoryManagerListener.php index 536bed6b..78fc0c38 100644 --- a/src/module/Event/src/Event/Listener/RepositoryManagerListener.php +++ b/src/module/Event/src/Event/Listener/RepositoryManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Listener/TaxonomyManagerListener.php b/src/module/Event/src/Event/Listener/TaxonomyManagerListener.php index 3a0c7921..24e28566 100644 --- a/src/module/Event/src/Event/Listener/TaxonomyManagerListener.php +++ b/src/module/Event/src/Event/Listener/TaxonomyManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/Listener/UuidManagerListener.php b/src/module/Event/src/Event/Listener/UuidManagerListener.php index d1ab7b9a..a3780319 100644 --- a/src/module/Event/src/Event/Listener/UuidManagerListener.php +++ b/src/module/Event/src/Event/Listener/UuidManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Event/src/Event/View/Helper/EventLog.php b/src/module/Event/src/Event/View/Helper/EventLog.php index 91887bc3..bf9ac8f2 100644 --- a/src/module/Event/src/Event/View/Helper/EventLog.php +++ b/src/module/Event/src/Event/View/Helper/EventLog.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/Module.php b/src/module/Flag/Module.php index af0c8663..47f15ddc 100644 --- a/src/module/Flag/Module.php +++ b/src/module/Flag/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/config/module.config.php b/src/module/Flag/config/module.config.php index 18c6e344..a9e90f24 100644 --- a/src/module/Flag/config/module.config.php +++ b/src/module/Flag/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Controller/FlagController.php b/src/module/Flag/src/Flag/Controller/FlagController.php index df9a6a47..aa348caf 100644 --- a/src/module/Flag/src/Flag/Controller/FlagController.php +++ b/src/module/Flag/src/Flag/Controller/FlagController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Entity/Flag.php b/src/module/Flag/src/Flag/Entity/Flag.php index 5afe6f5f..5022635a 100644 --- a/src/module/Flag/src/Flag/Entity/Flag.php +++ b/src/module/Flag/src/Flag/Entity/Flag.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Entity/FlagInterface.php b/src/module/Flag/src/Flag/Entity/FlagInterface.php index 86360bf5..d2c0ca64 100644 --- a/src/module/Flag/src/Flag/Entity/FlagInterface.php +++ b/src/module/Flag/src/Flag/Entity/FlagInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Exception/FlagNotFoundException.php b/src/module/Flag/src/Flag/Exception/FlagNotFoundException.php index c2a2ce97..90b3af1b 100644 --- a/src/module/Flag/src/Flag/Exception/FlagNotFoundException.php +++ b/src/module/Flag/src/Flag/Exception/FlagNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Exception/InvalidArgumentException.php b/src/module/Flag/src/Flag/Exception/InvalidArgumentException.php index 21bc100e..961f3e35 100644 --- a/src/module/Flag/src/Flag/Exception/InvalidArgumentException.php +++ b/src/module/Flag/src/Flag/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Exception/RuntimeException.php b/src/module/Flag/src/Flag/Exception/RuntimeException.php index 2b8fdc4e..68f9cec2 100644 --- a/src/module/Flag/src/Flag/Exception/RuntimeException.php +++ b/src/module/Flag/src/Flag/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Factory/ModuleOptionsFactory.php b/src/module/Flag/src/Flag/Factory/ModuleOptionsFactory.php index 5a93b183..7ef85023 100644 --- a/src/module/Flag/src/Flag/Factory/ModuleOptionsFactory.php +++ b/src/module/Flag/src/Flag/Factory/ModuleOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Form/FlagForm.php b/src/module/Flag/src/Flag/Form/FlagForm.php index 8c894604..be38e2a8 100644 --- a/src/module/Flag/src/Flag/Form/FlagForm.php +++ b/src/module/Flag/src/Flag/Form/FlagForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Manager/FlagManager.php b/src/module/Flag/src/Flag/Manager/FlagManager.php index e0e3b387..83c8efba 100644 --- a/src/module/Flag/src/Flag/Manager/FlagManager.php +++ b/src/module/Flag/src/Flag/Manager/FlagManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Manager/FlagManagerAwareInterface.php b/src/module/Flag/src/Flag/Manager/FlagManagerAwareInterface.php index d2b38705..c447fd91 100644 --- a/src/module/Flag/src/Flag/Manager/FlagManagerAwareInterface.php +++ b/src/module/Flag/src/Flag/Manager/FlagManagerAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Manager/FlagManagerAwareTrait.php b/src/module/Flag/src/Flag/Manager/FlagManagerAwareTrait.php index b345bd87..f356a75f 100644 --- a/src/module/Flag/src/Flag/Manager/FlagManagerAwareTrait.php +++ b/src/module/Flag/src/Flag/Manager/FlagManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Manager/FlagManagerInterface.php b/src/module/Flag/src/Flag/Manager/FlagManagerInterface.php index 2e56fa28..57465ac4 100644 --- a/src/module/Flag/src/Flag/Manager/FlagManagerInterface.php +++ b/src/module/Flag/src/Flag/Manager/FlagManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Flag/src/Flag/Options/ModuleOptions.php b/src/module/Flag/src/Flag/Options/ModuleOptions.php index 88e59283..fe2277f7 100644 --- a/src/module/Flag/src/Flag/Options/ModuleOptions.php +++ b/src/module/Flag/src/Flag/Options/ModuleOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/Module.php b/src/module/Instance/Module.php index b3e39177..3865f0ca 100644 --- a/src/module/Instance/Module.php +++ b/src/module/Instance/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/config/module.config.php b/src/module/Instance/config/module.config.php index e65d3c90..1669a0f0 100644 --- a/src/module/Instance/config/module.config.php +++ b/src/module/Instance/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Assertion/InstanceAssertion.php b/src/module/Instance/src/Instance/Assertion/InstanceAssertion.php index 36999d57..d3c51e42 100644 --- a/src/module/Instance/src/Instance/Assertion/InstanceAssertion.php +++ b/src/module/Instance/src/Instance/Assertion/InstanceAssertion.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Controller/InstanceController.php b/src/module/Instance/src/Instance/Controller/InstanceController.php index 1043f67b..9b293f77 100644 --- a/src/module/Instance/src/Instance/Controller/InstanceController.php +++ b/src/module/Instance/src/Instance/Controller/InstanceController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Entity/Instance.php b/src/module/Instance/src/Instance/Entity/Instance.php index 26a60865..08beedbd 100644 --- a/src/module/Instance/src/Instance/Entity/Instance.php +++ b/src/module/Instance/src/Instance/Entity/Instance.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Entity/InstanceAwareInterface.php b/src/module/Instance/src/Instance/Entity/InstanceAwareInterface.php index 6633f3c6..1d91677b 100644 --- a/src/module/Instance/src/Instance/Entity/InstanceAwareInterface.php +++ b/src/module/Instance/src/Instance/Entity/InstanceAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Entity/InstanceAwareTrait.php b/src/module/Instance/src/Instance/Entity/InstanceAwareTrait.php index 8c05f5c6..6f604e7a 100644 --- a/src/module/Instance/src/Instance/Entity/InstanceAwareTrait.php +++ b/src/module/Instance/src/Instance/Entity/InstanceAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Entity/InstanceInterface.php b/src/module/Instance/src/Instance/Entity/InstanceInterface.php index 2a11fabf..6f213a97 100644 --- a/src/module/Instance/src/Instance/Entity/InstanceInterface.php +++ b/src/module/Instance/src/Instance/Entity/InstanceInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Entity/InstanceProviderInterface.php b/src/module/Instance/src/Instance/Entity/InstanceProviderInterface.php index 9bdb4cb8..4c93c2aa 100644 --- a/src/module/Instance/src/Instance/Entity/InstanceProviderInterface.php +++ b/src/module/Instance/src/Instance/Entity/InstanceProviderInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Entity/Language.php b/src/module/Instance/src/Instance/Entity/Language.php index 68169362..cda5ce8f 100644 --- a/src/module/Instance/src/Instance/Entity/Language.php +++ b/src/module/Instance/src/Instance/Entity/Language.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Entity/LanguageInterface.php b/src/module/Instance/src/Instance/Entity/LanguageInterface.php index cac010d2..9203fe87 100644 --- a/src/module/Instance/src/Instance/Entity/LanguageInterface.php +++ b/src/module/Instance/src/Instance/Entity/LanguageInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Exception/InstanceNotFoundException.php b/src/module/Instance/src/Instance/Exception/InstanceNotFoundException.php index 6c7382af..f1bd559d 100644 --- a/src/module/Instance/src/Instance/Exception/InstanceNotFoundException.php +++ b/src/module/Instance/src/Instance/Exception/InstanceNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Exception/InvalidArgumentException.php b/src/module/Instance/src/Instance/Exception/InvalidArgumentException.php index 11a2931f..c9b9f752 100644 --- a/src/module/Instance/src/Instance/Exception/InvalidArgumentException.php +++ b/src/module/Instance/src/Instance/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Exception/RuntimeException.php b/src/module/Instance/src/Instance/Exception/RuntimeException.php index a01b3eeb..fc6a06aa 100644 --- a/src/module/Instance/src/Instance/Exception/RuntimeException.php +++ b/src/module/Instance/src/Instance/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Factory/AbstractStrategyFactory.php b/src/module/Instance/src/Instance/Factory/AbstractStrategyFactory.php index 5f54f309..8b65c51c 100644 --- a/src/module/Instance/src/Instance/Factory/AbstractStrategyFactory.php +++ b/src/module/Instance/src/Instance/Factory/AbstractStrategyFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Factory/CookieStrategyFactory.php b/src/module/Instance/src/Instance/Factory/CookieStrategyFactory.php index 3a6ae4cd..dd483c60 100644 --- a/src/module/Instance/src/Instance/Factory/CookieStrategyFactory.php +++ b/src/module/Instance/src/Instance/Factory/CookieStrategyFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Factory/DomainStrategyFactory.php b/src/module/Instance/src/Instance/Factory/DomainStrategyFactory.php index d77d31a0..7462ca0b 100644 --- a/src/module/Instance/src/Instance/Factory/DomainStrategyFactory.php +++ b/src/module/Instance/src/Instance/Factory/DomainStrategyFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Factory/InstanceAwareEntityManagerFactory.php b/src/module/Instance/src/Instance/Factory/InstanceAwareEntityManagerFactory.php index e068fe03..2ec677d3 100644 --- a/src/module/Instance/src/Instance/Factory/InstanceAwareEntityManagerFactory.php +++ b/src/module/Instance/src/Instance/Factory/InstanceAwareEntityManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Factory/InstanceControllerFactory.php b/src/module/Instance/src/Instance/Factory/InstanceControllerFactory.php index b7ed16aa..259a9086 100644 --- a/src/module/Instance/src/Instance/Factory/InstanceControllerFactory.php +++ b/src/module/Instance/src/Instance/Factory/InstanceControllerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Factory/InstanceHelperFactory.php b/src/module/Instance/src/Instance/Factory/InstanceHelperFactory.php index 38ffd745..bfe94f47 100644 --- a/src/module/Instance/src/Instance/Factory/InstanceHelperFactory.php +++ b/src/module/Instance/src/Instance/Factory/InstanceHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Factory/InstanceManagerFactory.php b/src/module/Instance/src/Instance/Factory/InstanceManagerFactory.php index 72e0c956..435a670c 100644 --- a/src/module/Instance/src/Instance/Factory/InstanceManagerFactory.php +++ b/src/module/Instance/src/Instance/Factory/InstanceManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Factory/InstanceManagerFactoryTrait.php b/src/module/Instance/src/Instance/Factory/InstanceManagerFactoryTrait.php index c3547732..892ee64d 100644 --- a/src/module/Instance/src/Instance/Factory/InstanceManagerFactoryTrait.php +++ b/src/module/Instance/src/Instance/Factory/InstanceManagerFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Factory/InstanceOptionsFactory.php b/src/module/Instance/src/Instance/Factory/InstanceOptionsFactory.php index baba4afd..80ace408 100644 --- a/src/module/Instance/src/Instance/Factory/InstanceOptionsFactory.php +++ b/src/module/Instance/src/Instance/Factory/InstanceOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Factory/IsolationBypassedListenerFactory.php b/src/module/Instance/src/Instance/Factory/IsolationBypassedListenerFactory.php index df085c15..9206c437 100644 --- a/src/module/Instance/src/Instance/Factory/IsolationBypassedListenerFactory.php +++ b/src/module/Instance/src/Instance/Factory/IsolationBypassedListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Factory/LanguageHelperFactory.php b/src/module/Instance/src/Instance/Factory/LanguageHelperFactory.php index b045406b..afe29e32 100644 --- a/src/module/Instance/src/Instance/Factory/LanguageHelperFactory.php +++ b/src/module/Instance/src/Instance/Factory/LanguageHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Listener/ClaimEntityList.php b/src/module/Instance/src/Instance/Listener/ClaimEntityList.php index 722d60ce..beb61a6c 100644 --- a/src/module/Instance/src/Instance/Listener/ClaimEntityList.php +++ b/src/module/Instance/src/Instance/Listener/ClaimEntityList.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Listener/IsolationBypassedListener.php b/src/module/Instance/src/Instance/Listener/IsolationBypassedListener.php index 3ad63e0d..02a55695 100644 --- a/src/module/Instance/src/Instance/Listener/IsolationBypassedListener.php +++ b/src/module/Instance/src/Instance/Listener/IsolationBypassedListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Manager/InstanceAwareEntityManager.php b/src/module/Instance/src/Instance/Manager/InstanceAwareEntityManager.php index 9981073b..fa76918a 100644 --- a/src/module/Instance/src/Instance/Manager/InstanceAwareEntityManager.php +++ b/src/module/Instance/src/Instance/Manager/InstanceAwareEntityManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Manager/InstanceManager.php b/src/module/Instance/src/Instance/Manager/InstanceManager.php index b1b69e99..3ffb10c7 100644 --- a/src/module/Instance/src/Instance/Manager/InstanceManager.php +++ b/src/module/Instance/src/Instance/Manager/InstanceManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Manager/InstanceManagerAwareTrait.php b/src/module/Instance/src/Instance/Manager/InstanceManagerAwareTrait.php index c3d3a1b9..eb149d6f 100644 --- a/src/module/Instance/src/Instance/Manager/InstanceManagerAwareTrait.php +++ b/src/module/Instance/src/Instance/Manager/InstanceManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Manager/InstanceManagerInterface.php b/src/module/Instance/src/Instance/Manager/InstanceManagerInterface.php index d93d421c..07c2db9b 100644 --- a/src/module/Instance/src/Instance/Manager/InstanceManagerInterface.php +++ b/src/module/Instance/src/Instance/Manager/InstanceManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Options/InstanceOptions.php b/src/module/Instance/src/Instance/Options/InstanceOptions.php index 15c4a7c3..ef2e3fd5 100644 --- a/src/module/Instance/src/Instance/Options/InstanceOptions.php +++ b/src/module/Instance/src/Instance/Options/InstanceOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Repository/InstanceAwareRepository.php b/src/module/Instance/src/Instance/Repository/InstanceAwareRepository.php index 328c7fad..65a3fd81 100644 --- a/src/module/Instance/src/Instance/Repository/InstanceAwareRepository.php +++ b/src/module/Instance/src/Instance/Repository/InstanceAwareRepository.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Repository/InstanceProviderRepository.php b/src/module/Instance/src/Instance/Repository/InstanceProviderRepository.php index cc6854d8..7d8bf7a7 100644 --- a/src/module/Instance/src/Instance/Repository/InstanceProviderRepository.php +++ b/src/module/Instance/src/Instance/Repository/InstanceProviderRepository.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Strategy/AbstractStrategy.php b/src/module/Instance/src/Instance/Strategy/AbstractStrategy.php index 913a71c9..9a102b84 100644 --- a/src/module/Instance/src/Instance/Strategy/AbstractStrategy.php +++ b/src/module/Instance/src/Instance/Strategy/AbstractStrategy.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Strategy/CookieStrategy.php b/src/module/Instance/src/Instance/Strategy/CookieStrategy.php index fa6d4b65..e2024ada 100644 --- a/src/module/Instance/src/Instance/Strategy/CookieStrategy.php +++ b/src/module/Instance/src/Instance/Strategy/CookieStrategy.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Strategy/DomainStrategy.php b/src/module/Instance/src/Instance/Strategy/DomainStrategy.php index d3821d7a..8096179e 100644 --- a/src/module/Instance/src/Instance/Strategy/DomainStrategy.php +++ b/src/module/Instance/src/Instance/Strategy/DomainStrategy.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Strategy/StrategyInterface.php b/src/module/Instance/src/Instance/Strategy/StrategyInterface.php index 6bdf72b9..f12c7e99 100644 --- a/src/module/Instance/src/Instance/Strategy/StrategyInterface.php +++ b/src/module/Instance/src/Instance/Strategy/StrategyInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/Strategy/StrategyPluginManager.php b/src/module/Instance/src/Instance/Strategy/StrategyPluginManager.php index 10636e50..f72ea680 100644 --- a/src/module/Instance/src/Instance/Strategy/StrategyPluginManager.php +++ b/src/module/Instance/src/Instance/Strategy/StrategyPluginManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/View/Helper/InstanceHelper.php b/src/module/Instance/src/Instance/View/Helper/InstanceHelper.php index 34f301bb..34234484 100644 --- a/src/module/Instance/src/Instance/View/Helper/InstanceHelper.php +++ b/src/module/Instance/src/Instance/View/Helper/InstanceHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Instance/src/Instance/View/Helper/LanguageHelper.php b/src/module/Instance/src/Instance/View/Helper/LanguageHelper.php index cf6116d5..d25f32f4 100644 --- a/src/module/Instance/src/Instance/View/Helper/LanguageHelper.php +++ b/src/module/Instance/src/Instance/View/Helper/LanguageHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/Module.php b/src/module/License/Module.php index 732823e0..5bfa1f98 100644 --- a/src/module/License/Module.php +++ b/src/module/License/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/config/module.config.php b/src/module/License/config/module.config.php index 22cea20a..616033dc 100644 --- a/src/module/License/config/module.config.php +++ b/src/module/License/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Controller/LicenseController.php b/src/module/License/src/License/Controller/LicenseController.php index 91ae576d..800b282f 100644 --- a/src/module/License/src/License/Controller/LicenseController.php +++ b/src/module/License/src/License/Controller/LicenseController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Entity/License.php b/src/module/License/src/License/Entity/License.php index f8a492ed..1d3815d3 100644 --- a/src/module/License/src/License/Entity/License.php +++ b/src/module/License/src/License/Entity/License.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Entity/LicenseAwareInterface.php b/src/module/License/src/License/Entity/LicenseAwareInterface.php index e04b7f22..e5e71adf 100644 --- a/src/module/License/src/License/Entity/LicenseAwareInterface.php +++ b/src/module/License/src/License/Entity/LicenseAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Entity/LicenseInterface.php b/src/module/License/src/License/Entity/LicenseInterface.php index 1bfca4d2..52a606a5 100644 --- a/src/module/License/src/License/Entity/LicenseInterface.php +++ b/src/module/License/src/License/Entity/LicenseInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Exception/InvalidArgumentException.php b/src/module/License/src/License/Exception/InvalidArgumentException.php index 67015e30..aad1a219 100644 --- a/src/module/License/src/License/Exception/InvalidArgumentException.php +++ b/src/module/License/src/License/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Exception/LicenseNotFoundException.php b/src/module/License/src/License/Exception/LicenseNotFoundException.php index 3b71d5f1..5fee9046 100644 --- a/src/module/License/src/License/Exception/LicenseNotFoundException.php +++ b/src/module/License/src/License/Exception/LicenseNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Exception/RuntimeException.php b/src/module/License/src/License/Exception/RuntimeException.php index c34242e5..f4fc0336 100644 --- a/src/module/License/src/License/Exception/RuntimeException.php +++ b/src/module/License/src/License/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Factory/LicenseManagerFactoryTrait.php b/src/module/License/src/License/Factory/LicenseManagerFactoryTrait.php index eb95bb3f..5e92488c 100644 --- a/src/module/License/src/License/Factory/LicenseManagerFactoryTrait.php +++ b/src/module/License/src/License/Factory/LicenseManagerFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Form/AgreementFieldset.php b/src/module/License/src/License/Form/AgreementFieldset.php index bb000488..2af5485d 100644 --- a/src/module/License/src/License/Form/AgreementFieldset.php +++ b/src/module/License/src/License/Form/AgreementFieldset.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Form/LicenseForm.php b/src/module/License/src/License/Form/LicenseForm.php index c6bce62c..f7429c6b 100644 --- a/src/module/License/src/License/Form/LicenseForm.php +++ b/src/module/License/src/License/Form/LicenseForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Form/UpdateLicenseForm.php b/src/module/License/src/License/Form/UpdateLicenseForm.php index e0e5c2c4..ed1f4365 100644 --- a/src/module/License/src/License/Form/UpdateLicenseForm.php +++ b/src/module/License/src/License/Form/UpdateLicenseForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Hydrator/LicenseHydrator.php b/src/module/License/src/License/Hydrator/LicenseHydrator.php index d54e69a6..b21e4169 100644 --- a/src/module/License/src/License/Hydrator/LicenseHydrator.php +++ b/src/module/License/src/License/Hydrator/LicenseHydrator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Listener/EntityManagerListener.php b/src/module/License/src/License/Listener/EntityManagerListener.php index e9b6a21e..fecc5172 100644 --- a/src/module/License/src/License/Listener/EntityManagerListener.php +++ b/src/module/License/src/License/Listener/EntityManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Manager/LicenseManager.php b/src/module/License/src/License/Manager/LicenseManager.php index d3a59efe..2139d0cf 100644 --- a/src/module/License/src/License/Manager/LicenseManager.php +++ b/src/module/License/src/License/Manager/LicenseManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Manager/LicenseManagerAwareInterface.php b/src/module/License/src/License/Manager/LicenseManagerAwareInterface.php index d36bdcf2..b9d4841e 100644 --- a/src/module/License/src/License/Manager/LicenseManagerAwareInterface.php +++ b/src/module/License/src/License/Manager/LicenseManagerAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Manager/LicenseManagerAwareTrait.php b/src/module/License/src/License/Manager/LicenseManagerAwareTrait.php index ae4980f3..fdab1ca9 100644 --- a/src/module/License/src/License/Manager/LicenseManagerAwareTrait.php +++ b/src/module/License/src/License/Manager/LicenseManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/License/src/License/Manager/LicenseManagerInterface.php b/src/module/License/src/License/Manager/LicenseManagerInterface.php index 7739d729..d9067016 100644 --- a/src/module/License/src/License/Manager/LicenseManagerInterface.php +++ b/src/module/License/src/License/Manager/LicenseManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Link/Module.php b/src/module/Link/Module.php index 3c666123..e6de5e6e 100644 --- a/src/module/Link/Module.php +++ b/src/module/Link/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Link/config/module.config.php b/src/module/Link/config/module.config.php index d99be324..05232fce 100644 --- a/src/module/Link/config/module.config.php +++ b/src/module/Link/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Link/src/Link/Entity/LinkInterface.php b/src/module/Link/src/Link/Entity/LinkInterface.php index 4aeb6de8..a3d420e8 100644 --- a/src/module/Link/src/Link/Entity/LinkInterface.php +++ b/src/module/Link/src/Link/Entity/LinkInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Link/src/Link/Entity/LinkableInterface.php b/src/module/Link/src/Link/Entity/LinkableInterface.php index ba776d2c..a7c8bed1 100644 --- a/src/module/Link/src/Link/Entity/LinkableInterface.php +++ b/src/module/Link/src/Link/Entity/LinkableInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Link/src/Link/Exception/RuntimeException.php b/src/module/Link/src/Link/Exception/RuntimeException.php index 43a1a458..d3a236a1 100644 --- a/src/module/Link/src/Link/Exception/RuntimeException.php +++ b/src/module/Link/src/Link/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Link/src/Link/Listener/EntityManagerListener.php b/src/module/Link/src/Link/Listener/EntityManagerListener.php index 4e3fd22b..69df2868 100644 --- a/src/module/Link/src/Link/Listener/EntityManagerListener.php +++ b/src/module/Link/src/Link/Listener/EntityManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Link/src/Link/Options/LinkOptionsInterface.php b/src/module/Link/src/Link/Options/LinkOptionsInterface.php index b08e88fe..744080ee 100644 --- a/src/module/Link/src/Link/Options/LinkOptionsInterface.php +++ b/src/module/Link/src/Link/Options/LinkOptionsInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Link/src/Link/Service/LinkService.php b/src/module/Link/src/Link/Service/LinkService.php index 1ef036ea..2e35bef3 100644 --- a/src/module/Link/src/Link/Service/LinkService.php +++ b/src/module/Link/src/Link/Service/LinkService.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Link/src/Link/Service/LinkServiceAwareTrait.php b/src/module/Link/src/Link/Service/LinkServiceAwareTrait.php index bd2860bf..8c2a4d42 100644 --- a/src/module/Link/src/Link/Service/LinkServiceAwareTrait.php +++ b/src/module/Link/src/Link/Service/LinkServiceAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Link/src/Link/Service/LinkServiceInterface.php b/src/module/Link/src/Link/Service/LinkServiceInterface.php index 1a955578..6a3fa965 100644 --- a/src/module/Link/src/Link/Service/LinkServiceInterface.php +++ b/src/module/Link/src/Link/Service/LinkServiceInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Log/Module.php b/src/module/Log/Module.php index 59864743..882e717e 100644 --- a/src/module/Log/Module.php +++ b/src/module/Log/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Log/config/module.config.php b/src/module/Log/config/module.config.php index 40454252..5b26324f 100644 --- a/src/module/Log/config/module.config.php +++ b/src/module/Log/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Log/src/Log/Factory/LoggerFactory.php b/src/module/Log/src/Log/Factory/LoggerFactory.php index 93c06e47..a9c4b5d4 100644 --- a/src/module/Log/src/Log/Factory/LoggerFactory.php +++ b/src/module/Log/src/Log/Factory/LoggerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Log/src/Log/Factory/SentryFactory.php b/src/module/Log/src/Log/Factory/SentryFactory.php index ca639068..85d6f519 100644 --- a/src/module/Log/src/Log/Factory/SentryFactory.php +++ b/src/module/Log/src/Log/Factory/SentryFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -33,11 +33,14 @@ class SentryFactory implements FactoryInterface */ public function createService(ServiceLocatorInterface $serviceLocator) { - $config = $serviceLocator->get('Config')['sentry_options']; + $config = $serviceLocator->get('Config'); + $sentryConfig = $config['sentry_options']; + $client = new \Raven_Client( // Deactive sentry if no DSN is given - isset($config['dsn']) ? $config['dsn'] : null, + isset($sentryConfig['dsn']) ? $sentryConfig['dsn'] : null, array( + 'release' => 'athene2@' . $config['version'], 'tags' => array( 'php_version' => phpversion(), ), diff --git a/src/module/Mailman/Module.php b/src/module/Mailman/Module.php index 675eea0c..ee655293 100644 --- a/src/module/Mailman/Module.php +++ b/src/module/Mailman/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/config/module.config.php b/src/module/Mailman/config/module.config.php index 49fb26c7..0891c7bd 100644 --- a/src/module/Mailman/config/module.config.php +++ b/src/module/Mailman/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Adapter/AdapterInterface.php b/src/module/Mailman/src/Mailman/Adapter/AdapterInterface.php index ad8840aa..ed02a2c9 100644 --- a/src/module/Mailman/src/Mailman/Adapter/AdapterInterface.php +++ b/src/module/Mailman/src/Mailman/Adapter/AdapterInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Adapter/ZendMailAdapter.php b/src/module/Mailman/src/Mailman/Adapter/ZendMailAdapter.php index a8a4fec5..021272c4 100644 --- a/src/module/Mailman/src/Mailman/Adapter/ZendMailAdapter.php +++ b/src/module/Mailman/src/Mailman/Adapter/ZendMailAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Exception/RuntimeException.php b/src/module/Mailman/src/Mailman/Exception/RuntimeException.php index 97e21581..ba62c105 100644 --- a/src/module/Mailman/src/Mailman/Exception/RuntimeException.php +++ b/src/module/Mailman/src/Mailman/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Factory/AbstractListenerFactory.php b/src/module/Mailman/src/Mailman/Factory/AbstractListenerFactory.php index bf04eb25..e8060934 100644 --- a/src/module/Mailman/src/Mailman/Factory/AbstractListenerFactory.php +++ b/src/module/Mailman/src/Mailman/Factory/AbstractListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Factory/AuthenticationControllerListenerFactory.php b/src/module/Mailman/src/Mailman/Factory/AuthenticationControllerListenerFactory.php index 2f41c12a..125d2ffc 100644 --- a/src/module/Mailman/src/Mailman/Factory/AuthenticationControllerListenerFactory.php +++ b/src/module/Mailman/src/Mailman/Factory/AuthenticationControllerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Factory/MailmanFactory.php b/src/module/Mailman/src/Mailman/Factory/MailmanFactory.php index 0ca986a7..699626e5 100644 --- a/src/module/Mailman/src/Mailman/Factory/MailmanFactory.php +++ b/src/module/Mailman/src/Mailman/Factory/MailmanFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Factory/ModuleOptionsFactory.php b/src/module/Mailman/src/Mailman/Factory/ModuleOptionsFactory.php index e5204c8e..de76ad20 100644 --- a/src/module/Mailman/src/Mailman/Factory/ModuleOptionsFactory.php +++ b/src/module/Mailman/src/Mailman/Factory/ModuleOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Factory/NotificationWorkerListenerFactory.php b/src/module/Mailman/src/Mailman/Factory/NotificationWorkerListenerFactory.php index c3d9325d..a91d2373 100644 --- a/src/module/Mailman/src/Mailman/Factory/NotificationWorkerListenerFactory.php +++ b/src/module/Mailman/src/Mailman/Factory/NotificationWorkerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Factory/SmtpOptionsFactory.php b/src/module/Mailman/src/Mailman/Factory/SmtpOptionsFactory.php index 361ccb0e..60d963b2 100644 --- a/src/module/Mailman/src/Mailman/Factory/SmtpOptionsFactory.php +++ b/src/module/Mailman/src/Mailman/Factory/SmtpOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Factory/UserControllerListenerFactory.php b/src/module/Mailman/src/Mailman/Factory/UserControllerListenerFactory.php index b4f14386..ed86cd9e 100644 --- a/src/module/Mailman/src/Mailman/Factory/UserControllerListenerFactory.php +++ b/src/module/Mailman/src/Mailman/Factory/UserControllerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Factory/ZendMailAdapterFactory.php b/src/module/Mailman/src/Mailman/Factory/ZendMailAdapterFactory.php index d1ba9b87..197acbea 100644 --- a/src/module/Mailman/src/Mailman/Factory/ZendMailAdapterFactory.php +++ b/src/module/Mailman/src/Mailman/Factory/ZendMailAdapterFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Listener/AbstractListener.php b/src/module/Mailman/src/Mailman/Listener/AbstractListener.php index b38795c1..31164158 100644 --- a/src/module/Mailman/src/Mailman/Listener/AbstractListener.php +++ b/src/module/Mailman/src/Mailman/Listener/AbstractListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Listener/AuthenticationControllerListener.php b/src/module/Mailman/src/Mailman/Listener/AuthenticationControllerListener.php index ef05cc96..b2a22758 100644 --- a/src/module/Mailman/src/Mailman/Listener/AuthenticationControllerListener.php +++ b/src/module/Mailman/src/Mailman/Listener/AuthenticationControllerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Listener/NotificationWorkerListener.php b/src/module/Mailman/src/Mailman/Listener/NotificationWorkerListener.php index 4d327893..3e7c8dca 100644 --- a/src/module/Mailman/src/Mailman/Listener/NotificationWorkerListener.php +++ b/src/module/Mailman/src/Mailman/Listener/NotificationWorkerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Listener/UserControllerListener.php b/src/module/Mailman/src/Mailman/Listener/UserControllerListener.php index 207df9bf..8b297957 100644 --- a/src/module/Mailman/src/Mailman/Listener/UserControllerListener.php +++ b/src/module/Mailman/src/Mailman/Listener/UserControllerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Mailman.php b/src/module/Mailman/src/Mailman/Mailman.php index 65a57bba..7bcf6fd6 100644 --- a/src/module/Mailman/src/Mailman/Mailman.php +++ b/src/module/Mailman/src/Mailman/Mailman.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/MailmanAwareTrait.php b/src/module/Mailman/src/Mailman/MailmanAwareTrait.php index f91a6504..08b57b2d 100644 --- a/src/module/Mailman/src/Mailman/MailmanAwareTrait.php +++ b/src/module/Mailman/src/Mailman/MailmanAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/MailmanInterface.php b/src/module/Mailman/src/Mailman/MailmanInterface.php index a459ae69..d914c5cb 100644 --- a/src/module/Mailman/src/Mailman/MailmanInterface.php +++ b/src/module/Mailman/src/Mailman/MailmanInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Mailman/src/Mailman/Options/ModuleOptions.php b/src/module/Mailman/src/Mailman/Options/ModuleOptions.php index 4af3b176..3e9d6d0e 100644 --- a/src/module/Mailman/src/Mailman/Options/ModuleOptions.php +++ b/src/module/Mailman/src/Mailman/Options/ModuleOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/Module.php b/src/module/Markdown/Module.php index 9d7422e1..3acc0ba5 100644 --- a/src/module/Markdown/Module.php +++ b/src/module/Markdown/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/config/module.config.php b/src/module/Markdown/config/module.config.php index 2df789b6..3480b886 100644 --- a/src/module/Markdown/config/module.config.php +++ b/src/module/Markdown/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Exception/RuntimeException.php b/src/module/Markdown/src/Markdown/Exception/RuntimeException.php index a7d6c38c..6aa932b2 100644 --- a/src/module/Markdown/src/Markdown/Exception/RuntimeException.php +++ b/src/module/Markdown/src/Markdown/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Factory/HtmlRenderServiceFactory.php b/src/module/Markdown/src/Markdown/Factory/HtmlRenderServiceFactory.php index b03a10cc..cab8a52f 100644 --- a/src/module/Markdown/src/Markdown/Factory/HtmlRenderServiceFactory.php +++ b/src/module/Markdown/src/Markdown/Factory/HtmlRenderServiceFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Factory/MarkdownHelperFactory.php b/src/module/Markdown/src/Markdown/Factory/MarkdownHelperFactory.php index b9538b3c..8f3a42c8 100644 --- a/src/module/Markdown/src/Markdown/Factory/MarkdownHelperFactory.php +++ b/src/module/Markdown/src/Markdown/Factory/MarkdownHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Factory/MarkdownStorageFactory.php b/src/module/Markdown/src/Markdown/Factory/MarkdownStorageFactory.php index 61e11108..50fa7832 100644 --- a/src/module/Markdown/src/Markdown/Factory/MarkdownStorageFactory.php +++ b/src/module/Markdown/src/Markdown/Factory/MarkdownStorageFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Factory/ModuleOptionsFactory.php b/src/module/Markdown/src/Markdown/Factory/ModuleOptionsFactory.php index a6ad735f..a85a4e53 100644 --- a/src/module/Markdown/src/Markdown/Factory/ModuleOptionsFactory.php +++ b/src/module/Markdown/src/Markdown/Factory/ModuleOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Factory/OryRenderHelperFactory.php b/src/module/Markdown/src/Markdown/Factory/OryRenderHelperFactory.php index 198ac29f..5108be26 100644 --- a/src/module/Markdown/src/Markdown/Factory/OryRenderHelperFactory.php +++ b/src/module/Markdown/src/Markdown/Factory/OryRenderHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Factory/OryRenderServiceFactory.php b/src/module/Markdown/src/Markdown/Factory/OryRenderServiceFactory.php index 45d50a0d..c96ca25a 100644 --- a/src/module/Markdown/src/Markdown/Factory/OryRenderServiceFactory.php +++ b/src/module/Markdown/src/Markdown/Factory/OryRenderServiceFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Options/ModuleOptions.php b/src/module/Markdown/src/Markdown/Options/ModuleOptions.php index f081ed30..40b6ac79 100644 --- a/src/module/Markdown/src/Markdown/Options/ModuleOptions.php +++ b/src/module/Markdown/src/Markdown/Options/ModuleOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Service/HtmlRenderService.php b/src/module/Markdown/src/Markdown/Service/HtmlRenderService.php index 90ba404c..e3a2eac8 100644 --- a/src/module/Markdown/src/Markdown/Service/HtmlRenderService.php +++ b/src/module/Markdown/src/Markdown/Service/HtmlRenderService.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Service/OryRenderService.php b/src/module/Markdown/src/Markdown/Service/OryRenderService.php index a32a5c89..1d61fc03 100644 --- a/src/module/Markdown/src/Markdown/Service/OryRenderService.php +++ b/src/module/Markdown/src/Markdown/Service/OryRenderService.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Service/RenderServiceAwareTrait.php b/src/module/Markdown/src/Markdown/Service/RenderServiceAwareTrait.php index df62de1b..7230c43f 100644 --- a/src/module/Markdown/src/Markdown/Service/RenderServiceAwareTrait.php +++ b/src/module/Markdown/src/Markdown/Service/RenderServiceAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/Service/RenderServiceInterface.php b/src/module/Markdown/src/Markdown/Service/RenderServiceInterface.php index af288a3a..1376cd5f 100644 --- a/src/module/Markdown/src/Markdown/Service/RenderServiceInterface.php +++ b/src/module/Markdown/src/Markdown/Service/RenderServiceInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/View/Helper/MarkdownHelper.php b/src/module/Markdown/src/Markdown/View/Helper/MarkdownHelper.php index 1d205457..2240eb83 100644 --- a/src/module/Markdown/src/Markdown/View/Helper/MarkdownHelper.php +++ b/src/module/Markdown/src/Markdown/View/Helper/MarkdownHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Markdown/src/Markdown/View/Helper/OryFormatHelper.php b/src/module/Markdown/src/Markdown/View/Helper/OryFormatHelper.php index 6c0d623f..9882847c 100644 --- a/src/module/Markdown/src/Markdown/View/Helper/OryFormatHelper.php +++ b/src/module/Markdown/src/Markdown/View/Helper/OryFormatHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/Module.php b/src/module/Metadata/Module.php index 0571f667..909cb561 100644 --- a/src/module/Metadata/Module.php +++ b/src/module/Metadata/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/config/module.config.php b/src/module/Metadata/config/module.config.php index 4e044b82..4239cccf 100644 --- a/src/module/Metadata/config/module.config.php +++ b/src/module/Metadata/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Entity/Metadata.php b/src/module/Metadata/src/Metadata/Entity/Metadata.php index d7bc5368..2d8583fa 100644 --- a/src/module/Metadata/src/Metadata/Entity/Metadata.php +++ b/src/module/Metadata/src/Metadata/Entity/Metadata.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Entity/MetadataInterface.php b/src/module/Metadata/src/Metadata/Entity/MetadataInterface.php index 712361c9..74be9b26 100644 --- a/src/module/Metadata/src/Metadata/Entity/MetadataInterface.php +++ b/src/module/Metadata/src/Metadata/Entity/MetadataInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Entity/MetadataKey.php b/src/module/Metadata/src/Metadata/Entity/MetadataKey.php index 120c2cbc..f76f6c13 100644 --- a/src/module/Metadata/src/Metadata/Entity/MetadataKey.php +++ b/src/module/Metadata/src/Metadata/Entity/MetadataKey.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Entity/MetadataKeyInterface.php b/src/module/Metadata/src/Metadata/Entity/MetadataKeyInterface.php index 1fe49a38..e8eab5d1 100644 --- a/src/module/Metadata/src/Metadata/Entity/MetadataKeyInterface.php +++ b/src/module/Metadata/src/Metadata/Entity/MetadataKeyInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Exception/DuplicateMetadata.php b/src/module/Metadata/src/Metadata/Exception/DuplicateMetadata.php index 433c7f19..d01a2252 100644 --- a/src/module/Metadata/src/Metadata/Exception/DuplicateMetadata.php +++ b/src/module/Metadata/src/Metadata/Exception/DuplicateMetadata.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Exception/InvalidArgumentException.php b/src/module/Metadata/src/Metadata/Exception/InvalidArgumentException.php index 4130627e..282e0edf 100644 --- a/src/module/Metadata/src/Metadata/Exception/InvalidArgumentException.php +++ b/src/module/Metadata/src/Metadata/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Exception/MetadataNotFoundException.php b/src/module/Metadata/src/Metadata/Exception/MetadataNotFoundException.php index 7bcb5244..91cc866e 100644 --- a/src/module/Metadata/src/Metadata/Exception/MetadataNotFoundException.php +++ b/src/module/Metadata/src/Metadata/Exception/MetadataNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Exception/RuntimeException.php b/src/module/Metadata/src/Metadata/Exception/RuntimeException.php index fabb718f..4dc708ae 100644 --- a/src/module/Metadata/src/Metadata/Exception/RuntimeException.php +++ b/src/module/Metadata/src/Metadata/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Factory/MetadataHelperFactory.php b/src/module/Metadata/src/Metadata/Factory/MetadataHelperFactory.php index 1f28ae1d..632fdf7e 100644 --- a/src/module/Metadata/src/Metadata/Factory/MetadataHelperFactory.php +++ b/src/module/Metadata/src/Metadata/Factory/MetadataHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Factory/MetadataManagerFactory.php b/src/module/Metadata/src/Metadata/Factory/MetadataManagerFactory.php index 78389021..2959a365 100644 --- a/src/module/Metadata/src/Metadata/Factory/MetadataManagerFactory.php +++ b/src/module/Metadata/src/Metadata/Factory/MetadataManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Factory/MetadataManagerFactoryTrait.php b/src/module/Metadata/src/Metadata/Factory/MetadataManagerFactoryTrait.php index a0ae641d..72f5ea2f 100644 --- a/src/module/Metadata/src/Metadata/Factory/MetadataManagerFactoryTrait.php +++ b/src/module/Metadata/src/Metadata/Factory/MetadataManagerFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Listener/AbstractListener.php b/src/module/Metadata/src/Metadata/Listener/AbstractListener.php index d662c5e9..421e9b92 100644 --- a/src/module/Metadata/src/Metadata/Listener/AbstractListener.php +++ b/src/module/Metadata/src/Metadata/Listener/AbstractListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Listener/TaxonomyManagerListener.php b/src/module/Metadata/src/Metadata/Listener/TaxonomyManagerListener.php index c3c303dc..ccaa9299 100644 --- a/src/module/Metadata/src/Metadata/Listener/TaxonomyManagerListener.php +++ b/src/module/Metadata/src/Metadata/Listener/TaxonomyManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Manager/MetadataManager.php b/src/module/Metadata/src/Metadata/Manager/MetadataManager.php index 9d54507a..f985ab9f 100644 --- a/src/module/Metadata/src/Metadata/Manager/MetadataManager.php +++ b/src/module/Metadata/src/Metadata/Manager/MetadataManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Manager/MetadataManagerAwareTrait.php b/src/module/Metadata/src/Metadata/Manager/MetadataManagerAwareTrait.php index 1dc2a7e2..4debdf6b 100644 --- a/src/module/Metadata/src/Metadata/Manager/MetadataManagerAwareTrait.php +++ b/src/module/Metadata/src/Metadata/Manager/MetadataManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/Manager/MetadataManagerInterface.php b/src/module/Metadata/src/Metadata/Manager/MetadataManagerInterface.php index dc5f96bf..a1b68906 100644 --- a/src/module/Metadata/src/Metadata/Manager/MetadataManagerInterface.php +++ b/src/module/Metadata/src/Metadata/Manager/MetadataManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Metadata/src/Metadata/View/Helper/MetadataHelper.php b/src/module/Metadata/src/Metadata/View/Helper/MetadataHelper.php index 6b6d5088..44355f4c 100644 --- a/src/module/Metadata/src/Metadata/View/Helper/MetadataHelper.php +++ b/src/module/Metadata/src/Metadata/View/Helper/MetadataHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/Module.php b/src/module/Navigation/Module.php index cbc5ab61..3035efeb 100644 --- a/src/module/Navigation/Module.php +++ b/src/module/Navigation/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/config/module.config.php b/src/module/Navigation/config/module.config.php index a5406d4c..ddca9db8 100644 --- a/src/module/Navigation/config/module.config.php +++ b/src/module/Navigation/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Controller/NavigationController.php b/src/module/Navigation/src/Navigation/Controller/NavigationController.php index 6e329469..336ff4dd 100644 --- a/src/module/Navigation/src/Navigation/Controller/NavigationController.php +++ b/src/module/Navigation/src/Navigation/Controller/NavigationController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Controller/RenderController.php b/src/module/Navigation/src/Navigation/Controller/RenderController.php index 03080cd7..3f50c5d1 100644 --- a/src/module/Navigation/src/Navigation/Controller/RenderController.php +++ b/src/module/Navigation/src/Navigation/Controller/RenderController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Entity/Container.php b/src/module/Navigation/src/Navigation/Entity/Container.php index e7869ce7..7c10c508 100644 --- a/src/module/Navigation/src/Navigation/Entity/Container.php +++ b/src/module/Navigation/src/Navigation/Entity/Container.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Entity/ContainerInterface.php b/src/module/Navigation/src/Navigation/Entity/ContainerInterface.php index 79c5a37d..2b93b5da 100644 --- a/src/module/Navigation/src/Navigation/Entity/ContainerInterface.php +++ b/src/module/Navigation/src/Navigation/Entity/ContainerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Entity/Page.php b/src/module/Navigation/src/Navigation/Entity/Page.php index b18c77e5..f7d22a3a 100644 --- a/src/module/Navigation/src/Navigation/Entity/Page.php +++ b/src/module/Navigation/src/Navigation/Entity/Page.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Entity/PageInterface.php b/src/module/Navigation/src/Navigation/Entity/PageInterface.php index 0a75d7e7..701f46b6 100644 --- a/src/module/Navigation/src/Navigation/Entity/PageInterface.php +++ b/src/module/Navigation/src/Navigation/Entity/PageInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Entity/Parameter.php b/src/module/Navigation/src/Navigation/Entity/Parameter.php index 4fabcb5b..c7a6eca4 100644 --- a/src/module/Navigation/src/Navigation/Entity/Parameter.php +++ b/src/module/Navigation/src/Navigation/Entity/Parameter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Entity/ParameterInterface.php b/src/module/Navigation/src/Navigation/Entity/ParameterInterface.php index d648902e..1c01b559 100644 --- a/src/module/Navigation/src/Navigation/Entity/ParameterInterface.php +++ b/src/module/Navigation/src/Navigation/Entity/ParameterInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Entity/ParameterKey.php b/src/module/Navigation/src/Navigation/Entity/ParameterKey.php index 2db7485f..932ece4f 100644 --- a/src/module/Navigation/src/Navigation/Entity/ParameterKey.php +++ b/src/module/Navigation/src/Navigation/Entity/ParameterKey.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Entity/ParameterKeyInterface.php b/src/module/Navigation/src/Navigation/Entity/ParameterKeyInterface.php index b4659b46..e7087f77 100644 --- a/src/module/Navigation/src/Navigation/Entity/ParameterKeyInterface.php +++ b/src/module/Navigation/src/Navigation/Entity/ParameterKeyInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Exception/ContainerNotFoundException.php b/src/module/Navigation/src/Navigation/Exception/ContainerNotFoundException.php index 1fc62351..cb7c9267 100644 --- a/src/module/Navigation/src/Navigation/Exception/ContainerNotFoundException.php +++ b/src/module/Navigation/src/Navigation/Exception/ContainerNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Exception/InvalidArgumentException.php b/src/module/Navigation/src/Navigation/Exception/InvalidArgumentException.php index 285ac16a..da1f163f 100644 --- a/src/module/Navigation/src/Navigation/Exception/InvalidArgumentException.php +++ b/src/module/Navigation/src/Navigation/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Exception/PageNotFoundException.php b/src/module/Navigation/src/Navigation/Exception/PageNotFoundException.php index 709ea5fd..150df8ad 100644 --- a/src/module/Navigation/src/Navigation/Exception/PageNotFoundException.php +++ b/src/module/Navigation/src/Navigation/Exception/PageNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Exception/ParameterKeyNotFoundException.php b/src/module/Navigation/src/Navigation/Exception/ParameterKeyNotFoundException.php index 3d144d59..0e1c2f3a 100644 --- a/src/module/Navigation/src/Navigation/Exception/ParameterKeyNotFoundException.php +++ b/src/module/Navigation/src/Navigation/Exception/ParameterKeyNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Exception/ParameterNotFoundException.php b/src/module/Navigation/src/Navigation/Exception/ParameterNotFoundException.php index 585019b7..542e469e 100644 --- a/src/module/Navigation/src/Navigation/Exception/ParameterNotFoundException.php +++ b/src/module/Navigation/src/Navigation/Exception/ParameterNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Exception/RuntimeException.php b/src/module/Navigation/src/Navigation/Exception/RuntimeException.php index e372ad33..6e9fa5c0 100644 --- a/src/module/Navigation/src/Navigation/Exception/RuntimeException.php +++ b/src/module/Navigation/src/Navigation/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/AbstractNavigationFactory.php b/src/module/Navigation/src/Navigation/Factory/AbstractNavigationFactory.php index 3ce1a384..10b967a8 100644 --- a/src/module/Navigation/src/Navigation/Factory/AbstractNavigationFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/AbstractNavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/ContainerFormFactory.php b/src/module/Navigation/src/Navigation/Factory/ContainerFormFactory.php index 47fa4bf8..2e2ea53a 100644 --- a/src/module/Navigation/src/Navigation/Factory/ContainerFormFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/ContainerFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/ContainerRepositoryProviderFactory.php b/src/module/Navigation/src/Navigation/Factory/ContainerRepositoryProviderFactory.php index a6b57970..49559dcc 100644 --- a/src/module/Navigation/src/Navigation/Factory/ContainerRepositoryProviderFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/ContainerRepositoryProviderFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/DefaultNavigationFactory.php b/src/module/Navigation/src/Navigation/Factory/DefaultNavigationFactory.php index 892be282..cc434d47 100644 --- a/src/module/Navigation/src/Navigation/Factory/DefaultNavigationFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/DefaultNavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/FooterLeftNavigationFactory.php b/src/module/Navigation/src/Navigation/Factory/FooterLeftNavigationFactory.php index 452fca7c..0c268db7 100644 --- a/src/module/Navigation/src/Navigation/Factory/FooterLeftNavigationFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/FooterLeftNavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/FooterRightNavigationFactory.php b/src/module/Navigation/src/Navigation/Factory/FooterRightNavigationFactory.php index fbc6968a..e701200c 100644 --- a/src/module/Navigation/src/Navigation/Factory/FooterRightNavigationFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/FooterRightNavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/NavigationControllerFactory.php b/src/module/Navigation/src/Navigation/Factory/NavigationControllerFactory.php index be6c9d59..6c0267a9 100644 --- a/src/module/Navigation/src/Navigation/Factory/NavigationControllerFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/NavigationControllerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/NavigationHelperFactory.php b/src/module/Navigation/src/Navigation/Factory/NavigationHelperFactory.php index aa5e2851..ba352a2b 100644 --- a/src/module/Navigation/src/Navigation/Factory/NavigationHelperFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/NavigationHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/NavigationHelperPluginManagerFactory.php b/src/module/Navigation/src/Navigation/Factory/NavigationHelperPluginManagerFactory.php index f0945973..524ba8f7 100644 --- a/src/module/Navigation/src/Navigation/Factory/NavigationHelperPluginManagerFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/NavigationHelperPluginManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/NavigationHelperStorageFactory.php b/src/module/Navigation/src/Navigation/Factory/NavigationHelperStorageFactory.php index 988c0b79..19fb9bbe 100644 --- a/src/module/Navigation/src/Navigation/Factory/NavigationHelperStorageFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/NavigationHelperStorageFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/NavigationManagerFactory.php b/src/module/Navigation/src/Navigation/Factory/NavigationManagerFactory.php index faf3c77f..1ec84d4d 100644 --- a/src/module/Navigation/src/Navigation/Factory/NavigationManagerFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/NavigationManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/NavigationManagerFactoryTrait.php b/src/module/Navigation/src/Navigation/Factory/NavigationManagerFactoryTrait.php index a8292577..8230461d 100644 --- a/src/module/Navigation/src/Navigation/Factory/NavigationManagerFactoryTrait.php +++ b/src/module/Navigation/src/Navigation/Factory/NavigationManagerFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/NavigationMenuHelperFactory.php b/src/module/Navigation/src/Navigation/Factory/NavigationMenuHelperFactory.php index 2b66ca1a..1f30126d 100644 --- a/src/module/Navigation/src/Navigation/Factory/NavigationMenuHelperFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/NavigationMenuHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/NavigationStorageFactory.php b/src/module/Navigation/src/Navigation/Factory/NavigationStorageFactory.php index 17ade2fe..dcfd6a88 100644 --- a/src/module/Navigation/src/Navigation/Factory/NavigationStorageFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/NavigationStorageFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/PageFormFactory.php b/src/module/Navigation/src/Navigation/Factory/PageFormFactory.php index 23c0bccc..fe53863f 100644 --- a/src/module/Navigation/src/Navigation/Factory/PageFormFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/PageFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/ParameterFormFactory.php b/src/module/Navigation/src/Navigation/Factory/ParameterFormFactory.php index 16e6511d..a5af184f 100644 --- a/src/module/Navigation/src/Navigation/Factory/ParameterFormFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/ParameterFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/ParameterKeyFormFactory.php b/src/module/Navigation/src/Navigation/Factory/ParameterKeyFormFactory.php index ae098834..661e5184 100644 --- a/src/module/Navigation/src/Navigation/Factory/ParameterKeyFormFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/ParameterKeyFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/ProvideableNavigationFactory.php b/src/module/Navigation/src/Navigation/Factory/ProvideableNavigationFactory.php index c5682ec9..e3e3295c 100644 --- a/src/module/Navigation/src/Navigation/Factory/ProvideableNavigationFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/ProvideableNavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/RenderControllerFactory.php b/src/module/Navigation/src/Navigation/Factory/RenderControllerFactory.php index a7609e61..f06cbce3 100644 --- a/src/module/Navigation/src/Navigation/Factory/RenderControllerFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/RenderControllerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/SocialNavigationFactory.php b/src/module/Navigation/src/Navigation/Factory/SocialNavigationFactory.php index 41c15e17..efe7a9b0 100644 --- a/src/module/Navigation/src/Navigation/Factory/SocialNavigationFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/SocialNavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/SubjectNavigationFactory.php b/src/module/Navigation/src/Navigation/Factory/SubjectNavigationFactory.php index 6a2d613b..12155241 100644 --- a/src/module/Navigation/src/Navigation/Factory/SubjectNavigationFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/SubjectNavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/TopAuthNavigationFactory.php b/src/module/Navigation/src/Navigation/Factory/TopAuthNavigationFactory.php index 2ef51374..7acf2aff 100644 --- a/src/module/Navigation/src/Navigation/Factory/TopAuthNavigationFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/TopAuthNavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/TopLeftNavigationFactory.php b/src/module/Navigation/src/Navigation/Factory/TopLeftNavigationFactory.php index 35ca5fd7..bb9d6f99 100644 --- a/src/module/Navigation/src/Navigation/Factory/TopLeftNavigationFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/TopLeftNavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/TopRightNavigationFactory.php b/src/module/Navigation/src/Navigation/Factory/TopRightNavigationFactory.php index 4412b09d..9b5d84a9 100644 --- a/src/module/Navigation/src/Navigation/Factory/TopRightNavigationFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/TopRightNavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/TwigNavigationHelperFactory.php b/src/module/Navigation/src/Navigation/Factory/TwigNavigationHelperFactory.php index eadd7915..3c40d621 100644 --- a/src/module/Navigation/src/Navigation/Factory/TwigNavigationHelperFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/TwigNavigationHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Factory/UniqueDefaultNavigationFactory.php b/src/module/Navigation/src/Navigation/Factory/UniqueDefaultNavigationFactory.php index 9a7e5372..547eff10 100644 --- a/src/module/Navigation/src/Navigation/Factory/UniqueDefaultNavigationFactory.php +++ b/src/module/Navigation/src/Navigation/Factory/UniqueDefaultNavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Form/ContainerForm.php b/src/module/Navigation/src/Navigation/Form/ContainerForm.php index 1f450665..d23b7ae8 100644 --- a/src/module/Navigation/src/Navigation/Form/ContainerForm.php +++ b/src/module/Navigation/src/Navigation/Form/ContainerForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Form/PageForm.php b/src/module/Navigation/src/Navigation/Form/PageForm.php index aaab964b..ab1ae33b 100644 --- a/src/module/Navigation/src/Navigation/Form/PageForm.php +++ b/src/module/Navigation/src/Navigation/Form/PageForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Form/ParameterForm.php b/src/module/Navigation/src/Navigation/Form/ParameterForm.php index d0998245..0ded0007 100644 --- a/src/module/Navigation/src/Navigation/Form/ParameterForm.php +++ b/src/module/Navigation/src/Navigation/Form/ParameterForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Form/ParameterKeyForm.php b/src/module/Navigation/src/Navigation/Form/ParameterKeyForm.php index 59875e92..356352e8 100644 --- a/src/module/Navigation/src/Navigation/Form/ParameterKeyForm.php +++ b/src/module/Navigation/src/Navigation/Form/ParameterKeyForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Manager/NavigationManager.php b/src/module/Navigation/src/Navigation/Manager/NavigationManager.php index bb1add53..f3dfd88a 100644 --- a/src/module/Navigation/src/Navigation/Manager/NavigationManager.php +++ b/src/module/Navigation/src/Navigation/Manager/NavigationManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Manager/NavigationManagerInterface.php b/src/module/Navigation/src/Navigation/Manager/NavigationManagerInterface.php index fa25b239..1c8b5036 100644 --- a/src/module/Navigation/src/Navigation/Manager/NavigationManagerInterface.php +++ b/src/module/Navigation/src/Navigation/Manager/NavigationManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Navigation.php b/src/module/Navigation/src/Navigation/Navigation.php index f15a3551..a476d73b 100644 --- a/src/module/Navigation/src/Navigation/Navigation.php +++ b/src/module/Navigation/src/Navigation/Navigation.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Provider/ContainerProviderInterface.php b/src/module/Navigation/src/Navigation/Provider/ContainerProviderInterface.php index ddccd62e..88849d34 100644 --- a/src/module/Navigation/src/Navigation/Provider/ContainerProviderInterface.php +++ b/src/module/Navigation/src/Navigation/Provider/ContainerProviderInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Provider/ContainerRepositoryProvider.php b/src/module/Navigation/src/Navigation/Provider/ContainerRepositoryProvider.php index 2c3923b2..95b671c2 100644 --- a/src/module/Navigation/src/Navigation/Provider/ContainerRepositoryProvider.php +++ b/src/module/Navigation/src/Navigation/Provider/ContainerRepositoryProvider.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/Provider/PageProviderInterface.php b/src/module/Navigation/src/Navigation/Provider/PageProviderInterface.php index 5688bf83..8d58cd7c 100644 --- a/src/module/Navigation/src/Navigation/Provider/PageProviderInterface.php +++ b/src/module/Navigation/src/Navigation/Provider/PageProviderInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/View/Helper/Json.php b/src/module/Navigation/src/Navigation/View/Helper/Json.php index a65da88c..a01105bc 100644 --- a/src/module/Navigation/src/Navigation/View/Helper/Json.php +++ b/src/module/Navigation/src/Navigation/View/Helper/Json.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/View/Helper/Menu.php b/src/module/Navigation/src/Navigation/View/Helper/Menu.php index 36beff23..7997a66f 100644 --- a/src/module/Navigation/src/Navigation/View/Helper/Menu.php +++ b/src/module/Navigation/src/Navigation/View/Helper/Menu.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Navigation/src/Navigation/View/Helper/Navigation.php b/src/module/Navigation/src/Navigation/View/Helper/Navigation.php index e0e17c7e..c249e61f 100644 --- a/src/module/Navigation/src/Navigation/View/Helper/Navigation.php +++ b/src/module/Navigation/src/Navigation/View/Helper/Navigation.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Newsletter/Module.php b/src/module/Newsletter/Module.php index 4e93906e..117f5357 100644 --- a/src/module/Newsletter/Module.php +++ b/src/module/Newsletter/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Newsletter/config/module.config.php b/src/module/Newsletter/config/module.config.php index 3cc0dffc..7d7a57b6 100644 --- a/src/module/Newsletter/config/module.config.php +++ b/src/module/Newsletter/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Newsletter/src/Newsletter/Factory/MailChimpFactory.php b/src/module/Newsletter/src/Newsletter/Factory/MailChimpFactory.php index bf225355..8f6a5d8d 100644 --- a/src/module/Newsletter/src/Newsletter/Factory/MailChimpFactory.php +++ b/src/module/Newsletter/src/Newsletter/Factory/MailChimpFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Newsletter/src/Newsletter/Factory/UserControllerListenerFactory.php b/src/module/Newsletter/src/Newsletter/Factory/UserControllerListenerFactory.php index 8234a7e6..756d9c09 100644 --- a/src/module/Newsletter/src/Newsletter/Factory/UserControllerListenerFactory.php +++ b/src/module/Newsletter/src/Newsletter/Factory/UserControllerListenerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Newsletter/src/Newsletter/Listener/UserControllerListener.php b/src/module/Newsletter/src/Newsletter/Listener/UserControllerListener.php index d1d507a2..7a7aaa51 100644 --- a/src/module/Newsletter/src/Newsletter/Listener/UserControllerListener.php +++ b/src/module/Newsletter/src/Newsletter/Listener/UserControllerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Newsletter/src/Newsletter/MailChimpAwareTrait.php b/src/module/Newsletter/src/Newsletter/MailChimpAwareTrait.php index ad2b04fc..2f783a83 100644 --- a/src/module/Newsletter/src/Newsletter/MailChimpAwareTrait.php +++ b/src/module/Newsletter/src/Newsletter/MailChimpAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/Module.php b/src/module/Normalizer/Module.php index 98927f96..306391b8 100644 --- a/src/module/Normalizer/Module.php +++ b/src/module/Normalizer/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/config/module.config.php b/src/module/Normalizer/config/module.config.php index 4b496f49..cfff8ed5 100644 --- a/src/module/Normalizer/config/module.config.php +++ b/src/module/Normalizer/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/AbstractAdapter.php b/src/module/Normalizer/src/Normalizer/Adapter/AbstractAdapter.php index d8b6cd3f..6b87a8a3 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/AbstractAdapter.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/AbstractAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/AdapterInterface.php b/src/module/Normalizer/src/Normalizer/Adapter/AdapterInterface.php index 1892a4bd..5b0983ca 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/AdapterInterface.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/AdapterInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/AdapterPluginManager.php b/src/module/Normalizer/src/Normalizer/Adapter/AdapterPluginManager.php index b0185de3..cd7883d2 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/AdapterPluginManager.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/AdapterPluginManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/AttachmentAdapter.php b/src/module/Normalizer/src/Normalizer/Adapter/AttachmentAdapter.php index 3e065b64..0017e6ce 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/AttachmentAdapter.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/AttachmentAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/CommentAdapter.php b/src/module/Normalizer/src/Normalizer/Adapter/CommentAdapter.php index 4700aec2..aabbcf67 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/CommentAdapter.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/CommentAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/EntityAdapter.php b/src/module/Normalizer/src/Normalizer/Adapter/EntityAdapter.php index 400cce04..866486b6 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/EntityAdapter.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/EntityAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/EntityRevisionAdapter.php b/src/module/Normalizer/src/Normalizer/Adapter/EntityRevisionAdapter.php index da9e4dbf..be9f02e2 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/EntityRevisionAdapter.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/EntityRevisionAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/PageRepositoryAdapter.php b/src/module/Normalizer/src/Normalizer/Adapter/PageRepositoryAdapter.php index 14c61bbf..afb16922 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/PageRepositoryAdapter.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/PageRepositoryAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/PageRevisionAdapter.php b/src/module/Normalizer/src/Normalizer/Adapter/PageRevisionAdapter.php index 8d23e66e..4086c41e 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/PageRevisionAdapter.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/PageRevisionAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/PostAdapter.php b/src/module/Normalizer/src/Normalizer/Adapter/PostAdapter.php index 96a0442d..c69a7491 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/PostAdapter.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/PostAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/TaxonomyTermAdapter.php b/src/module/Normalizer/src/Normalizer/Adapter/TaxonomyTermAdapter.php index 778d5dbd..49700fc4 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/TaxonomyTermAdapter.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/TaxonomyTermAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Adapter/UserAdapter.php b/src/module/Normalizer/src/Normalizer/Adapter/UserAdapter.php index ebba9a15..b39a8e22 100644 --- a/src/module/Normalizer/src/Normalizer/Adapter/UserAdapter.php +++ b/src/module/Normalizer/src/Normalizer/Adapter/UserAdapter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Controller/SignpostController.php b/src/module/Normalizer/src/Normalizer/Controller/SignpostController.php index 41545d3f..cd090a51 100644 --- a/src/module/Normalizer/src/Normalizer/Controller/SignpostController.php +++ b/src/module/Normalizer/src/Normalizer/Controller/SignpostController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Controller/SitemapController.php b/src/module/Normalizer/src/Normalizer/Controller/SitemapController.php index a68c786b..5dc2a5e8 100644 --- a/src/module/Normalizer/src/Normalizer/Controller/SitemapController.php +++ b/src/module/Normalizer/src/Normalizer/Controller/SitemapController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Entity/Metadata.php b/src/module/Normalizer/src/Normalizer/Entity/Metadata.php index b27d3b4b..9cd0f957 100644 --- a/src/module/Normalizer/src/Normalizer/Entity/Metadata.php +++ b/src/module/Normalizer/src/Normalizer/Entity/Metadata.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Entity/MetadataInterface.php b/src/module/Normalizer/src/Normalizer/Entity/MetadataInterface.php index 445f4055..fcaa2334 100644 --- a/src/module/Normalizer/src/Normalizer/Entity/MetadataInterface.php +++ b/src/module/Normalizer/src/Normalizer/Entity/MetadataInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Entity/Normalized.php b/src/module/Normalizer/src/Normalizer/Entity/Normalized.php index ca8dba9f..3f9b4f3c 100644 --- a/src/module/Normalizer/src/Normalizer/Entity/Normalized.php +++ b/src/module/Normalizer/src/Normalizer/Entity/Normalized.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Entity/NormalizedInterface.php b/src/module/Normalizer/src/Normalizer/Entity/NormalizedInterface.php index d531cac4..48ec2b77 100644 --- a/src/module/Normalizer/src/Normalizer/Entity/NormalizedInterface.php +++ b/src/module/Normalizer/src/Normalizer/Entity/NormalizedInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Exception/InvalidArgumentException.php b/src/module/Normalizer/src/Normalizer/Exception/InvalidArgumentException.php index bbe25573..4c5f6b93 100644 --- a/src/module/Normalizer/src/Normalizer/Exception/InvalidArgumentException.php +++ b/src/module/Normalizer/src/Normalizer/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Exception/NoSuitableAdapterFoundException.php b/src/module/Normalizer/src/Normalizer/Exception/NoSuitableAdapterFoundException.php index 3e00192a..ac16160b 100644 --- a/src/module/Normalizer/src/Normalizer/Exception/NoSuitableAdapterFoundException.php +++ b/src/module/Normalizer/src/Normalizer/Exception/NoSuitableAdapterFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Exception/RuntimeException.php b/src/module/Normalizer/src/Normalizer/Exception/RuntimeException.php index 1679df2b..9e70f102 100644 --- a/src/module/Normalizer/src/Normalizer/Exception/RuntimeException.php +++ b/src/module/Normalizer/src/Normalizer/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Factory/NormalizeHelperFactory.php b/src/module/Normalizer/src/Normalizer/Factory/NormalizeHelperFactory.php index 7fc95a65..b7a3cde5 100644 --- a/src/module/Normalizer/src/Normalizer/Factory/NormalizeHelperFactory.php +++ b/src/module/Normalizer/src/Normalizer/Factory/NormalizeHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Factory/NormalizerFactory.php b/src/module/Normalizer/src/Normalizer/Factory/NormalizerFactory.php index f1a82baa..b942a02c 100644 --- a/src/module/Normalizer/src/Normalizer/Factory/NormalizerFactory.php +++ b/src/module/Normalizer/src/Normalizer/Factory/NormalizerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Factory/NormalizerStorageFactory.php b/src/module/Normalizer/src/Normalizer/Factory/NormalizerStorageFactory.php index 19ba0064..6921f6df 100644 --- a/src/module/Normalizer/src/Normalizer/Factory/NormalizerStorageFactory.php +++ b/src/module/Normalizer/src/Normalizer/Factory/NormalizerStorageFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/Normalizer.php b/src/module/Normalizer/src/Normalizer/Normalizer.php index 5c2a3fcf..b0c6f7f2 100644 --- a/src/module/Normalizer/src/Normalizer/Normalizer.php +++ b/src/module/Normalizer/src/Normalizer/Normalizer.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/NormalizerAwareTrait.php b/src/module/Normalizer/src/Normalizer/NormalizerAwareTrait.php index 7fa7db72..3073f539 100644 --- a/src/module/Normalizer/src/Normalizer/NormalizerAwareTrait.php +++ b/src/module/Normalizer/src/Normalizer/NormalizerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/NormalizerInterface.php b/src/module/Normalizer/src/Normalizer/NormalizerInterface.php index c201810c..be7b0d6d 100644 --- a/src/module/Normalizer/src/Normalizer/NormalizerInterface.php +++ b/src/module/Normalizer/src/Normalizer/NormalizerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Normalizer/src/Normalizer/View/Helper/Normalize.php b/src/module/Normalizer/src/Normalizer/View/Helper/Normalize.php index d7f55a45..f946eeb6 100644 --- a/src/module/Normalizer/src/Normalizer/View/Helper/Normalize.php +++ b/src/module/Normalizer/src/Normalizer/View/Helper/Normalize.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/Module.php b/src/module/Notification/Module.php index 4d0102de..292b320e 100644 --- a/src/module/Notification/Module.php +++ b/src/module/Notification/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/config/module.config.php b/src/module/Notification/config/module.config.php index 4d337e1a..55ced3d6 100644 --- a/src/module/Notification/config/module.config.php +++ b/src/module/Notification/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Controller/NotificationController.php b/src/module/Notification/src/Notification/Controller/NotificationController.php index b674d259..c1589a57 100644 --- a/src/module/Notification/src/Notification/Controller/NotificationController.php +++ b/src/module/Notification/src/Notification/Controller/NotificationController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Controller/SubscriptionController.php b/src/module/Notification/src/Notification/Controller/SubscriptionController.php index e76453b6..4bd1590d 100644 --- a/src/module/Notification/src/Notification/Controller/SubscriptionController.php +++ b/src/module/Notification/src/Notification/Controller/SubscriptionController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Controller/WorkerController.php b/src/module/Notification/src/Notification/Controller/WorkerController.php index 49ab715a..4d8153d0 100644 --- a/src/module/Notification/src/Notification/Controller/WorkerController.php +++ b/src/module/Notification/src/Notification/Controller/WorkerController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Entity/Notification.php b/src/module/Notification/src/Notification/Entity/Notification.php index 2f77e16d..8f7f4a00 100644 --- a/src/module/Notification/src/Notification/Entity/Notification.php +++ b/src/module/Notification/src/Notification/Entity/Notification.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Entity/NotificationEvent.php b/src/module/Notification/src/Notification/Entity/NotificationEvent.php index cbf547fe..a582499a 100644 --- a/src/module/Notification/src/Notification/Entity/NotificationEvent.php +++ b/src/module/Notification/src/Notification/Entity/NotificationEvent.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Entity/NotificationEventInterface.php b/src/module/Notification/src/Notification/Entity/NotificationEventInterface.php index 76c17654..7845f1f9 100644 --- a/src/module/Notification/src/Notification/Entity/NotificationEventInterface.php +++ b/src/module/Notification/src/Notification/Entity/NotificationEventInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Entity/NotificationInterface.php b/src/module/Notification/src/Notification/Entity/NotificationInterface.php index 58bb7f5f..30e89a89 100644 --- a/src/module/Notification/src/Notification/Entity/NotificationInterface.php +++ b/src/module/Notification/src/Notification/Entity/NotificationInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Entity/Subscription.php b/src/module/Notification/src/Notification/Entity/Subscription.php index 4d57417b..8790e6fb 100644 --- a/src/module/Notification/src/Notification/Entity/Subscription.php +++ b/src/module/Notification/src/Notification/Entity/Subscription.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Entity/SubscriptionInterface.php b/src/module/Notification/src/Notification/Entity/SubscriptionInterface.php index fea07235..b9b2fb67 100644 --- a/src/module/Notification/src/Notification/Entity/SubscriptionInterface.php +++ b/src/module/Notification/src/Notification/Entity/SubscriptionInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Exception/RuntimeException.php b/src/module/Notification/src/Notification/Exception/RuntimeException.php index bd383b65..4518fb25 100644 --- a/src/module/Notification/src/Notification/Exception/RuntimeException.php +++ b/src/module/Notification/src/Notification/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Factory/NotificationHelperFactory.php b/src/module/Notification/src/Notification/Factory/NotificationHelperFactory.php index 0ea6c820..16bc23c5 100644 --- a/src/module/Notification/src/Notification/Factory/NotificationHelperFactory.php +++ b/src/module/Notification/src/Notification/Factory/NotificationHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Factory/NotificationManagerFactory.php b/src/module/Notification/src/Notification/Factory/NotificationManagerFactory.php index bf62a6bd..55479756 100644 --- a/src/module/Notification/src/Notification/Factory/NotificationManagerFactory.php +++ b/src/module/Notification/src/Notification/Factory/NotificationManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Factory/NotificationStorageFactory.php b/src/module/Notification/src/Notification/Factory/NotificationStorageFactory.php index 8c567f13..73acbf29 100644 --- a/src/module/Notification/src/Notification/Factory/NotificationStorageFactory.php +++ b/src/module/Notification/src/Notification/Factory/NotificationStorageFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Factory/SubscribeFactory.php b/src/module/Notification/src/Notification/Factory/SubscribeFactory.php index 1dc15f10..b5138a70 100644 --- a/src/module/Notification/src/Notification/Factory/SubscribeFactory.php +++ b/src/module/Notification/src/Notification/Factory/SubscribeFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Filter/PersistentEmptyFilter.php b/src/module/Notification/src/Notification/Filter/PersistentEmptyFilter.php index 7426dc8c..6506d9d8 100644 --- a/src/module/Notification/src/Notification/Filter/PersistentEmptyFilter.php +++ b/src/module/Notification/src/Notification/Filter/PersistentEmptyFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Filter/PersistentNotificationFilterChain.php b/src/module/Notification/src/Notification/Filter/PersistentNotificationFilterChain.php index 599ae798..f72b472e 100644 --- a/src/module/Notification/src/Notification/Filter/PersistentNotificationFilterChain.php +++ b/src/module/Notification/src/Notification/Filter/PersistentNotificationFilterChain.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Filter/PersistentParameterFilter.php b/src/module/Notification/src/Notification/Filter/PersistentParameterFilter.php index 5cfc4ff3..a393da34 100644 --- a/src/module/Notification/src/Notification/Filter/PersistentParameterFilter.php +++ b/src/module/Notification/src/Notification/Filter/PersistentParameterFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Form/OptInFieldset.php b/src/module/Notification/src/Notification/Form/OptInFieldset.php index a2d43927..e4405401 100644 --- a/src/module/Notification/src/Notification/Form/OptInFieldset.php +++ b/src/module/Notification/src/Notification/Form/OptInFieldset.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Form/OptInHiddenFieldset.php b/src/module/Notification/src/Notification/Form/OptInHiddenFieldset.php index 2db59f4c..394af921 100644 --- a/src/module/Notification/src/Notification/Form/OptInHiddenFieldset.php +++ b/src/module/Notification/src/Notification/Form/OptInHiddenFieldset.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Listener/AbstractListener.php b/src/module/Notification/src/Notification/Listener/AbstractListener.php index 65685fe1..a73bc82d 100644 --- a/src/module/Notification/src/Notification/Listener/AbstractListener.php +++ b/src/module/Notification/src/Notification/Listener/AbstractListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Listener/AuthenticationControllerListener.php b/src/module/Notification/src/Notification/Listener/AuthenticationControllerListener.php index bc68a90a..7da6a879 100644 --- a/src/module/Notification/src/Notification/Listener/AuthenticationControllerListener.php +++ b/src/module/Notification/src/Notification/Listener/AuthenticationControllerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Listener/DiscussionManagerListener.php b/src/module/Notification/src/Notification/Listener/DiscussionManagerListener.php index bd7b6f8d..48f288fe 100644 --- a/src/module/Notification/src/Notification/Listener/DiscussionManagerListener.php +++ b/src/module/Notification/src/Notification/Listener/DiscussionManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/Listener/RepositoryManagerListener.php b/src/module/Notification/src/Notification/Listener/RepositoryManagerListener.php index eb767761..677a97a7 100644 --- a/src/module/Notification/src/Notification/Listener/RepositoryManagerListener.php +++ b/src/module/Notification/src/Notification/Listener/RepositoryManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/NotificationManager.php b/src/module/Notification/src/Notification/NotificationManager.php index 655f3668..56d6e9c8 100644 --- a/src/module/Notification/src/Notification/NotificationManager.php +++ b/src/module/Notification/src/Notification/NotificationManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/NotificationManagerAwareTrait.php b/src/module/Notification/src/Notification/NotificationManagerAwareTrait.php index 254e1b20..ad57263e 100644 --- a/src/module/Notification/src/Notification/NotificationManagerAwareTrait.php +++ b/src/module/Notification/src/Notification/NotificationManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/NotificationManagerInterface.php b/src/module/Notification/src/Notification/NotificationManagerInterface.php index 3407f36f..7ca7fd3a 100644 --- a/src/module/Notification/src/Notification/NotificationManagerInterface.php +++ b/src/module/Notification/src/Notification/NotificationManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/NotificationWorker.php b/src/module/Notification/src/Notification/NotificationWorker.php index 22cf43be..00e01593 100644 --- a/src/module/Notification/src/Notification/NotificationWorker.php +++ b/src/module/Notification/src/Notification/NotificationWorker.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/SubscriptionManager.php b/src/module/Notification/src/Notification/SubscriptionManager.php index 89dd520d..67f3aaa1 100644 --- a/src/module/Notification/src/Notification/SubscriptionManager.php +++ b/src/module/Notification/src/Notification/SubscriptionManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/SubscriptionManagerAwareTrait.php b/src/module/Notification/src/Notification/SubscriptionManagerAwareTrait.php index 5110cbdf..b93f2438 100644 --- a/src/module/Notification/src/Notification/SubscriptionManagerAwareTrait.php +++ b/src/module/Notification/src/Notification/SubscriptionManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/SubscriptionManagerInterface.php b/src/module/Notification/src/Notification/SubscriptionManagerInterface.php index 01ad5e18..6d8c8063 100644 --- a/src/module/Notification/src/Notification/SubscriptionManagerInterface.php +++ b/src/module/Notification/src/Notification/SubscriptionManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/View/Helper/Notification.php b/src/module/Notification/src/Notification/View/Helper/Notification.php index 35011c59..7830cf1f 100644 --- a/src/module/Notification/src/Notification/View/Helper/Notification.php +++ b/src/module/Notification/src/Notification/View/Helper/Notification.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Notification/src/Notification/View/Helper/Subscribe.php b/src/module/Notification/src/Notification/View/Helper/Subscribe.php index 8fa8a867..3ec0f471 100644 --- a/src/module/Notification/src/Notification/View/Helper/Subscribe.php +++ b/src/module/Notification/src/Notification/View/Helper/Subscribe.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/Module.php b/src/module/Page/Module.php index fe4ccf48..1f6eaeed 100644 --- a/src/module/Page/Module.php +++ b/src/module/Page/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/config/module.config.php b/src/module/Page/config/module.config.php index 63571714..5b3c4839 100644 --- a/src/module/Page/config/module.config.php +++ b/src/module/Page/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Assertion/PageAssertion.php b/src/module/Page/src/Page/Assertion/PageAssertion.php index 7d42a9d0..716750bf 100644 --- a/src/module/Page/src/Page/Assertion/PageAssertion.php +++ b/src/module/Page/src/Page/Assertion/PageAssertion.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Controller/IndexController.php b/src/module/Page/src/Page/Controller/IndexController.php index b8a6a9a7..9e7ddae8 100644 --- a/src/module/Page/src/Page/Controller/IndexController.php +++ b/src/module/Page/src/Page/Controller/IndexController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Entity/PageRepository.php b/src/module/Page/src/Page/Entity/PageRepository.php index 0a6cbf32..cc455358 100644 --- a/src/module/Page/src/Page/Entity/PageRepository.php +++ b/src/module/Page/src/Page/Entity/PageRepository.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Entity/PageRepositoryInterface.php b/src/module/Page/src/Page/Entity/PageRepositoryInterface.php index 045cdf5b..8430bd8a 100644 --- a/src/module/Page/src/Page/Entity/PageRepositoryInterface.php +++ b/src/module/Page/src/Page/Entity/PageRepositoryInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Entity/PageRevision.php b/src/module/Page/src/Page/Entity/PageRevision.php index 5e6a7b7b..0937098d 100644 --- a/src/module/Page/src/Page/Entity/PageRevision.php +++ b/src/module/Page/src/Page/Entity/PageRevision.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Entity/PageRevisionInterface.php b/src/module/Page/src/Page/Entity/PageRevisionInterface.php index 845eee78..cf23b8ce 100644 --- a/src/module/Page/src/Page/Entity/PageRevisionInterface.php +++ b/src/module/Page/src/Page/Entity/PageRevisionInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Exception/InvalidArgumentException.php b/src/module/Page/src/Page/Exception/InvalidArgumentException.php index 8c223309..4615dd0d 100644 --- a/src/module/Page/src/Page/Exception/InvalidArgumentException.php +++ b/src/module/Page/src/Page/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Exception/PageNotFoundException.php b/src/module/Page/src/Page/Exception/PageNotFoundException.php index f0227f3e..d345b892 100644 --- a/src/module/Page/src/Page/Exception/PageNotFoundException.php +++ b/src/module/Page/src/Page/Exception/PageNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Exception/RuntimeException.php b/src/module/Page/src/Page/Exception/RuntimeException.php index 322de5a8..79c7de28 100644 --- a/src/module/Page/src/Page/Exception/RuntimeException.php +++ b/src/module/Page/src/Page/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Factory/PageAssertionFactory.php b/src/module/Page/src/Page/Factory/PageAssertionFactory.php index 33139e42..70273877 100644 --- a/src/module/Page/src/Page/Factory/PageAssertionFactory.php +++ b/src/module/Page/src/Page/Factory/PageAssertionFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Factory/RepositoryFormFactory.php b/src/module/Page/src/Page/Factory/RepositoryFormFactory.php index 46ab90d4..1b3f1e8a 100644 --- a/src/module/Page/src/Page/Factory/RepositoryFormFactory.php +++ b/src/module/Page/src/Page/Factory/RepositoryFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Factory/RevisionFormFactory.php b/src/module/Page/src/Page/Factory/RevisionFormFactory.php index 4bf4c404..7b002165 100644 --- a/src/module/Page/src/Page/Factory/RevisionFormFactory.php +++ b/src/module/Page/src/Page/Factory/RevisionFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Form/RepositoryForm.php b/src/module/Page/src/Page/Form/RepositoryForm.php index 580d9f4f..90ee3ad2 100644 --- a/src/module/Page/src/Page/Form/RepositoryForm.php +++ b/src/module/Page/src/Page/Form/RepositoryForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Form/RevisionFilter.php b/src/module/Page/src/Page/Form/RevisionFilter.php index 107de4e7..50ced29a 100644 --- a/src/module/Page/src/Page/Form/RevisionFilter.php +++ b/src/module/Page/src/Page/Form/RevisionFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Form/RevisionForm.php b/src/module/Page/src/Page/Form/RevisionForm.php index aac7d784..7792bd84 100644 --- a/src/module/Page/src/Page/Form/RevisionForm.php +++ b/src/module/Page/src/Page/Form/RevisionForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Form/RoleFieldset.php b/src/module/Page/src/Page/Form/RoleFieldset.php index 6b8b4e05..c2ae474b 100644 --- a/src/module/Page/src/Page/Form/RoleFieldset.php +++ b/src/module/Page/src/Page/Form/RoleFieldset.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Manager/PageManager.php b/src/module/Page/src/Page/Manager/PageManager.php index f809dd0e..bb1ef6f1 100644 --- a/src/module/Page/src/Page/Manager/PageManager.php +++ b/src/module/Page/src/Page/Manager/PageManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Manager/PageManagerAwareTrait.php b/src/module/Page/src/Page/Manager/PageManagerAwareTrait.php index f0fb84e0..ed8a062e 100644 --- a/src/module/Page/src/Page/Manager/PageManagerAwareTrait.php +++ b/src/module/Page/src/Page/Manager/PageManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Manager/PageManagerInterface.php b/src/module/Page/src/Page/Manager/PageManagerInterface.php index 8b76a4dd..e5eebf40 100644 --- a/src/module/Page/src/Page/Manager/PageManagerInterface.php +++ b/src/module/Page/src/Page/Manager/PageManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Page/src/Page/Provider/FirewallHydrator.php b/src/module/Page/src/Page/Provider/FirewallHydrator.php index 13f1f194..13b2ec26 100644 --- a/src/module/Page/src/Page/Provider/FirewallHydrator.php +++ b/src/module/Page/src/Page/Provider/FirewallHydrator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/PageSpeed/Module.php b/src/module/PageSpeed/Module.php index af514702..44f2eb2e 100644 --- a/src/module/PageSpeed/Module.php +++ b/src/module/PageSpeed/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/PageSpeed/config/module.config.php b/src/module/PageSpeed/config/module.config.php index 1dd1c4fd..62227fdf 100644 --- a/src/module/PageSpeed/config/module.config.php +++ b/src/module/PageSpeed/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/PageSpeed/src/PageSpeed/Controller/PageSpeedController.php b/src/module/PageSpeed/src/PageSpeed/Controller/PageSpeedController.php index 1c13b8d4..61b9951e 100644 --- a/src/module/PageSpeed/src/PageSpeed/Controller/PageSpeedController.php +++ b/src/module/PageSpeed/src/PageSpeed/Controller/PageSpeedController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/Module.php b/src/module/RelatedContent/Module.php index a143008d..89f92bf7 100644 --- a/src/module/RelatedContent/Module.php +++ b/src/module/RelatedContent/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/config/module.config.php b/src/module/RelatedContent/config/module.config.php index afddfe3c..ccd20755 100644 --- a/src/module/RelatedContent/config/module.config.php +++ b/src/module/RelatedContent/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Controller/RelatedContentController.php b/src/module/RelatedContent/src/RelatedContent/Controller/RelatedContentController.php index 1a9ebbbd..a8cfd353 100644 --- a/src/module/RelatedContent/src/RelatedContent/Controller/RelatedContentController.php +++ b/src/module/RelatedContent/src/RelatedContent/Controller/RelatedContentController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/AbstractType.php b/src/module/RelatedContent/src/RelatedContent/Entity/AbstractType.php index 95ad23db..59283e2f 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/AbstractType.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/AbstractType.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/Category.php b/src/module/RelatedContent/src/RelatedContent/Entity/Category.php index 4c7c3e01..1198caa2 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/Category.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/Category.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/CategoryInterface.php b/src/module/RelatedContent/src/RelatedContent/Entity/CategoryInterface.php index 9db9ecd8..b5fdb11d 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/CategoryInterface.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/CategoryInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/Container.php b/src/module/RelatedContent/src/RelatedContent/Entity/Container.php index 1caf8767..3401c1c8 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/Container.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/Container.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/ContainerInterface.php b/src/module/RelatedContent/src/RelatedContent/Entity/ContainerInterface.php index 30a90c27..6b0a552b 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/ContainerInterface.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/ContainerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/External.php b/src/module/RelatedContent/src/RelatedContent/Entity/External.php index 59132010..a0eae519 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/External.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/External.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/ExternalInterface.php b/src/module/RelatedContent/src/RelatedContent/Entity/ExternalInterface.php index 5d928491..100ec0eb 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/ExternalInterface.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/ExternalInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/Holder.php b/src/module/RelatedContent/src/RelatedContent/Entity/Holder.php index ebd0b8a5..c9998edd 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/Holder.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/Holder.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/HolderInterface.php b/src/module/RelatedContent/src/RelatedContent/Entity/HolderInterface.php index 444d9337..0242189e 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/HolderInterface.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/HolderInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/Internal.php b/src/module/RelatedContent/src/RelatedContent/Entity/Internal.php index 9ca859a9..d8d825d0 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/Internal.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/Internal.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/InternalInterface.php b/src/module/RelatedContent/src/RelatedContent/Entity/InternalInterface.php index 55b989d8..dc372337 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/InternalInterface.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/InternalInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Entity/TypeInterface.php b/src/module/RelatedContent/src/RelatedContent/Entity/TypeInterface.php index bfbf3f29..df3a8d39 100644 --- a/src/module/RelatedContent/src/RelatedContent/Entity/TypeInterface.php +++ b/src/module/RelatedContent/src/RelatedContent/Entity/TypeInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Exception/InvalidArgumentException.php b/src/module/RelatedContent/src/RelatedContent/Exception/InvalidArgumentException.php index 2b04f166..6b5c215d 100644 --- a/src/module/RelatedContent/src/RelatedContent/Exception/InvalidArgumentException.php +++ b/src/module/RelatedContent/src/RelatedContent/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Exception/NotFoundException.php b/src/module/RelatedContent/src/RelatedContent/Exception/NotFoundException.php index 1763c3c5..6ef9f42a 100644 --- a/src/module/RelatedContent/src/RelatedContent/Exception/NotFoundException.php +++ b/src/module/RelatedContent/src/RelatedContent/Exception/NotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Exception/RelationNotFoundException.php b/src/module/RelatedContent/src/RelatedContent/Exception/RelationNotFoundException.php index 4a1440e3..10a329fe 100644 --- a/src/module/RelatedContent/src/RelatedContent/Exception/RelationNotFoundException.php +++ b/src/module/RelatedContent/src/RelatedContent/Exception/RelationNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Exception/RuntimeException.php b/src/module/RelatedContent/src/RelatedContent/Exception/RuntimeException.php index 33f43ac3..765d79db 100644 --- a/src/module/RelatedContent/src/RelatedContent/Exception/RuntimeException.php +++ b/src/module/RelatedContent/src/RelatedContent/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Factory/RelatedContentHelperFactory.php b/src/module/RelatedContent/src/RelatedContent/Factory/RelatedContentHelperFactory.php index 02ddc353..50f07ca1 100644 --- a/src/module/RelatedContent/src/RelatedContent/Factory/RelatedContentHelperFactory.php +++ b/src/module/RelatedContent/src/RelatedContent/Factory/RelatedContentHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Factory/RelatedContentManagerFactory.php b/src/module/RelatedContent/src/RelatedContent/Factory/RelatedContentManagerFactory.php index b5707d6d..76d1a761 100644 --- a/src/module/RelatedContent/src/RelatedContent/Factory/RelatedContentManagerFactory.php +++ b/src/module/RelatedContent/src/RelatedContent/Factory/RelatedContentManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Form/CategoryForm.php b/src/module/RelatedContent/src/RelatedContent/Form/CategoryForm.php index dd24560a..aeb383e2 100644 --- a/src/module/RelatedContent/src/RelatedContent/Form/CategoryForm.php +++ b/src/module/RelatedContent/src/RelatedContent/Form/CategoryForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Form/ExternalForm.php b/src/module/RelatedContent/src/RelatedContent/Form/ExternalForm.php index 579bf0b9..db02ece8 100644 --- a/src/module/RelatedContent/src/RelatedContent/Form/ExternalForm.php +++ b/src/module/RelatedContent/src/RelatedContent/Form/ExternalForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Form/InternalForm.php b/src/module/RelatedContent/src/RelatedContent/Form/InternalForm.php index 781f9927..8e308330 100644 --- a/src/module/RelatedContent/src/RelatedContent/Form/InternalForm.php +++ b/src/module/RelatedContent/src/RelatedContent/Form/InternalForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManager.php b/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManager.php index dad1dbbb..6ab4c3b0 100644 --- a/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManager.php +++ b/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManagerAwareTrait.php b/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManagerAwareTrait.php index 7175fae6..deef714e 100644 --- a/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManagerAwareTrait.php +++ b/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManagerInterface.php b/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManagerInterface.php index 5acca8e5..3c4b03c3 100644 --- a/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManagerInterface.php +++ b/src/module/RelatedContent/src/RelatedContent/Manager/RelatedContentManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Result/AbstractResult.php b/src/module/RelatedContent/src/RelatedContent/Result/AbstractResult.php index ebb2f49b..66339ff9 100644 --- a/src/module/RelatedContent/src/RelatedContent/Result/AbstractResult.php +++ b/src/module/RelatedContent/src/RelatedContent/Result/AbstractResult.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Result/CategoryResult.php b/src/module/RelatedContent/src/RelatedContent/Result/CategoryResult.php index 3da470c4..6066019a 100644 --- a/src/module/RelatedContent/src/RelatedContent/Result/CategoryResult.php +++ b/src/module/RelatedContent/src/RelatedContent/Result/CategoryResult.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Result/ExternalResult.php b/src/module/RelatedContent/src/RelatedContent/Result/ExternalResult.php index b18803a2..a1e52718 100644 --- a/src/module/RelatedContent/src/RelatedContent/Result/ExternalResult.php +++ b/src/module/RelatedContent/src/RelatedContent/Result/ExternalResult.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Result/InternalResult.php b/src/module/RelatedContent/src/RelatedContent/Result/InternalResult.php index 586aca98..b86c2e14 100644 --- a/src/module/RelatedContent/src/RelatedContent/Result/InternalResult.php +++ b/src/module/RelatedContent/src/RelatedContent/Result/InternalResult.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/Result/ResultInterface.php b/src/module/RelatedContent/src/RelatedContent/Result/ResultInterface.php index ddbaa40d..20fe412b 100644 --- a/src/module/RelatedContent/src/RelatedContent/Result/ResultInterface.php +++ b/src/module/RelatedContent/src/RelatedContent/Result/ResultInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/RelatedContent/src/RelatedContent/View/Helper/RelatedContentHelper.php b/src/module/RelatedContent/src/RelatedContent/View/Helper/RelatedContentHelper.php index 363ce952..991be42b 100644 --- a/src/module/RelatedContent/src/RelatedContent/View/Helper/RelatedContentHelper.php +++ b/src/module/RelatedContent/src/RelatedContent/View/Helper/RelatedContentHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Search/Module.php b/src/module/Search/Module.php index 27256939..86898965 100644 --- a/src/module/Search/Module.php +++ b/src/module/Search/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Search/config/module.config.php b/src/module/Search/config/module.config.php index 967bf65e..b764ebae 100644 --- a/src/module/Search/config/module.config.php +++ b/src/module/Search/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Search/src/Search/Controller/SearchController.php b/src/module/Search/src/Search/Controller/SearchController.php index 1b86691b..862d6462 100644 --- a/src/module/Search/src/Search/Controller/SearchController.php +++ b/src/module/Search/src/Search/Controller/SearchController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Search/src/Search/Form/SearchForm.php b/src/module/Search/src/Search/Form/SearchForm.php index ef5b44e0..96e878cf 100644 --- a/src/module/Search/src/Search/Form/SearchForm.php +++ b/src/module/Search/src/Search/Form/SearchForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Session/Module.php b/src/module/Session/Module.php index 43787ce2..f51910fc 100644 --- a/src/module/Session/Module.php +++ b/src/module/Session/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Session/config/module.config.php b/src/module/Session/config/module.config.php index 4da424e5..f0e174aa 100644 --- a/src/module/Session/config/module.config.php +++ b/src/module/Session/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Session/src/Session/Controller/SessionController.php b/src/module/Session/src/Session/Controller/SessionController.php index 7864b385..895c7782 100644 --- a/src/module/Session/src/Session/Controller/SessionController.php +++ b/src/module/Session/src/Session/Controller/SessionController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Session/src/Session/Factory/SaveHandlerFactory.php b/src/module/Session/src/Session/Factory/SaveHandlerFactory.php index e90bcb64..9559bdd5 100644 --- a/src/module/Session/src/Session/Factory/SaveHandlerFactory.php +++ b/src/module/Session/src/Session/Factory/SaveHandlerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Session/src/Session/Factory/SessionControllerFactory.php b/src/module/Session/src/Session/Factory/SessionControllerFactory.php index 9751f854..995ac8a3 100644 --- a/src/module/Session/src/Session/Factory/SessionControllerFactory.php +++ b/src/module/Session/src/Session/Factory/SessionControllerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/StaticPage/Module.php b/src/module/StaticPage/Module.php index f1e33c17..7c98e31f 100644 --- a/src/module/StaticPage/Module.php +++ b/src/module/StaticPage/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/StaticPage/config/module.config.php b/src/module/StaticPage/config/module.config.php index de9018ce..b1f7bcd2 100644 --- a/src/module/StaticPage/config/module.config.php +++ b/src/module/StaticPage/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/StaticPage/src/StaticPage/Controller/DatenschutzController.php b/src/module/StaticPage/src/StaticPage/Controller/DatenschutzController.php index 3a253804..b8842516 100644 --- a/src/module/StaticPage/src/StaticPage/Controller/DatenschutzController.php +++ b/src/module/StaticPage/src/StaticPage/Controller/DatenschutzController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/StaticPage/src/StaticPage/Controller/SpendenController.php b/src/module/StaticPage/src/StaticPage/Controller/SpendenController.php index d56ce6c7..54f22f94 100644 --- a/src/module/StaticPage/src/StaticPage/Controller/SpendenController.php +++ b/src/module/StaticPage/src/StaticPage/Controller/SpendenController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/StaticPage/src/StaticPage/DatenschutzRevision.php b/src/module/StaticPage/src/StaticPage/DatenschutzRevision.php index 315d9d4d..5c1ffecf 100644 --- a/src/module/StaticPage/src/StaticPage/DatenschutzRevision.php +++ b/src/module/StaticPage/src/StaticPage/DatenschutzRevision.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/Module.php b/src/module/Subject/Module.php index ee79f63b..04954994 100644 --- a/src/module/Subject/Module.php +++ b/src/module/Subject/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/config/instances.config.php b/src/module/Subject/config/instances.config.php index 78de5080..813710c2 100644 --- a/src/module/Subject/config/instances.config.php +++ b/src/module/Subject/config/instances.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/config/module.config.php b/src/module/Subject/config/module.config.php index b7de362c..118a408b 100644 --- a/src/module/Subject/config/module.config.php +++ b/src/module/Subject/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Controller/AbstractController.php b/src/module/Subject/src/Subject/Controller/AbstractController.php index be8beab3..951d02f2 100644 --- a/src/module/Subject/src/Subject/Controller/AbstractController.php +++ b/src/module/Subject/src/Subject/Controller/AbstractController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Controller/EntityController.php b/src/module/Subject/src/Subject/Controller/EntityController.php index 8be7e156..f653e278 100644 --- a/src/module/Subject/src/Subject/Controller/EntityController.php +++ b/src/module/Subject/src/Subject/Controller/EntityController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Controller/HomeController.php b/src/module/Subject/src/Subject/Controller/HomeController.php index 9c45c450..f175668b 100644 --- a/src/module/Subject/src/Subject/Controller/HomeController.php +++ b/src/module/Subject/src/Subject/Controller/HomeController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Controller/TaxonomyController.php b/src/module/Subject/src/Subject/Controller/TaxonomyController.php index c7dab881..384ee6bc 100644 --- a/src/module/Subject/src/Subject/Controller/TaxonomyController.php +++ b/src/module/Subject/src/Subject/Controller/TaxonomyController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Exception/InvalidArgumentException.php b/src/module/Subject/src/Subject/Exception/InvalidArgumentException.php index d9d78ca0..15ad3e12 100644 --- a/src/module/Subject/src/Subject/Exception/InvalidArgumentException.php +++ b/src/module/Subject/src/Subject/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Exception/PluginNotFoundException.php b/src/module/Subject/src/Subject/Exception/PluginNotFoundException.php index 6f5eae5b..5da247a9 100644 --- a/src/module/Subject/src/Subject/Exception/PluginNotFoundException.php +++ b/src/module/Subject/src/Subject/Exception/PluginNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Exception/RuntimeException.php b/src/module/Subject/src/Subject/Exception/RuntimeException.php index 2355b0a8..8d7f1e98 100644 --- a/src/module/Subject/src/Subject/Exception/RuntimeException.php +++ b/src/module/Subject/src/Subject/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Exception/SubjectNotFoundException.php b/src/module/Subject/src/Subject/Exception/SubjectNotFoundException.php index 9e7e2a50..4a58d2f5 100644 --- a/src/module/Subject/src/Subject/Exception/SubjectNotFoundException.php +++ b/src/module/Subject/src/Subject/Exception/SubjectNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Factory/ModuleOptionsFactory.php b/src/module/Subject/src/Subject/Factory/ModuleOptionsFactory.php index 0a61425f..24cb4272 100644 --- a/src/module/Subject/src/Subject/Factory/ModuleOptionsFactory.php +++ b/src/module/Subject/src/Subject/Factory/ModuleOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Factory/NavigationFactory.php b/src/module/Subject/src/Subject/Factory/NavigationFactory.php index d09be5d3..5187b205 100644 --- a/src/module/Subject/src/Subject/Factory/NavigationFactory.php +++ b/src/module/Subject/src/Subject/Factory/NavigationFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Factory/SubjectHelperFactory.php b/src/module/Subject/src/Subject/Factory/SubjectHelperFactory.php index 597cab2e..764f47be 100644 --- a/src/module/Subject/src/Subject/Factory/SubjectHelperFactory.php +++ b/src/module/Subject/src/Subject/Factory/SubjectHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Factory/SubjectManagerFactory.php b/src/module/Subject/src/Subject/Factory/SubjectManagerFactory.php index d9ce9e51..e64a7a14 100644 --- a/src/module/Subject/src/Subject/Factory/SubjectManagerFactory.php +++ b/src/module/Subject/src/Subject/Factory/SubjectManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Factory/SubjectManagerFactoryTrait.php b/src/module/Subject/src/Subject/Factory/SubjectManagerFactoryTrait.php index 8d295fc0..80450564 100644 --- a/src/module/Subject/src/Subject/Factory/SubjectManagerFactoryTrait.php +++ b/src/module/Subject/src/Subject/Factory/SubjectManagerFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Factory/SubjectStorageFactory.php b/src/module/Subject/src/Subject/Factory/SubjectStorageFactory.php index 0185f52a..c9605c40 100644 --- a/src/module/Subject/src/Subject/Factory/SubjectStorageFactory.php +++ b/src/module/Subject/src/Subject/Factory/SubjectStorageFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Hydrator/Navigation.php b/src/module/Subject/src/Subject/Hydrator/Navigation.php index e6d83fe0..a5bcc7c9 100644 --- a/src/module/Subject/src/Subject/Hydrator/Navigation.php +++ b/src/module/Subject/src/Subject/Hydrator/Navigation.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Manager/SubjectManager.php b/src/module/Subject/src/Subject/Manager/SubjectManager.php index fdacbf36..e906f12f 100644 --- a/src/module/Subject/src/Subject/Manager/SubjectManager.php +++ b/src/module/Subject/src/Subject/Manager/SubjectManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Manager/SubjectManagerAwareInterface.php b/src/module/Subject/src/Subject/Manager/SubjectManagerAwareInterface.php index 5e002846..b5d28e1b 100644 --- a/src/module/Subject/src/Subject/Manager/SubjectManagerAwareInterface.php +++ b/src/module/Subject/src/Subject/Manager/SubjectManagerAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Manager/SubjectManagerAwareTrait.php b/src/module/Subject/src/Subject/Manager/SubjectManagerAwareTrait.php index b1a38b75..37ba50b9 100644 --- a/src/module/Subject/src/Subject/Manager/SubjectManagerAwareTrait.php +++ b/src/module/Subject/src/Subject/Manager/SubjectManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Manager/SubjectManagerInterface.php b/src/module/Subject/src/Subject/Manager/SubjectManagerInterface.php index fc886dd6..fc24d9fc 100644 --- a/src/module/Subject/src/Subject/Manager/SubjectManagerInterface.php +++ b/src/module/Subject/src/Subject/Manager/SubjectManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Options/ModuleOptions.php b/src/module/Subject/src/Subject/Options/ModuleOptions.php index 9c9c4253..fe87a63c 100644 --- a/src/module/Subject/src/Subject/Options/ModuleOptions.php +++ b/src/module/Subject/src/Subject/Options/ModuleOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Options/SubjectOptions.php b/src/module/Subject/src/Subject/Options/SubjectOptions.php index 28fb9625..2889ca5b 100644 --- a/src/module/Subject/src/Subject/Options/SubjectOptions.php +++ b/src/module/Subject/src/Subject/Options/SubjectOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/Route/SubjectRoute.php b/src/module/Subject/src/Subject/Route/SubjectRoute.php index ba77b64f..898c924a 100644 --- a/src/module/Subject/src/Subject/Route/SubjectRoute.php +++ b/src/module/Subject/src/Subject/Route/SubjectRoute.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Subject/src/Subject/View/Helper/SubjectHelper.php b/src/module/Subject/src/Subject/View/Helper/SubjectHelper.php index e46786be..1b1c8f08 100644 --- a/src/module/Subject/src/Subject/View/Helper/SubjectHelper.php +++ b/src/module/Subject/src/Subject/View/Helper/SubjectHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/Module.php b/src/module/Taxonomy/Module.php index 357833c1..86508deb 100644 --- a/src/module/Taxonomy/Module.php +++ b/src/module/Taxonomy/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/config/module.config.php b/src/module/Taxonomy/config/module.config.php index 49d59219..54d237a3 100644 --- a/src/module/Taxonomy/config/module.config.php +++ b/src/module/Taxonomy/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Controller/AbstractController.php b/src/module/Taxonomy/src/Taxonomy/Controller/AbstractController.php index 720eac5f..4c243711 100644 --- a/src/module/Taxonomy/src/Taxonomy/Controller/AbstractController.php +++ b/src/module/Taxonomy/src/Taxonomy/Controller/AbstractController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Controller/ApiController.php b/src/module/Taxonomy/src/Taxonomy/Controller/ApiController.php index 71843659..b345eb15 100644 --- a/src/module/Taxonomy/src/Taxonomy/Controller/ApiController.php +++ b/src/module/Taxonomy/src/Taxonomy/Controller/ApiController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Controller/GetController.php b/src/module/Taxonomy/src/Taxonomy/Controller/GetController.php index 24c05554..04fd8fd0 100644 --- a/src/module/Taxonomy/src/Taxonomy/Controller/GetController.php +++ b/src/module/Taxonomy/src/Taxonomy/Controller/GetController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Controller/TermController.php b/src/module/Taxonomy/src/Taxonomy/Controller/TermController.php index 47f4ca5a..be3baaa1 100644 --- a/src/module/Taxonomy/src/Taxonomy/Controller/TermController.php +++ b/src/module/Taxonomy/src/Taxonomy/Controller/TermController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Entity/Taxonomy.php b/src/module/Taxonomy/src/Taxonomy/Entity/Taxonomy.php index 6b49521d..3789ccbb 100644 --- a/src/module/Taxonomy/src/Taxonomy/Entity/Taxonomy.php +++ b/src/module/Taxonomy/src/Taxonomy/Entity/Taxonomy.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyInterface.php b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyInterface.php index abce6f77..4cbce8ee 100644 --- a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyInterface.php +++ b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTerm.php b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTerm.php index deef7d7d..d2df5f02 100644 --- a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTerm.php +++ b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTerm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermAwareInterface.php b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermAwareInterface.php index 614de3de..710fec97 100644 --- a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermAwareInterface.php +++ b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermEntity.php b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermEntity.php index ea4bc4f9..6fe1632c 100644 --- a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermEntity.php +++ b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermEntity.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermInterface.php b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermInterface.php index fd4360be..a667d3b6 100644 --- a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermInterface.php +++ b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermNodeInterface.php b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermNodeInterface.php index e890069d..8a379c7c 100644 --- a/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermNodeInterface.php +++ b/src/module/Taxonomy/src/Taxonomy/Entity/TaxonomyTermNodeInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Exception/ExceptionInterface.php b/src/module/Taxonomy/src/Taxonomy/Exception/ExceptionInterface.php index 4bd0080a..6134a172 100644 --- a/src/module/Taxonomy/src/Taxonomy/Exception/ExceptionInterface.php +++ b/src/module/Taxonomy/src/Taxonomy/Exception/ExceptionInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Exception/InvalidArgumentException.php b/src/module/Taxonomy/src/Taxonomy/Exception/InvalidArgumentException.php index 55a16142..a23b44f8 100644 --- a/src/module/Taxonomy/src/Taxonomy/Exception/InvalidArgumentException.php +++ b/src/module/Taxonomy/src/Taxonomy/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Exception/LinkNotAllowedException.php b/src/module/Taxonomy/src/Taxonomy/Exception/LinkNotAllowedException.php index 842640f2..14d1c09c 100644 --- a/src/module/Taxonomy/src/Taxonomy/Exception/LinkNotAllowedException.php +++ b/src/module/Taxonomy/src/Taxonomy/Exception/LinkNotAllowedException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Exception/RuntimeException.php b/src/module/Taxonomy/src/Taxonomy/Exception/RuntimeException.php index 7cd22306..7fdea06e 100644 --- a/src/module/Taxonomy/src/Taxonomy/Exception/RuntimeException.php +++ b/src/module/Taxonomy/src/Taxonomy/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Exception/SortingNotSupported.php b/src/module/Taxonomy/src/Taxonomy/Exception/SortingNotSupported.php index 7393b13c..836f534c 100644 --- a/src/module/Taxonomy/src/Taxonomy/Exception/SortingNotSupported.php +++ b/src/module/Taxonomy/src/Taxonomy/Exception/SortingNotSupported.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Exception/TermNotFoundException.php b/src/module/Taxonomy/src/Taxonomy/Exception/TermNotFoundException.php index 096d79ff..ff4212f2 100644 --- a/src/module/Taxonomy/src/Taxonomy/Exception/TermNotFoundException.php +++ b/src/module/Taxonomy/src/Taxonomy/Exception/TermNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Factory/ModuleOptionsFactory.php b/src/module/Taxonomy/src/Taxonomy/Factory/ModuleOptionsFactory.php index 3f7b4f0b..45935cbe 100644 --- a/src/module/Taxonomy/src/Taxonomy/Factory/ModuleOptionsFactory.php +++ b/src/module/Taxonomy/src/Taxonomy/Factory/ModuleOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Factory/NavigationProviderFactory.php b/src/module/Taxonomy/src/Taxonomy/Factory/NavigationProviderFactory.php index f55f0f38..261ecef5 100644 --- a/src/module/Taxonomy/src/Taxonomy/Factory/NavigationProviderFactory.php +++ b/src/module/Taxonomy/src/Taxonomy/Factory/NavigationProviderFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyHelperFactory.php b/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyHelperFactory.php index 197faac4..b9ff5735 100644 --- a/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyHelperFactory.php +++ b/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyManagerFactory.php b/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyManagerFactory.php index 1a1d0cf4..978cf9e4 100644 --- a/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyManagerFactory.php +++ b/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyManagerFactoryTrait.php b/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyManagerFactoryTrait.php index a1d37dde..e673ff10 100644 --- a/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyManagerFactoryTrait.php +++ b/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyManagerFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyTermHydratorPluginFactory.php b/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyTermHydratorPluginFactory.php index 56e8b39e..b96148ee 100644 --- a/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyTermHydratorPluginFactory.php +++ b/src/module/Taxonomy/src/Taxonomy/Factory/TaxonomyTermHydratorPluginFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Filter/TaxonomyTypeCollectionFilter.php b/src/module/Taxonomy/src/Taxonomy/Filter/TaxonomyTypeCollectionFilter.php index f2a51a1f..675d1e6d 100644 --- a/src/module/Taxonomy/src/Taxonomy/Filter/TaxonomyTypeCollectionFilter.php +++ b/src/module/Taxonomy/src/Taxonomy/Filter/TaxonomyTypeCollectionFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Form/BatchCopyForm.php b/src/module/Taxonomy/src/Taxonomy/Form/BatchCopyForm.php index 340b4f92..7264fdbb 100644 --- a/src/module/Taxonomy/src/Taxonomy/Form/BatchCopyForm.php +++ b/src/module/Taxonomy/src/Taxonomy/Form/BatchCopyForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Form/BatchMoveForm.php b/src/module/Taxonomy/src/Taxonomy/Form/BatchMoveForm.php index 95130716..e1403efc 100644 --- a/src/module/Taxonomy/src/Taxonomy/Form/BatchMoveForm.php +++ b/src/module/Taxonomy/src/Taxonomy/Form/BatchMoveForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Form/TermForm.php b/src/module/Taxonomy/src/Taxonomy/Form/TermForm.php index ba86c2ee..0615d4b3 100644 --- a/src/module/Taxonomy/src/Taxonomy/Form/TermForm.php +++ b/src/module/Taxonomy/src/Taxonomy/Form/TermForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Hydrator/TaxonomyTermHydrator.php b/src/module/Taxonomy/src/Taxonomy/Hydrator/TaxonomyTermHydrator.php index 17908b1d..e65ec990 100644 --- a/src/module/Taxonomy/src/Taxonomy/Hydrator/TaxonomyTermHydrator.php +++ b/src/module/Taxonomy/src/Taxonomy/Hydrator/TaxonomyTermHydrator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Hydrator/TaxonomyTermHydratorPlugin.php b/src/module/Taxonomy/src/Taxonomy/Hydrator/TaxonomyTermHydratorPlugin.php index ca4fa344..a6c2c172 100644 --- a/src/module/Taxonomy/src/Taxonomy/Hydrator/TaxonomyTermHydratorPlugin.php +++ b/src/module/Taxonomy/src/Taxonomy/Hydrator/TaxonomyTermHydratorPlugin.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Listener/EntityManagerListener.php b/src/module/Taxonomy/src/Taxonomy/Listener/EntityManagerListener.php index a9395d52..cb1b06a3 100644 --- a/src/module/Taxonomy/src/Taxonomy/Listener/EntityManagerListener.php +++ b/src/module/Taxonomy/src/Taxonomy/Listener/EntityManagerListener.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManager.php b/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManager.php index 875b5ae8..a5ee53ad 100644 --- a/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManager.php +++ b/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManagerAwareTrait.php b/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManagerAwareTrait.php index c63ce175..76bfcc47 100644 --- a/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManagerAwareTrait.php +++ b/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManagerInterface.php b/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManagerInterface.php index 0776969c..26c7fc5a 100644 --- a/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManagerInterface.php +++ b/src/module/Taxonomy/src/Taxonomy/Manager/TaxonomyManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Options/ModuleOptions.php b/src/module/Taxonomy/src/Taxonomy/Options/ModuleOptions.php index e75b9ec7..f41dec43 100644 --- a/src/module/Taxonomy/src/Taxonomy/Options/ModuleOptions.php +++ b/src/module/Taxonomy/src/Taxonomy/Options/ModuleOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Options/TaxonomyOptions.php b/src/module/Taxonomy/src/Taxonomy/Options/TaxonomyOptions.php index 90c1d21b..c921cfbc 100644 --- a/src/module/Taxonomy/src/Taxonomy/Options/TaxonomyOptions.php +++ b/src/module/Taxonomy/src/Taxonomy/Options/TaxonomyOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Provider/NavigationProvider.php b/src/module/Taxonomy/src/Taxonomy/Provider/NavigationProvider.php index d6c1c2ee..25ff2f42 100644 --- a/src/module/Taxonomy/src/Taxonomy/Provider/NavigationProvider.php +++ b/src/module/Taxonomy/src/Taxonomy/Provider/NavigationProvider.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Provider/TokenProvider.php b/src/module/Taxonomy/src/Taxonomy/Provider/TokenProvider.php index 4a9ce34a..b7e5b6e3 100644 --- a/src/module/Taxonomy/src/Taxonomy/Provider/TokenProvider.php +++ b/src/module/Taxonomy/src/Taxonomy/Provider/TokenProvider.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Strategy/BranchDecisionMakerStrategy.php b/src/module/Taxonomy/src/Taxonomy/Strategy/BranchDecisionMakerStrategy.php index 5b09d962..b03b9fee 100644 --- a/src/module/Taxonomy/src/Taxonomy/Strategy/BranchDecisionMakerStrategy.php +++ b/src/module/Taxonomy/src/Taxonomy/Strategy/BranchDecisionMakerStrategy.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Strategy/ShortestBranchDecisionMaker.php b/src/module/Taxonomy/src/Taxonomy/Strategy/ShortestBranchDecisionMaker.php index a4962248..d0a61df5 100644 --- a/src/module/Taxonomy/src/Taxonomy/Strategy/ShortestBranchDecisionMaker.php +++ b/src/module/Taxonomy/src/Taxonomy/Strategy/ShortestBranchDecisionMaker.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/Validator/ValidAssociation.php b/src/module/Taxonomy/src/Taxonomy/Validator/ValidAssociation.php index 5b703a04..a4efecc0 100644 --- a/src/module/Taxonomy/src/Taxonomy/Validator/ValidAssociation.php +++ b/src/module/Taxonomy/src/Taxonomy/Validator/ValidAssociation.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Taxonomy/src/Taxonomy/View/Helper/TaxonomyHelper.php b/src/module/Taxonomy/src/Taxonomy/View/Helper/TaxonomyHelper.php index 32b369e6..97c685f8 100644 --- a/src/module/Taxonomy/src/Taxonomy/View/Helper/TaxonomyHelper.php +++ b/src/module/Taxonomy/src/Taxonomy/View/Helper/TaxonomyHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/Module.php b/src/module/Term/Module.php index 7579f8ff..8dab0a70 100644 --- a/src/module/Term/Module.php +++ b/src/module/Term/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/config/module.config.php b/src/module/Term/config/module.config.php index 69719b34..05f7aa3d 100644 --- a/src/module/Term/config/module.config.php +++ b/src/module/Term/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/src/Term/Entity/TermEntity.php b/src/module/Term/src/Term/Entity/TermEntity.php index eef5c979..8d53288a 100644 --- a/src/module/Term/src/Term/Entity/TermEntity.php +++ b/src/module/Term/src/Term/Entity/TermEntity.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/src/Term/Entity/TermEntityAwareInterface.php b/src/module/Term/src/Term/Entity/TermEntityAwareInterface.php index e7081387..5e42c77d 100644 --- a/src/module/Term/src/Term/Entity/TermEntityAwareInterface.php +++ b/src/module/Term/src/Term/Entity/TermEntityAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/src/Term/Entity/TermEntityInterface.php b/src/module/Term/src/Term/Entity/TermEntityInterface.php index 0a1e3194..f7050056 100644 --- a/src/module/Term/src/Term/Entity/TermEntityInterface.php +++ b/src/module/Term/src/Term/Entity/TermEntityInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/src/Term/Exception/InvalidArgumentException.php b/src/module/Term/src/Term/Exception/InvalidArgumentException.php index 9f2f28c7..faa4ddb8 100644 --- a/src/module/Term/src/Term/Exception/InvalidArgumentException.php +++ b/src/module/Term/src/Term/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/src/Term/Exception/RuntimeException.php b/src/module/Term/src/Term/Exception/RuntimeException.php index c36e5e6d..c4aff289 100644 --- a/src/module/Term/src/Term/Exception/RuntimeException.php +++ b/src/module/Term/src/Term/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/src/Term/Exception/TermNotFoundException.php b/src/module/Term/src/Term/Exception/TermNotFoundException.php index 57c37a8d..9d5d2f40 100644 --- a/src/module/Term/src/Term/Exception/TermNotFoundException.php +++ b/src/module/Term/src/Term/Exception/TermNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/src/Term/Form/TermFieldset.php b/src/module/Term/src/Term/Form/TermFieldset.php index 44545e84..2f269a34 100644 --- a/src/module/Term/src/Term/Form/TermFieldset.php +++ b/src/module/Term/src/Term/Form/TermFieldset.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/src/Term/Manager/TermManager.php b/src/module/Term/src/Term/Manager/TermManager.php index 66ed700a..c42d8c37 100644 --- a/src/module/Term/src/Term/Manager/TermManager.php +++ b/src/module/Term/src/Term/Manager/TermManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/src/Term/Manager/TermManagerAwareInterface.php b/src/module/Term/src/Term/Manager/TermManagerAwareInterface.php index 1805e51c..3f8e87ed 100644 --- a/src/module/Term/src/Term/Manager/TermManagerAwareInterface.php +++ b/src/module/Term/src/Term/Manager/TermManagerAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/src/Term/Manager/TermManagerAwareTrait.php b/src/module/Term/src/Term/Manager/TermManagerAwareTrait.php index 8356e854..b2c6b12e 100644 --- a/src/module/Term/src/Term/Manager/TermManagerAwareTrait.php +++ b/src/module/Term/src/Term/Manager/TermManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Term/src/Term/Manager/TermManagerInterface.php b/src/module/Term/src/Term/Manager/TermManagerInterface.php index 9a19daa0..a7385a67 100644 --- a/src/module/Term/src/Term/Manager/TermManagerInterface.php +++ b/src/module/Term/src/Term/Manager/TermManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Token/Module.php b/src/module/Token/Module.php index e2b5d7ad..9312142b 100644 --- a/src/module/Token/Module.php +++ b/src/module/Token/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Token/config/module.config.php b/src/module/Token/config/module.config.php index f50f8272..952b56cd 100644 --- a/src/module/Token/config/module.config.php +++ b/src/module/Token/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Token/src/Token/Exception/RuntimeException.php b/src/module/Token/src/Token/Exception/RuntimeException.php index 082d6bbb..3c8e4544 100644 --- a/src/module/Token/src/Token/Exception/RuntimeException.php +++ b/src/module/Token/src/Token/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Token/src/Token/Provider/AbstractProvider.php b/src/module/Token/src/Token/Provider/AbstractProvider.php index 936be4d4..86e6733c 100644 --- a/src/module/Token/src/Token/Provider/AbstractProvider.php +++ b/src/module/Token/src/Token/Provider/AbstractProvider.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Token/src/Token/Provider/ProviderInterface.php b/src/module/Token/src/Token/Provider/ProviderInterface.php index c482df62..9d00d55b 100644 --- a/src/module/Token/src/Token/Provider/ProviderInterface.php +++ b/src/module/Token/src/Token/Provider/ProviderInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Token/src/Token/Tokenizer.php b/src/module/Token/src/Token/Tokenizer.php index 4a21ed98..e64f50de 100644 --- a/src/module/Token/src/Token/Tokenizer.php +++ b/src/module/Token/src/Token/Tokenizer.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Token/src/Token/TokenizerAwareTrait.php b/src/module/Token/src/Token/TokenizerAwareTrait.php index cd1a9e6a..0840462a 100644 --- a/src/module/Token/src/Token/TokenizerAwareTrait.php +++ b/src/module/Token/src/Token/TokenizerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Token/src/Token/TokenizerInterface.php b/src/module/Token/src/Token/TokenizerInterface.php index 1bc5d562..1bbe4069 100644 --- a/src/module/Token/src/Token/TokenizerInterface.php +++ b/src/module/Token/src/Token/TokenizerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/Module.php b/src/module/Type/Module.php index 102455ed..8d0c3e81 100644 --- a/src/module/Type/Module.php +++ b/src/module/Type/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/config/module.config.php b/src/module/Type/config/module.config.php index 870b76c0..91e9d3db 100644 --- a/src/module/Type/config/module.config.php +++ b/src/module/Type/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/src/Type/Entity/Type.php b/src/module/Type/src/Type/Entity/Type.php index 4cd1a1c7..0d1372e9 100644 --- a/src/module/Type/src/Type/Entity/Type.php +++ b/src/module/Type/src/Type/Entity/Type.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/src/Type/Entity/TypeAwareInterface.php b/src/module/Type/src/Type/Entity/TypeAwareInterface.php index aec2a3f3..7ea23481 100644 --- a/src/module/Type/src/Type/Entity/TypeAwareInterface.php +++ b/src/module/Type/src/Type/Entity/TypeAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/src/Type/Entity/TypeAwareTrait.php b/src/module/Type/src/Type/Entity/TypeAwareTrait.php index f652977d..c14ae2a7 100644 --- a/src/module/Type/src/Type/Entity/TypeAwareTrait.php +++ b/src/module/Type/src/Type/Entity/TypeAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/src/Type/Entity/TypeInterface.php b/src/module/Type/src/Type/Entity/TypeInterface.php index 082a015d..a7aee995 100644 --- a/src/module/Type/src/Type/Entity/TypeInterface.php +++ b/src/module/Type/src/Type/Entity/TypeInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/src/Type/Exception/TypeNotFoundException.php b/src/module/Type/src/Type/Exception/TypeNotFoundException.php index b0927ad2..d392e9a8 100644 --- a/src/module/Type/src/Type/Exception/TypeNotFoundException.php +++ b/src/module/Type/src/Type/Exception/TypeNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/src/Type/Factory/TypeManagerFactory.php b/src/module/Type/src/Type/Factory/TypeManagerFactory.php index d061d5bc..b8d75c93 100644 --- a/src/module/Type/src/Type/Factory/TypeManagerFactory.php +++ b/src/module/Type/src/Type/Factory/TypeManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/src/Type/Factory/TypeManagerFactoryTrait.php b/src/module/Type/src/Type/Factory/TypeManagerFactoryTrait.php index 5d08a3e3..627f0016 100644 --- a/src/module/Type/src/Type/Factory/TypeManagerFactoryTrait.php +++ b/src/module/Type/src/Type/Factory/TypeManagerFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/src/Type/TypeManager.php b/src/module/Type/src/Type/TypeManager.php index 341281b4..416d41e4 100644 --- a/src/module/Type/src/Type/TypeManager.php +++ b/src/module/Type/src/Type/TypeManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/src/Type/TypeManagerAwareInterface.php b/src/module/Type/src/Type/TypeManagerAwareInterface.php index 96462782..45b97c73 100644 --- a/src/module/Type/src/Type/TypeManagerAwareInterface.php +++ b/src/module/Type/src/Type/TypeManagerAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/src/Type/TypeManagerAwareTrait.php b/src/module/Type/src/Type/TypeManagerAwareTrait.php index 9e4a31e1..d9c9c19d 100644 --- a/src/module/Type/src/Type/TypeManagerAwareTrait.php +++ b/src/module/Type/src/Type/TypeManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/src/Type/TypeManagerInterface.php b/src/module/Type/src/Type/TypeManagerInterface.php index 8ce60651..8dd2b821 100644 --- a/src/module/Type/src/Type/TypeManagerInterface.php +++ b/src/module/Type/src/Type/TypeManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Type/test/TypeTest/Manager/TypeManagerTest.php b/src/module/Type/test/TypeTest/Manager/TypeManagerTest.php new file mode 100644 index 00000000..5115b50a --- /dev/null +++ b/src/module/Type/test/TypeTest/Manager/TypeManagerTest.php @@ -0,0 +1,70 @@ +classResolver = $this->mockClassResolver(); + $this->objectManager = $this->mockObjectManager(); + $this->typeManager = new TypeManager($this->classResolver, $this->objectManager); + } + + public function testFindTypeByNames_OK() + { + $names = ["name1","name2"]; + $className = "Type\Entity\Type"; + $types = new ArrayCollection([new Type(),new Type()]); + + $this->prepareResolveClass($this->classResolver, TypeInterface::class, $className); + $this->prepareFindBy($this->objectManager, $className, ['name' => $names], $types->toArray()); + + $this->assertEquals($types, $this->typeManager->findTypesByNames($names)); + } + + public function testFindTypeByName_OK() + { + $name = "name"; + $className = "Type\Entity\Type"; + $type = new Type(); + + $this->prepareResolveClass($this->classResolver, TypeInterface::class, $className); + $this->prepareFindOneBy($this->objectManager, $className, ['name' => $name], $type); + + $this->assertEquals($type, $this->typeManager->findTypeByName($name)); + } +} diff --git a/src/module/Ui/Module.php b/src/module/Ui/Module.php index f74dbf62..8b786606 100644 --- a/src/module/Ui/Module.php +++ b/src/module/Ui/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/config/module.config.php b/src/module/Ui/config/module.config.php index a81f4169..0eb44a21 100644 --- a/src/module/Ui/config/module.config.php +++ b/src/module/Ui/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Controller/Plugin/Brand.php b/src/module/Ui/src/Ui/Controller/Plugin/Brand.php index 703b5c25..17f3bcc5 100644 --- a/src/module/Ui/src/Ui/Controller/Plugin/Brand.php +++ b/src/module/Ui/src/Ui/Controller/Plugin/Brand.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Factory/AssetsHostHelperFactory.php b/src/module/Ui/src/Ui/Factory/AssetsHostHelperFactory.php index 63068c27..6b9bc286 100644 --- a/src/module/Ui/src/Ui/Factory/AssetsHostHelperFactory.php +++ b/src/module/Ui/src/Ui/Factory/AssetsHostHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Factory/BrandHelperFactory.php b/src/module/Ui/src/Ui/Factory/BrandHelperFactory.php index 05386206..e8e63a42 100644 --- a/src/module/Ui/src/Ui/Factory/BrandHelperFactory.php +++ b/src/module/Ui/src/Ui/Factory/BrandHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Factory/BrandHelperOptionsFactory.php b/src/module/Ui/src/Ui/Factory/BrandHelperOptionsFactory.php index 62c3680c..d314f686 100644 --- a/src/module/Ui/src/Ui/Factory/BrandHelperOptionsFactory.php +++ b/src/module/Ui/src/Ui/Factory/BrandHelperOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Factory/BrandPluginFactory.php b/src/module/Ui/src/Ui/Factory/BrandPluginFactory.php index 3fcca011..034af868 100644 --- a/src/module/Ui/src/Ui/Factory/BrandPluginFactory.php +++ b/src/module/Ui/src/Ui/Factory/BrandPluginFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Factory/PageHeaderFactory.php b/src/module/Ui/src/Ui/Factory/PageHeaderFactory.php index b7adf95f..fea8fdba 100644 --- a/src/module/Ui/src/Ui/Factory/PageHeaderFactory.php +++ b/src/module/Ui/src/Ui/Factory/PageHeaderFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Factory/PageHeaderHelperOptionsFactory.php b/src/module/Ui/src/Ui/Factory/PageHeaderHelperOptionsFactory.php index 50e8cb6d..b5b17551 100644 --- a/src/module/Ui/src/Ui/Factory/PageHeaderHelperOptionsFactory.php +++ b/src/module/Ui/src/Ui/Factory/PageHeaderHelperOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Factory/PhpDebugRenderFactory.php b/src/module/Ui/src/Ui/Factory/PhpDebugRenderFactory.php index 785d8402..47805950 100644 --- a/src/module/Ui/src/Ui/Factory/PhpDebugRenderFactory.php +++ b/src/module/Ui/src/Ui/Factory/PhpDebugRenderFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Factory/RecaptchaHelperFactory.php b/src/module/Ui/src/Ui/Factory/RecaptchaHelperFactory.php index e9de634f..0bfd340c 100644 --- a/src/module/Ui/src/Ui/Factory/RecaptchaHelperFactory.php +++ b/src/module/Ui/src/Ui/Factory/RecaptchaHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Factory/TrackingFactory.php b/src/module/Ui/src/Ui/Factory/TrackingFactory.php index 1318d667..cbce7329 100644 --- a/src/module/Ui/src/Ui/Factory/TrackingFactory.php +++ b/src/module/Ui/src/Ui/Factory/TrackingFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Factory/TrackingHelperOptionsFactory.php b/src/module/Ui/src/Ui/Factory/TrackingHelperOptionsFactory.php index 4af4132b..2db006c1 100644 --- a/src/module/Ui/src/Ui/Factory/TrackingHelperOptionsFactory.php +++ b/src/module/Ui/src/Ui/Factory/TrackingHelperOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Factory/TwigPartialFactory.php b/src/module/Ui/src/Ui/Factory/TwigPartialFactory.php index 205e28a1..50d6f49a 100644 --- a/src/module/Ui/src/Ui/Factory/TwigPartialFactory.php +++ b/src/module/Ui/src/Ui/Factory/TwigPartialFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Options/BrandHelperInstanceOptions.php b/src/module/Ui/src/Ui/Options/BrandHelperInstanceOptions.php index e7a55e03..30aa7392 100644 --- a/src/module/Ui/src/Ui/Options/BrandHelperInstanceOptions.php +++ b/src/module/Ui/src/Ui/Options/BrandHelperInstanceOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Options/BrandHelperOptions.php b/src/module/Ui/src/Ui/Options/BrandHelperOptions.php index 278c0d4b..72e3093f 100644 --- a/src/module/Ui/src/Ui/Options/BrandHelperOptions.php +++ b/src/module/Ui/src/Ui/Options/BrandHelperOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Options/PageHeaderHelperOptions.php b/src/module/Ui/src/Ui/Options/PageHeaderHelperOptions.php index 51fc40ae..df121bc3 100644 --- a/src/module/Ui/src/Ui/Options/PageHeaderHelperOptions.php +++ b/src/module/Ui/src/Ui/Options/PageHeaderHelperOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Options/TrackingHelperInstanceOptions.php b/src/module/Ui/src/Ui/Options/TrackingHelperInstanceOptions.php index 15ec6b09..93fe9895 100644 --- a/src/module/Ui/src/Ui/Options/TrackingHelperInstanceOptions.php +++ b/src/module/Ui/src/Ui/Options/TrackingHelperInstanceOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Options/TrackingHelperOptions.php b/src/module/Ui/src/Ui/Options/TrackingHelperOptions.php index 0b9471d4..a78c94b3 100644 --- a/src/module/Ui/src/Ui/Options/TrackingHelperOptions.php +++ b/src/module/Ui/src/Ui/Options/TrackingHelperOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Renderer/PhpDebugRenderer.php b/src/module/Ui/src/Ui/Renderer/PhpDebugRenderer.php index 8c0aa0ac..3040b2a0 100644 --- a/src/module/Ui/src/Ui/Renderer/PhpDebugRenderer.php +++ b/src/module/Ui/src/Ui/Renderer/PhpDebugRenderer.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/Strategy/PhpRendererStrategy.php b/src/module/Ui/src/Ui/Strategy/PhpRendererStrategy.php index 5bb9cb65..be7e27f5 100644 --- a/src/module/Ui/src/Ui/Strategy/PhpRendererStrategy.php +++ b/src/module/Ui/src/Ui/Strategy/PhpRendererStrategy.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/AssetsHost.php b/src/module/Ui/src/Ui/View/Helper/AssetsHost.php index 96824403..12107907 100644 --- a/src/module/Ui/src/Ui/View/Helper/AssetsHost.php +++ b/src/module/Ui/src/Ui/View/Helper/AssetsHost.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/Brand.php b/src/module/Ui/src/Ui/View/Helper/Brand.php index e39a5c38..9bfc0d2d 100644 --- a/src/module/Ui/src/Ui/View/Helper/Brand.php +++ b/src/module/Ui/src/Ui/View/Helper/Brand.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/DiffHelper.php b/src/module/Ui/src/Ui/View/Helper/DiffHelper.php index 5ddf4778..c995b18e 100644 --- a/src/module/Ui/src/Ui/View/Helper/DiffHelper.php +++ b/src/module/Ui/src/Ui/View/Helper/DiffHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/Encrypt.php b/src/module/Ui/src/Ui/View/Helper/Encrypt.php index 31a5f219..8d36e2b2 100644 --- a/src/module/Ui/src/Ui/View/Helper/Encrypt.php +++ b/src/module/Ui/src/Ui/View/Helper/Encrypt.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/PageHeader.php b/src/module/Ui/src/Ui/View/Helper/PageHeader.php index 404368b9..068daef5 100644 --- a/src/module/Ui/src/Ui/View/Helper/PageHeader.php +++ b/src/module/Ui/src/Ui/View/Helper/PageHeader.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/PreRelease.php b/src/module/Ui/src/Ui/View/Helper/PreRelease.php index 4c9da0e6..a9d3d086 100644 --- a/src/module/Ui/src/Ui/View/Helper/PreRelease.php +++ b/src/module/Ui/src/Ui/View/Helper/PreRelease.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/PreviewHelper.php b/src/module/Ui/src/Ui/View/Helper/PreviewHelper.php index 5f6c57ff..1946976c 100644 --- a/src/module/Ui/src/Ui/View/Helper/PreviewHelper.php +++ b/src/module/Ui/src/Ui/View/Helper/PreviewHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/RandomBanner.php b/src/module/Ui/src/Ui/View/Helper/RandomBanner.php index 907af52b..f2b4c0fe 100644 --- a/src/module/Ui/src/Ui/View/Helper/RandomBanner.php +++ b/src/module/Ui/src/Ui/View/Helper/RandomBanner.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/Recaptcha.php b/src/module/Ui/src/Ui/View/Helper/Recaptcha.php index 83e841b3..eadaef8c 100644 --- a/src/module/Ui/src/Ui/View/Helper/Recaptcha.php +++ b/src/module/Ui/src/Ui/View/Helper/Recaptcha.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/Registry.php b/src/module/Ui/src/Ui/View/Helper/Registry.php index be02358c..2dd8415a 100644 --- a/src/module/Ui/src/Ui/View/Helper/Registry.php +++ b/src/module/Ui/src/Ui/View/Helper/Registry.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/Timeago.php b/src/module/Ui/src/Ui/View/Helper/Timeago.php index a9804e13..6cd34add 100644 --- a/src/module/Ui/src/Ui/View/Helper/Timeago.php +++ b/src/module/Ui/src/Ui/View/Helper/Timeago.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/ToAlpha.php b/src/module/Ui/src/Ui/View/Helper/ToAlpha.php index 0298969a..39bc543b 100644 --- a/src/module/Ui/src/Ui/View/Helper/ToAlpha.php +++ b/src/module/Ui/src/Ui/View/Helper/ToAlpha.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/Tracking.php b/src/module/Ui/src/Ui/View/Helper/Tracking.php index 1592ebaf..53d52bf5 100644 --- a/src/module/Ui/src/Ui/View/Helper/Tracking.php +++ b/src/module/Ui/src/Ui/View/Helper/Tracking.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/src/Ui/View/Helper/TwigPartial.php b/src/module/Ui/src/Ui/View/Helper/TwigPartial.php index e6256ef0..c9ee7687 100644 --- a/src/module/Ui/src/Ui/View/Helper/TwigPartial.php +++ b/src/module/Ui/src/Ui/View/Helper/TwigPartial.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/admin/debugger.twig b/src/module/Ui/templates/admin/debugger.twig index e16c580d..0cf7ba06 100644 --- a/src/module/Ui/templates/admin/debugger.twig +++ b/src/module/Ui/templates/admin/debugger.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/admin/home/index.phtml b/src/module/Ui/templates/admin/home/index.phtml index f8c0b8cb..4892e797 100644 --- a/src/module/Ui/templates/admin/home/index.phtml +++ b/src/module/Ui/templates/admin/home/index.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/ads/ads.twig b/src/module/Ui/templates/ads/ads.twig index 6a9fffc7..66e87f4a 100644 --- a/src/module/Ui/templates/ads/ads.twig +++ b/src/module/Ui/templates/ads/ads.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/ads/create.twig b/src/module/Ui/templates/ads/create.twig index d0e00a3f..3ee5a7f9 100644 --- a/src/module/Ui/templates/ads/create.twig +++ b/src/module/Ui/templates/ads/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/ads/helper/ads-helper.phtml b/src/module/Ui/templates/ads/helper/ads-helper.phtml index 4b981896..ac9375ab 100644 --- a/src/module/Ui/templates/ads/helper/ads-helper.phtml +++ b/src/module/Ui/templates/ads/helper/ads-helper.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/ads/helper/banner-helper.phtml b/src/module/Ui/templates/ads/helper/banner-helper.phtml index 73d684ef..d7c3f9ca 100644 --- a/src/module/Ui/templates/ads/helper/banner-helper.phtml +++ b/src/module/Ui/templates/ads/helper/banner-helper.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/ads/setAdPage.twig b/src/module/Ui/templates/ads/setAdPage.twig index feecca34..58797d92 100644 --- a/src/module/Ui/templates/ads/setAdPage.twig +++ b/src/module/Ui/templates/ads/setAdPage.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/ads/update.twig b/src/module/Ui/templates/ads/update.twig index 48630623..0624c05d 100644 --- a/src/module/Ui/templates/ads/update.twig +++ b/src/module/Ui/templates/ads/update.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/application/index/index.twig b/src/module/Ui/templates/application/index/index.twig index a49a7dfa..7624ebe5 100644 --- a/src/module/Ui/templates/application/index/index.twig +++ b/src/module/Ui/templates/application/index/index.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/authentication/activate.twig b/src/module/Ui/templates/authentication/activate.twig index edc8ddd1..3c0fbf45 100644 --- a/src/module/Ui/templates/authentication/activate.twig +++ b/src/module/Ui/templates/authentication/activate.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/authentication/change-password.twig b/src/module/Ui/templates/authentication/change-password.twig index 918535eb..8681bba3 100644 --- a/src/module/Ui/templates/authentication/change-password.twig +++ b/src/module/Ui/templates/authentication/change-password.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/authentication/login.twig b/src/module/Ui/templates/authentication/login.twig index 682070e2..43da5945 100644 --- a/src/module/Ui/templates/authentication/login.twig +++ b/src/module/Ui/templates/authentication/login.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/authentication/logout.twig b/src/module/Ui/templates/authentication/logout.twig index 51460a99..3250a24f 100644 --- a/src/module/Ui/templates/authentication/logout.twig +++ b/src/module/Ui/templates/authentication/logout.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/authentication/reset-password/restore.twig b/src/module/Ui/templates/authentication/reset-password/restore.twig index 072a3bfb..f68b705a 100644 --- a/src/module/Ui/templates/authentication/reset-password/restore.twig +++ b/src/module/Ui/templates/authentication/reset-password/restore.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/authentication/reset-password/select.twig b/src/module/Ui/templates/authentication/reset-password/select.twig index accde585..c1f117ee 100644 --- a/src/module/Ui/templates/authentication/reset-password/select.twig +++ b/src/module/Ui/templates/authentication/reset-password/select.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/authorization/role/create.phtml b/src/module/Ui/templates/authorization/role/create.phtml index cc78afd9..e138a5c5 100644 --- a/src/module/Ui/templates/authorization/role/create.phtml +++ b/src/module/Ui/templates/authorization/role/create.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/authorization/role/partial/users-table.phtml b/src/module/Ui/templates/authorization/role/partial/users-table.phtml index 37437c00..188bc4ff 100644 --- a/src/module/Ui/templates/authorization/role/partial/users-table.phtml +++ b/src/module/Ui/templates/authorization/role/partial/users-table.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/authorization/role/permission/add.phtml b/src/module/Ui/templates/authorization/role/permission/add.phtml index 9598d0ff..9b0dfb51 100644 --- a/src/module/Ui/templates/authorization/role/permission/add.phtml +++ b/src/module/Ui/templates/authorization/role/permission/add.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/authorization/role/roles.phtml b/src/module/Ui/templates/authorization/role/roles.phtml index 586cc0a1..d87095d6 100644 --- a/src/module/Ui/templates/authorization/role/roles.phtml +++ b/src/module/Ui/templates/authorization/role/roles.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/authorization/role/show.phtml b/src/module/Ui/templates/authorization/role/show.phtml index 538d5ba3..f801b371 100644 --- a/src/module/Ui/templates/authorization/role/show.phtml +++ b/src/module/Ui/templates/authorization/role/show.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/authorization/role/user/add.phtml b/src/module/Ui/templates/authorization/role/user/add.phtml index f9f7e1ce..da16e39f 100644 --- a/src/module/Ui/templates/authorization/role/user/add.phtml +++ b/src/module/Ui/templates/authorization/role/user/add.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/authorization/role/user/partial.phtml b/src/module/Ui/templates/authorization/role/user/partial.phtml index 03e4f6bc..b5e59cc6 100644 --- a/src/module/Ui/templates/authorization/role/user/partial.phtml +++ b/src/module/Ui/templates/authorization/role/user/partial.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/authorization/role/user/remove.phtml b/src/module/Ui/templates/authorization/role/user/remove.phtml index b4a1d8f2..df0dbe9b 100644 --- a/src/module/Ui/templates/authorization/role/user/remove.phtml +++ b/src/module/Ui/templates/authorization/role/user/remove.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/blog/blog/blogs.phtml b/src/module/Ui/templates/blog/blog/blogs.phtml index 2b76ffe2..58da96ee 100644 --- a/src/module/Ui/templates/blog/blog/blogs.phtml +++ b/src/module/Ui/templates/blog/blog/blogs.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/blog/blog/post/create.phtml b/src/module/Ui/templates/blog/blog/post/create.phtml index 4632f850..b212154d 100644 --- a/src/module/Ui/templates/blog/blog/post/create.phtml +++ b/src/module/Ui/templates/blog/blog/post/create.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/blog/blog/post/update.phtml b/src/module/Ui/templates/blog/blog/post/update.phtml index f84f332a..b2dc3676 100644 --- a/src/module/Ui/templates/blog/blog/post/update.phtml +++ b/src/module/Ui/templates/blog/blog/post/update.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/blog/blog/post/view.phtml b/src/module/Ui/templates/blog/blog/post/view.phtml index f05acf53..aa907fc7 100644 --- a/src/module/Ui/templates/blog/blog/post/view.phtml +++ b/src/module/Ui/templates/blog/blog/post/view.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/blog/blog/view-all.twig b/src/module/Ui/templates/blog/blog/view-all.twig index 0635aab4..b3f4165a 100644 --- a/src/module/Ui/templates/blog/blog/view-all.twig +++ b/src/module/Ui/templates/blog/blog/view-all.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/blog/blog/view-partial.twig b/src/module/Ui/templates/blog/blog/view-partial.twig index 4fed0d25..dc85da5a 100644 --- a/src/module/Ui/templates/blog/blog/view-partial.twig +++ b/src/module/Ui/templates/blog/blog/view-partial.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/blog/blog/view.twig b/src/module/Ui/templates/blog/blog/view.twig index 22f97501..f50506f5 100644 --- a/src/module/Ui/templates/blog/blog/view.twig +++ b/src/module/Ui/templates/blog/blog/view.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/common/csrfform.twig b/src/module/Ui/templates/common/csrfform.twig index 5bfeaeb3..79f88583 100644 --- a/src/module/Ui/templates/common/csrfform.twig +++ b/src/module/Ui/templates/common/csrfform.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/common/helper/page-header.phtml b/src/module/Ui/templates/common/helper/page-header.phtml index b9643f9f..029df333 100644 --- a/src/module/Ui/templates/common/helper/page-header.phtml +++ b/src/module/Ui/templates/common/helper/page-header.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/common/paginator.phtml b/src/module/Ui/templates/common/paginator.phtml index f1faf50a..aeffe558 100644 --- a/src/module/Ui/templates/common/paginator.phtml +++ b/src/module/Ui/templates/common/paginator.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/common/share.twig b/src/module/Ui/templates/common/share.twig index c0db9d5a..6b5bf561 100644 --- a/src/module/Ui/templates/common/share.twig +++ b/src/module/Ui/templates/common/share.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/contexter/add/form.phtml b/src/module/Ui/templates/contexter/add/form.phtml index ae182bcd..8dfecad4 100644 --- a/src/module/Ui/templates/contexter/add/form.phtml +++ b/src/module/Ui/templates/contexter/add/form.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/contexter/add/url-form.phtml b/src/module/Ui/templates/contexter/add/url-form.phtml index 2f8d33ba..e32e08e0 100644 --- a/src/module/Ui/templates/contexter/add/url-form.phtml +++ b/src/module/Ui/templates/contexter/add/url-form.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/contexter/helper/button.phtml b/src/module/Ui/templates/contexter/helper/button.phtml index 6d2b72dc..9c71e5e4 100644 --- a/src/module/Ui/templates/contexter/helper/button.phtml +++ b/src/module/Ui/templates/contexter/helper/button.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/contexter/helper/default.phtml b/src/module/Ui/templates/contexter/helper/default.phtml index 46e43b59..3f4b0b64 100644 --- a/src/module/Ui/templates/contexter/helper/default.phtml +++ b/src/module/Ui/templates/contexter/helper/default.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/contexter/manage.phtml b/src/module/Ui/templates/contexter/manage.phtml index 128e0598..6060c809 100644 --- a/src/module/Ui/templates/contexter/manage.phtml +++ b/src/module/Ui/templates/contexter/manage.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/discussion/discussion/comment.twig b/src/module/Ui/templates/discussion/discussion/comment.twig index 212eadee..3bda07d8 100644 --- a/src/module/Ui/templates/discussion/discussion/comment.twig +++ b/src/module/Ui/templates/discussion/discussion/comment.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/discussion/index.twig b/src/module/Ui/templates/discussion/discussion/index.twig index 6c9b9485..52ea9b0a 100644 --- a/src/module/Ui/templates/discussion/discussion/index.twig +++ b/src/module/Ui/templates/discussion/discussion/index.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/discussion/select/forum.twig b/src/module/Ui/templates/discussion/discussion/select/forum.twig index 12235b27..03007aed 100644 --- a/src/module/Ui/templates/discussion/discussion/select/forum.twig +++ b/src/module/Ui/templates/discussion/discussion/select/forum.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/discussion/show.twig b/src/module/Ui/templates/discussion/discussion/show.twig index dc1dc78f..56168ed8 100644 --- a/src/module/Ui/templates/discussion/discussion/show.twig +++ b/src/module/Ui/templates/discussion/discussion/show.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/discussion/start.twig b/src/module/Ui/templates/discussion/discussion/start.twig index eb762d35..a28d6ba9 100644 --- a/src/module/Ui/templates/discussion/discussion/start.twig +++ b/src/module/Ui/templates/discussion/discussion/start.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/discussions.twig b/src/module/Ui/templates/discussion/discussions.twig index d600c78f..5817d04e 100644 --- a/src/module/Ui/templates/discussion/discussions.twig +++ b/src/module/Ui/templates/discussion/discussions.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/discussions/discussions.twig b/src/module/Ui/templates/discussion/discussions/discussions.twig index 665b41c5..a91482a2 100644 --- a/src/module/Ui/templates/discussion/discussions/discussions.twig +++ b/src/module/Ui/templates/discussion/discussions/discussions.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/discussions/index.twig b/src/module/Ui/templates/discussion/discussions/index.twig index 6e006771..215b1b44 100644 --- a/src/module/Ui/templates/discussion/discussions/index.twig +++ b/src/module/Ui/templates/discussion/discussions/index.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/helper/default/comment.twig b/src/module/Ui/templates/discussion/helper/default/comment.twig index ce63fa56..fd6d64e3 100644 --- a/src/module/Ui/templates/discussion/helper/default/comment.twig +++ b/src/module/Ui/templates/discussion/helper/default/comment.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/helper/default/default.twig b/src/module/Ui/templates/discussion/helper/default/default.twig index 8089e60a..a34b630c 100644 --- a/src/module/Ui/templates/discussion/helper/default/default.twig +++ b/src/module/Ui/templates/discussion/helper/default/default.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/helper/default/discussion.twig b/src/module/Ui/templates/discussion/helper/default/discussion.twig index 1598f4d6..9512a5cd 100644 --- a/src/module/Ui/templates/discussion/helper/default/discussion.twig +++ b/src/module/Ui/templates/discussion/helper/default/discussion.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/helper/minimalistic/minimalistic.twig b/src/module/Ui/templates/discussion/helper/minimalistic/minimalistic.twig index 864964e1..b35babe7 100644 --- a/src/module/Ui/templates/discussion/helper/minimalistic/minimalistic.twig +++ b/src/module/Ui/templates/discussion/helper/minimalistic/minimalistic.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/partials/discuss-button.twig b/src/module/Ui/templates/discussion/partials/discuss-button.twig index 8afb63a7..507bbaba 100644 --- a/src/module/Ui/templates/discussion/partials/discuss-button.twig +++ b/src/module/Ui/templates/discussion/partials/discuss-button.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/discussion/partials/form-renderer.twig b/src/module/Ui/templates/discussion/partials/form-renderer.twig index f15adebd..502b6ac7 100644 --- a/src/module/Ui/templates/discussion/partials/form-renderer.twig +++ b/src/module/Ui/templates/discussion/partials/form-renderer.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/editor/layout.phtml b/src/module/Ui/templates/editor/layout.phtml index a16e0cb6..72bbc3b1 100644 --- a/src/module/Ui/templates/editor/layout.phtml +++ b/src/module/Ui/templates/editor/layout.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/editor/partials/scripts.phtml b/src/module/Ui/templates/editor/partials/scripts.phtml index 53201a4f..fbd7572f 100644 --- a/src/module/Ui/templates/editor/partials/scripts.phtml +++ b/src/module/Ui/templates/editor/partials/scripts.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/editor/partials/video-modal.twig b/src/module/Ui/templates/editor/partials/video-modal.twig index a0a74987..d72c0b42 100644 --- a/src/module/Ui/templates/editor/partials/video-modal.twig +++ b/src/module/Ui/templates/editor/partials/video-modal.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/license/update.phtml b/src/module/Ui/templates/entity/license/update.phtml index 76356a58..a8c1ad6e 100644 --- a/src/module/Ui/templates/entity/license/update.phtml +++ b/src/module/Ui/templates/entity/license/update.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/entity/link/move.phtml b/src/module/Ui/templates/entity/link/move.phtml index 517c70ed..852967a8 100644 --- a/src/module/Ui/templates/entity/link/move.phtml +++ b/src/module/Ui/templates/entity/link/move.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/entity/link/order.twig b/src/module/Ui/templates/entity/link/order.twig index 90e154b0..35d7a43c 100644 --- a/src/module/Ui/templates/entity/link/order.twig +++ b/src/module/Ui/templates/entity/link/order.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/aggregate/taxonomy.twig b/src/module/Ui/templates/entity/page/aggregate/taxonomy.twig index 49710c87..9ffff84c 100644 --- a/src/module/Ui/templates/entity/page/aggregate/taxonomy.twig +++ b/src/module/Ui/templates/entity/page/aggregate/taxonomy.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/applet.twig b/src/module/Ui/templates/entity/page/applet.twig index 4c7b8900..de7b55fe 100644 --- a/src/module/Ui/templates/entity/page/applet.twig +++ b/src/module/Ui/templates/entity/page/applet.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/article.twig b/src/module/Ui/templates/entity/page/article.twig index 97c54a21..13e72bfd 100644 --- a/src/module/Ui/templates/entity/page/article.twig +++ b/src/module/Ui/templates/entity/page/article.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/course-navigation.twig b/src/module/Ui/templates/entity/page/course-navigation.twig index acc640c1..6f1f7f8b 100644 --- a/src/module/Ui/templates/entity/page/course-navigation.twig +++ b/src/module/Ui/templates/entity/page/course-navigation.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/course-page.twig b/src/module/Ui/templates/entity/page/course-page.twig index 05dbe6ae..5e153453 100644 --- a/src/module/Ui/templates/entity/page/course-page.twig +++ b/src/module/Ui/templates/entity/page/course-page.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/course.twig b/src/module/Ui/templates/entity/page/course.twig index ac383770..08901089 100644 --- a/src/module/Ui/templates/entity/page/course.twig +++ b/src/module/Ui/templates/entity/page/course.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/default.twig b/src/module/Ui/templates/entity/page/default.twig index 02c021d8..1d12dbff 100644 --- a/src/module/Ui/templates/entity/page/default.twig +++ b/src/module/Ui/templates/entity/page/default.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/grouped-text-exercise.twig b/src/module/Ui/templates/entity/page/grouped-text-exercise.twig index d384f63a..a85abc1f 100644 --- a/src/module/Ui/templates/entity/page/grouped-text-exercise.twig +++ b/src/module/Ui/templates/entity/page/grouped-text-exercise.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/input-expression-equal-match-challenge.twig b/src/module/Ui/templates/entity/page/input-expression-equal-match-challenge.twig index 7626dc87..741b8acf 100644 --- a/src/module/Ui/templates/entity/page/input-expression-equal-match-challenge.twig +++ b/src/module/Ui/templates/entity/page/input-expression-equal-match-challenge.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/input-number-exact-match-challenge.twig b/src/module/Ui/templates/entity/page/input-number-exact-match-challenge.twig index 7626dc87..741b8acf 100644 --- a/src/module/Ui/templates/entity/page/input-number-exact-match-challenge.twig +++ b/src/module/Ui/templates/entity/page/input-number-exact-match-challenge.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/input-string-normalized-match-challenge.twig b/src/module/Ui/templates/entity/page/input-string-normalized-match-challenge.twig index 7626dc87..741b8acf 100644 --- a/src/module/Ui/templates/entity/page/input-string-normalized-match-challenge.twig +++ b/src/module/Ui/templates/entity/page/input-string-normalized-match-challenge.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/math-puzzle.twig b/src/module/Ui/templates/entity/page/math-puzzle.twig index 0a57baa3..2e75198f 100644 --- a/src/module/Ui/templates/entity/page/math-puzzle.twig +++ b/src/module/Ui/templates/entity/page/math-puzzle.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/multiple-choice-right-answer.twig b/src/module/Ui/templates/entity/page/multiple-choice-right-answer.twig index d1130bcf..a4402223 100644 --- a/src/module/Ui/templates/entity/page/multiple-choice-right-answer.twig +++ b/src/module/Ui/templates/entity/page/multiple-choice-right-answer.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/multiple-choice-wrong-answer.twig b/src/module/Ui/templates/entity/page/multiple-choice-wrong-answer.twig index c1664dda..315a775f 100644 --- a/src/module/Ui/templates/entity/page/multiple-choice-wrong-answer.twig +++ b/src/module/Ui/templates/entity/page/multiple-choice-wrong-answer.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/partials/alerts.twig b/src/module/Ui/templates/entity/page/partials/alerts.twig index 5765ca05..1d1fa9f2 100644 --- a/src/module/Ui/templates/entity/page/partials/alerts.twig +++ b/src/module/Ui/templates/entity/page/partials/alerts.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/partials/placeholders.twig b/src/module/Ui/templates/entity/page/partials/placeholders.twig index 8f7cb87b..c41e755a 100644 --- a/src/module/Ui/templates/entity/page/partials/placeholders.twig +++ b/src/module/Ui/templates/entity/page/partials/placeholders.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/pending.twig b/src/module/Ui/templates/entity/page/pending.twig index 349c1fe3..d9f12cb4 100644 --- a/src/module/Ui/templates/entity/page/pending.twig +++ b/src/module/Ui/templates/entity/page/pending.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/single-choice-right-answer.twig b/src/module/Ui/templates/entity/page/single-choice-right-answer.twig index d1130bcf..a4402223 100644 --- a/src/module/Ui/templates/entity/page/single-choice-right-answer.twig +++ b/src/module/Ui/templates/entity/page/single-choice-right-answer.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/single-choice-wrong-answer.twig b/src/module/Ui/templates/entity/page/single-choice-wrong-answer.twig index c1664dda..315a775f 100644 --- a/src/module/Ui/templates/entity/page/single-choice-wrong-answer.twig +++ b/src/module/Ui/templates/entity/page/single-choice-wrong-answer.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/text-exercise-group.twig b/src/module/Ui/templates/entity/page/text-exercise-group.twig index bed9ee1e..a0629304 100644 --- a/src/module/Ui/templates/entity/page/text-exercise-group.twig +++ b/src/module/Ui/templates/entity/page/text-exercise-group.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/text-exercise.twig b/src/module/Ui/templates/entity/page/text-exercise.twig index 3c7d7d89..213a1a2b 100644 --- a/src/module/Ui/templates/entity/page/text-exercise.twig +++ b/src/module/Ui/templates/entity/page/text-exercise.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/text-hint.twig b/src/module/Ui/templates/entity/page/text-hint.twig index f604f054..4c7af10b 100644 --- a/src/module/Ui/templates/entity/page/text-hint.twig +++ b/src/module/Ui/templates/entity/page/text-hint.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/text-solution.twig b/src/module/Ui/templates/entity/page/text-solution.twig index a3cb47b1..d42e5688 100644 --- a/src/module/Ui/templates/entity/page/text-solution.twig +++ b/src/module/Ui/templates/entity/page/text-solution.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/page/video.twig b/src/module/Ui/templates/entity/page/video.twig index a9611d1d..86cbb396 100644 --- a/src/module/Ui/templates/entity/page/video.twig +++ b/src/module/Ui/templates/entity/page/video.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/repository/compare-revision.twig b/src/module/Ui/templates/entity/repository/compare-revision.twig index 1643251f..73d34dd9 100644 --- a/src/module/Ui/templates/entity/repository/compare-revision.twig +++ b/src/module/Ui/templates/entity/repository/compare-revision.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/repository/history.twig b/src/module/Ui/templates/entity/repository/history.twig index b1e03f7a..ecf06342 100644 --- a/src/module/Ui/templates/entity/repository/history.twig +++ b/src/module/Ui/templates/entity/repository/history.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/repository/modal-accept.twig b/src/module/Ui/templates/entity/repository/modal-accept.twig index e1a04258..774a87b4 100644 --- a/src/module/Ui/templates/entity/repository/modal-accept.twig +++ b/src/module/Ui/templates/entity/repository/modal-accept.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/repository/modal-reject.twig b/src/module/Ui/templates/entity/repository/modal-reject.twig index 3fd0cd5c..a4d9041f 100644 --- a/src/module/Ui/templates/entity/repository/modal-reject.twig +++ b/src/module/Ui/templates/entity/repository/modal-reject.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/repository/partials/alerts.twig b/src/module/Ui/templates/entity/repository/partials/alerts.twig index 66be6f60..616d449a 100644 --- a/src/module/Ui/templates/entity/repository/partials/alerts.twig +++ b/src/module/Ui/templates/entity/repository/partials/alerts.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/repository/revision.twig b/src/module/Ui/templates/entity/repository/revision.twig index 0aafc58e..716f5225 100644 --- a/src/module/Ui/templates/entity/repository/revision.twig +++ b/src/module/Ui/templates/entity/repository/revision.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/repository/update-revision-ory.twig b/src/module/Ui/templates/entity/repository/update-revision-ory.twig index ee55d18c..81e57f00 100644 --- a/src/module/Ui/templates/entity/repository/update-revision-ory.twig +++ b/src/module/Ui/templates/entity/repository/update-revision-ory.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/repository/update-revision.phtml b/src/module/Ui/templates/entity/repository/update-revision.phtml index 84cbefe0..c1725cbb 100644 --- a/src/module/Ui/templates/entity/repository/update-revision.phtml +++ b/src/module/Ui/templates/entity/repository/update-revision.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/entity/taxonomy/update.twig b/src/module/Ui/templates/entity/taxonomy/update.twig index 9dc2f258..15cac329 100644 --- a/src/module/Ui/templates/entity/taxonomy/update.twig +++ b/src/module/Ui/templates/entity/taxonomy/update.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/applet.twig b/src/module/Ui/templates/entity/view/applet.twig index 182457f0..bd62dd2a 100644 --- a/src/module/Ui/templates/entity/view/applet.twig +++ b/src/module/Ui/templates/entity/view/applet.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/article.twig b/src/module/Ui/templates/entity/view/article.twig index 241d7f91..6c1ad47b 100644 --- a/src/module/Ui/templates/entity/view/article.twig +++ b/src/module/Ui/templates/entity/view/article.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/course-page.twig b/src/module/Ui/templates/entity/view/course-page.twig index 2fd571b6..6e9847b2 100644 --- a/src/module/Ui/templates/entity/view/course-page.twig +++ b/src/module/Ui/templates/entity/view/course-page.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/default.twig b/src/module/Ui/templates/entity/view/default.twig index 78c70a90..1f0768dc 100644 --- a/src/module/Ui/templates/entity/view/default.twig +++ b/src/module/Ui/templates/entity/view/default.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/grouped-text-exercise.twig b/src/module/Ui/templates/entity/view/grouped-text-exercise.twig index f23029c3..7370dbed 100644 --- a/src/module/Ui/templates/entity/view/grouped-text-exercise.twig +++ b/src/module/Ui/templates/entity/view/grouped-text-exercise.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/input-expression-equal-match-challenge.twig b/src/module/Ui/templates/entity/view/input-expression-equal-match-challenge.twig index 59aef0ae..ea7c9150 100644 --- a/src/module/Ui/templates/entity/view/input-expression-equal-match-challenge.twig +++ b/src/module/Ui/templates/entity/view/input-expression-equal-match-challenge.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/input-number-exact-match-challenge.twig b/src/module/Ui/templates/entity/view/input-number-exact-match-challenge.twig index 9e605fb1..db9189fa 100644 --- a/src/module/Ui/templates/entity/view/input-number-exact-match-challenge.twig +++ b/src/module/Ui/templates/entity/view/input-number-exact-match-challenge.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/input-string-normalized-match-challenge.twig b/src/module/Ui/templates/entity/view/input-string-normalized-match-challenge.twig index 41222f91..47ca3fb9 100644 --- a/src/module/Ui/templates/entity/view/input-string-normalized-match-challenge.twig +++ b/src/module/Ui/templates/entity/view/input-string-normalized-match-challenge.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/math-puzzle.twig b/src/module/Ui/templates/entity/view/math-puzzle.twig index 897162b3..59147461 100644 --- a/src/module/Ui/templates/entity/view/math-puzzle.twig +++ b/src/module/Ui/templates/entity/view/math-puzzle.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/multiple-choice-right-answer.twig b/src/module/Ui/templates/entity/view/multiple-choice-right-answer.twig index 59db963f..babf8dd8 100644 --- a/src/module/Ui/templates/entity/view/multiple-choice-right-answer.twig +++ b/src/module/Ui/templates/entity/view/multiple-choice-right-answer.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/multiple-choice-wrong-answer.twig b/src/module/Ui/templates/entity/view/multiple-choice-wrong-answer.twig index 0d13f781..d3093c31 100644 --- a/src/module/Ui/templates/entity/view/multiple-choice-wrong-answer.twig +++ b/src/module/Ui/templates/entity/view/multiple-choice-wrong-answer.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/big.twig b/src/module/Ui/templates/entity/view/partials/actions/big.twig index 215ae99a..62d4a7f2 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/big.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/big.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/controls.twig b/src/module/Ui/templates/entity/view/partials/actions/controls.twig index 2ed87abb..8117b640 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/controls.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/controls.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/course/course-controls-wrapper.twig b/src/module/Ui/templates/entity/view/partials/actions/course/course-controls-wrapper.twig index 57671047..e106d9a4 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/course/course-controls-wrapper.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/course/course-controls-wrapper.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/course/course-controls.twig b/src/module/Ui/templates/entity/view/partials/actions/course/course-controls.twig index ceca6607..2f5eede6 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/course/course-controls.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/course/course-controls.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/essentials.twig b/src/module/Ui/templates/entity/view/partials/actions/essentials.twig index 623975b8..fa7495e2 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/essentials.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/essentials.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/event/history.twig b/src/module/Ui/templates/entity/view/partials/actions/event/history.twig index f8890414..ddaec23d 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/event/history.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/event/history.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/flag/create.twig b/src/module/Ui/templates/entity/view/partials/actions/flag/create.twig index b8db49a3..f2ff5aa2 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/flag/create.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/flag/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/license/show.twig b/src/module/Ui/templates/entity/view/partials/actions/license/show.twig index e8429380..de76ebb6 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/license/show.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/license/show.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/license/update.twig b/src/module/Ui/templates/entity/view/partials/actions/license/update.twig index d0b7e5ed..dc78c158 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/license/update.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/license/update.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/link/add.twig b/src/module/Ui/templates/entity/view/partials/actions/link/add.twig index 6893bd44..7b5c8d08 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/link/add.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/link/add.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/link/sort.twig b/src/module/Ui/templates/entity/view/partials/actions/link/sort.twig index f97e9e02..156eb815 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/link/sort.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/link/sort.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/link/update.twig b/src/module/Ui/templates/entity/view/partials/actions/link/update.twig index e15bca7f..27229c40 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/link/update.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/link/update.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/related-content/manage.twig b/src/module/Ui/templates/entity/view/partials/actions/related-content/manage.twig index 8943c409..22e9a1d4 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/related-content/manage.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/related-content/manage.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/small-essential.twig b/src/module/Ui/templates/entity/view/partials/actions/small-essential.twig index 10820bc6..0d490430 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/small-essential.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/small-essential.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/small.twig b/src/module/Ui/templates/entity/view/partials/actions/small.twig index 9e92d0f2..88e384f6 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/small.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/small.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/taxonomy/update.twig b/src/module/Ui/templates/entity/view/partials/actions/taxonomy/update.twig index 32b50043..98fb95a8 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/taxonomy/update.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/taxonomy/update.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/trash.twig b/src/module/Ui/templates/entity/view/partials/actions/trash.twig index f65311ad..e16d6b7c 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/trash.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/trash.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/versioning/convert.twig b/src/module/Ui/templates/entity/view/partials/actions/versioning/convert.twig index 2ad86f26..46a78517 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/versioning/convert.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/versioning/convert.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/versioning/edit-essential.twig b/src/module/Ui/templates/entity/view/partials/actions/versioning/edit-essential.twig index a83f7ad4..be463de3 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/versioning/edit-essential.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/versioning/edit-essential.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/versioning/edit.twig b/src/module/Ui/templates/entity/view/partials/actions/versioning/edit.twig index ba6d4235..b390b490 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/versioning/edit.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/versioning/edit.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/actions/versioning/history.twig b/src/module/Ui/templates/entity/view/partials/actions/versioning/history.twig index a364dd81..0ebb8cc7 100644 --- a/src/module/Ui/templates/entity/view/partials/actions/versioning/history.twig +++ b/src/module/Ui/templates/entity/view/partials/actions/versioning/history.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/input-challenge.twig b/src/module/Ui/templates/entity/view/partials/input-challenge.twig index f40d1865..f874373c 100644 --- a/src/module/Ui/templates/entity/view/partials/input-challenge.twig +++ b/src/module/Ui/templates/entity/view/partials/input-challenge.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/license.twig b/src/module/Ui/templates/entity/view/partials/license.twig index d3962972..58965bd0 100644 --- a/src/module/Ui/templates/entity/view/partials/license.twig +++ b/src/module/Ui/templates/entity/view/partials/license.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/license/minimalistic.twig b/src/module/Ui/templates/entity/view/partials/license/minimalistic.twig index 2445b168..b580175e 100644 --- a/src/module/Ui/templates/entity/view/partials/license/minimalistic.twig +++ b/src/module/Ui/templates/entity/view/partials/license/minimalistic.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/math-puzzle.twig b/src/module/Ui/templates/entity/view/partials/math-puzzle.twig index 5d5471f3..b118bdcb 100644 --- a/src/module/Ui/templates/entity/view/partials/math-puzzle.twig +++ b/src/module/Ui/templates/entity/view/partials/math-puzzle.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/multiple-choice-answer.twig b/src/module/Ui/templates/entity/view/partials/multiple-choice-answer.twig index 779777ab..894db0b4 100644 --- a/src/module/Ui/templates/entity/view/partials/multiple-choice-answer.twig +++ b/src/module/Ui/templates/entity/view/partials/multiple-choice-answer.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/single-choice-answer.twig b/src/module/Ui/templates/entity/view/partials/single-choice-answer.twig index 1d350b80..f7e414da 100644 --- a/src/module/Ui/templates/entity/view/partials/single-choice-answer.twig +++ b/src/module/Ui/templates/entity/view/partials/single-choice-answer.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/sortable-actions.twig b/src/module/Ui/templates/entity/view/partials/sortable-actions.twig index 71036874..c186641c 100644 --- a/src/module/Ui/templates/entity/view/partials/sortable-actions.twig +++ b/src/module/Ui/templates/entity/view/partials/sortable-actions.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/partials/text-exercise.twig b/src/module/Ui/templates/entity/view/partials/text-exercise.twig index 656bdfcc..0e937ed6 100644 --- a/src/module/Ui/templates/entity/view/partials/text-exercise.twig +++ b/src/module/Ui/templates/entity/view/partials/text-exercise.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/single-choice-right-answer.twig b/src/module/Ui/templates/entity/view/single-choice-right-answer.twig index e8c195f2..a979f07b 100644 --- a/src/module/Ui/templates/entity/view/single-choice-right-answer.twig +++ b/src/module/Ui/templates/entity/view/single-choice-right-answer.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/single-choice-wrong-answer.twig b/src/module/Ui/templates/entity/view/single-choice-wrong-answer.twig index def870e1..d6bf2ec5 100644 --- a/src/module/Ui/templates/entity/view/single-choice-wrong-answer.twig +++ b/src/module/Ui/templates/entity/view/single-choice-wrong-answer.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/text-exercise-group.twig b/src/module/Ui/templates/entity/view/text-exercise-group.twig index 3cd5f673..e1fb7718 100644 --- a/src/module/Ui/templates/entity/view/text-exercise-group.twig +++ b/src/module/Ui/templates/entity/view/text-exercise-group.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/text-exercise.twig b/src/module/Ui/templates/entity/view/text-exercise.twig index 0ea2200d..c8a30d71 100644 --- a/src/module/Ui/templates/entity/view/text-exercise.twig +++ b/src/module/Ui/templates/entity/view/text-exercise.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/text-hint.twig b/src/module/Ui/templates/entity/view/text-hint.twig index df6e1a9b..23641565 100644 --- a/src/module/Ui/templates/entity/view/text-hint.twig +++ b/src/module/Ui/templates/entity/view/text-hint.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/text-solution.twig b/src/module/Ui/templates/entity/view/text-solution.twig index bb377387..94784342 100644 --- a/src/module/Ui/templates/entity/view/text-solution.twig +++ b/src/module/Ui/templates/entity/view/text-solution.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/toc/course.twig b/src/module/Ui/templates/entity/view/toc/course.twig index 7a12bb66..24d6cdb2 100644 --- a/src/module/Ui/templates/entity/view/toc/course.twig +++ b/src/module/Ui/templates/entity/view/toc/course.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/toc/default.twig b/src/module/Ui/templates/entity/view/toc/default.twig index b695efa8..f81b10a3 100644 --- a/src/module/Ui/templates/entity/view/toc/default.twig +++ b/src/module/Ui/templates/entity/view/toc/default.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/entity/view/video.twig b/src/module/Ui/templates/entity/view/video.twig index a93a1bc2..3edb440f 100644 --- a/src/module/Ui/templates/entity/view/video.twig +++ b/src/module/Ui/templates/entity/view/video.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/error/403.phtml b/src/module/Ui/templates/error/403.phtml index 47e60649..e765de37 100644 --- a/src/module/Ui/templates/error/403.phtml +++ b/src/module/Ui/templates/error/403.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/error/404.phtml b/src/module/Ui/templates/error/404.phtml index 32a652b0..d976e205 100644 --- a/src/module/Ui/templates/error/404.phtml +++ b/src/module/Ui/templates/error/404.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/error/index.phtml b/src/module/Ui/templates/error/index.phtml index c7f2dae8..b7944fe5 100644 --- a/src/module/Ui/templates/error/index.phtml +++ b/src/module/Ui/templates/error/index.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/event/helper/event/default.twig b/src/module/Ui/templates/event/helper/event/default.twig index 40fc78e2..1ccbed01 100644 --- a/src/module/Ui/templates/event/helper/event/default.twig +++ b/src/module/Ui/templates/event/helper/event/default.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/discussion/comment/archive.twig b/src/module/Ui/templates/event/helper/event/discussion/comment/archive.twig index 8eb13854..c6c10cf7 100644 --- a/src/module/Ui/templates/event/helper/event/discussion/comment/archive.twig +++ b/src/module/Ui/templates/event/helper/event/discussion/comment/archive.twig @@ -2,7 +2,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/discussion/comment/create.twig b/src/module/Ui/templates/event/helper/event/discussion/comment/create.twig index 7ddedc90..e990b2fb 100644 --- a/src/module/Ui/templates/event/helper/event/discussion/comment/create.twig +++ b/src/module/Ui/templates/event/helper/event/discussion/comment/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/discussion/create.twig b/src/module/Ui/templates/event/helper/event/discussion/create.twig index f976f065..47b24716 100644 --- a/src/module/Ui/templates/event/helper/event/discussion/create.twig +++ b/src/module/Ui/templates/event/helper/event/discussion/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/entity/create.twig b/src/module/Ui/templates/event/helper/event/entity/create.twig index bd3ac1c4..6708aa8d 100644 --- a/src/module/Ui/templates/event/helper/event/entity/create.twig +++ b/src/module/Ui/templates/event/helper/event/entity/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/entity/link/create.twig b/src/module/Ui/templates/event/helper/event/entity/link/create.twig index fe093dcf..5f1b9da8 100644 --- a/src/module/Ui/templates/event/helper/event/entity/link/create.twig +++ b/src/module/Ui/templates/event/helper/event/entity/link/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/entity/revision/add.twig b/src/module/Ui/templates/event/helper/event/entity/revision/add.twig index 8133a686..d0819186 100644 --- a/src/module/Ui/templates/event/helper/event/entity/revision/add.twig +++ b/src/module/Ui/templates/event/helper/event/entity/revision/add.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/entity/revision/checkout.twig b/src/module/Ui/templates/event/helper/event/entity/revision/checkout.twig index 852ccee9..d0300be1 100644 --- a/src/module/Ui/templates/event/helper/event/entity/revision/checkout.twig +++ b/src/module/Ui/templates/event/helper/event/entity/revision/checkout.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/entity/revision/reject.twig b/src/module/Ui/templates/event/helper/event/entity/revision/reject.twig index df0f7cb3..e5b7104c 100644 --- a/src/module/Ui/templates/event/helper/event/entity/revision/reject.twig +++ b/src/module/Ui/templates/event/helper/event/entity/revision/reject.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/license/object/set.twig b/src/module/Ui/templates/event/helper/event/license/object/set.twig index f3ede6cb..1beead3a 100644 --- a/src/module/Ui/templates/event/helper/event/license/object/set.twig +++ b/src/module/Ui/templates/event/helper/event/license/object/set.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/taxonomy/term/associate.twig b/src/module/Ui/templates/event/helper/event/taxonomy/term/associate.twig index ddc963eb..def4e4b3 100644 --- a/src/module/Ui/templates/event/helper/event/taxonomy/term/associate.twig +++ b/src/module/Ui/templates/event/helper/event/taxonomy/term/associate.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/taxonomy/term/create.twig b/src/module/Ui/templates/event/helper/event/taxonomy/term/create.twig index 1154157c..14fa4894 100644 --- a/src/module/Ui/templates/event/helper/event/taxonomy/term/create.twig +++ b/src/module/Ui/templates/event/helper/event/taxonomy/term/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/taxonomy/term/dissociate.twig b/src/module/Ui/templates/event/helper/event/taxonomy/term/dissociate.twig index 6c1ef6c9..32dab8ab 100644 --- a/src/module/Ui/templates/event/helper/event/taxonomy/term/dissociate.twig +++ b/src/module/Ui/templates/event/helper/event/taxonomy/term/dissociate.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/taxonomy/term/parent/change.twig b/src/module/Ui/templates/event/helper/event/taxonomy/term/parent/change.twig index 90e6b75a..f9abb08a 100644 --- a/src/module/Ui/templates/event/helper/event/taxonomy/term/parent/change.twig +++ b/src/module/Ui/templates/event/helper/event/taxonomy/term/parent/change.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/taxonomy/term/update.twig b/src/module/Ui/templates/event/helper/event/taxonomy/term/update.twig index 77d528f0..455d29c2 100644 --- a/src/module/Ui/templates/event/helper/event/taxonomy/term/update.twig +++ b/src/module/Ui/templates/event/helper/event/taxonomy/term/update.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/uuid/restore.twig b/src/module/Ui/templates/event/helper/event/uuid/restore.twig index b20bf0dd..948d7aa6 100644 --- a/src/module/Ui/templates/event/helper/event/uuid/restore.twig +++ b/src/module/Ui/templates/event/helper/event/uuid/restore.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/event/uuid/trash.twig b/src/module/Ui/templates/event/helper/event/uuid/trash.twig index 4706018a..3e24ff5d 100644 --- a/src/module/Ui/templates/event/helper/event/uuid/trash.twig +++ b/src/module/Ui/templates/event/helper/event/uuid/trash.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/helper/events.twig b/src/module/Ui/templates/event/helper/events.twig index f538d0bb..543429ef 100644 --- a/src/module/Ui/templates/event/helper/events.twig +++ b/src/module/Ui/templates/event/helper/events.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/history/all.twig b/src/module/Ui/templates/event/history/all.twig index 7f2efaff..0783ad46 100644 --- a/src/module/Ui/templates/event/history/all.twig +++ b/src/module/Ui/templates/event/history/all.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/history/object.twig b/src/module/Ui/templates/event/history/object.twig index 26de34c4..5b273e5e 100644 --- a/src/module/Ui/templates/event/history/object.twig +++ b/src/module/Ui/templates/event/history/object.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/event/history/user.twig b/src/module/Ui/templates/event/history/user.twig index 8394b56f..f2b1b102 100644 --- a/src/module/Ui/templates/event/history/user.twig +++ b/src/module/Ui/templates/event/history/user.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/flag/add.phtml b/src/module/Ui/templates/flag/add.phtml index 98d3c6d9..e62cf00c 100644 --- a/src/module/Ui/templates/flag/add.phtml +++ b/src/module/Ui/templates/flag/add.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/flag/detail.phtml b/src/module/Ui/templates/flag/detail.phtml index b1946b30..fb78f84b 100644 --- a/src/module/Ui/templates/flag/detail.phtml +++ b/src/module/Ui/templates/flag/detail.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/flag/manage.phtml b/src/module/Ui/templates/flag/manage.phtml index faab9b95..b5d4755b 100644 --- a/src/module/Ui/templates/flag/manage.phtml +++ b/src/module/Ui/templates/flag/manage.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/instance/helper/select.phtml b/src/module/Ui/templates/instance/helper/select.phtml index 4cb62dab..2a3ffbe1 100644 --- a/src/module/Ui/templates/instance/helper/select.phtml +++ b/src/module/Ui/templates/instance/helper/select.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/1-col.phtml b/src/module/Ui/templates/layout/1-col.phtml index bb0ecaee..b8c5dfa3 100644 --- a/src/module/Ui/templates/layout/1-col.phtml +++ b/src/module/Ui/templates/layout/1-col.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/2-col.phtml b/src/module/Ui/templates/layout/2-col.phtml index 7d0d20d4..377a86d8 100644 --- a/src/module/Ui/templates/layout/2-col.phtml +++ b/src/module/Ui/templates/layout/2-col.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/3-col.phtml b/src/module/Ui/templates/layout/3-col.phtml index d487cd20..1ed6354b 100644 --- a/src/module/Ui/templates/layout/3-col.phtml +++ b/src/module/Ui/templates/layout/3-col.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/de/home-abc-symbol.phtml b/src/module/Ui/templates/layout/de/home-abc-symbol.phtml index 0c4d044d..8c494f39 100644 --- a/src/module/Ui/templates/layout/de/home-abc-symbol.phtml +++ b/src/module/Ui/templates/layout/de/home-abc-symbol.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/de/home-bio-symbol.phtml b/src/module/Ui/templates/layout/de/home-bio-symbol.phtml index 295aa436..59cb61d2 100644 --- a/src/module/Ui/templates/layout/de/home-bio-symbol.phtml +++ b/src/module/Ui/templates/layout/de/home-bio-symbol.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/de/home-math-symbol.phtml b/src/module/Ui/templates/layout/de/home-math-symbol.phtml index 97f3b733..11d16c63 100644 --- a/src/module/Ui/templates/layout/de/home-math-symbol.phtml +++ b/src/module/Ui/templates/layout/de/home-math-symbol.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/de/home-sustain-symbol.phtml b/src/module/Ui/templates/layout/de/home-sustain-symbol.phtml index 19500cb5..7a2f4182 100644 --- a/src/module/Ui/templates/layout/de/home-sustain-symbol.phtml +++ b/src/module/Ui/templates/layout/de/home-sustain-symbol.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/de/home_donate.phtml b/src/module/Ui/templates/layout/de/home_donate.phtml index 6e154285..b3a2e0f3 100644 --- a/src/module/Ui/templates/layout/de/home_donate.phtml +++ b/src/module/Ui/templates/layout/de/home_donate.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/de/serlo-home.phtml b/src/module/Ui/templates/layout/de/serlo-home.phtml index da1c8318..ac6f64ea 100644 --- a/src/module/Ui/templates/layout/de/serlo-home.phtml +++ b/src/module/Ui/templates/layout/de/serlo-home.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/en/serlo-home.phtml b/src/module/Ui/templates/layout/en/serlo-home.phtml index e749df1f..29f95a6e 100644 --- a/src/module/Ui/templates/layout/en/serlo-home.phtml +++ b/src/module/Ui/templates/layout/en/serlo-home.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/html.phtml b/src/module/Ui/templates/layout/html.phtml index 58a16333..93cf357f 100644 --- a/src/module/Ui/templates/layout/html.phtml +++ b/src/module/Ui/templates/layout/html.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/footer.phtml b/src/module/Ui/templates/layout/navigation/footer.phtml index 28d7ebf3..188bef79 100644 --- a/src/module/Ui/templates/layout/navigation/footer.phtml +++ b/src/module/Ui/templates/layout/navigation/footer.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/front-page.phtml b/src/module/Ui/templates/layout/navigation/front-page.phtml index ceed9a43..9be1ea60 100644 --- a/src/module/Ui/templates/layout/navigation/front-page.phtml +++ b/src/module/Ui/templates/layout/navigation/front-page.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/horizontal.phtml b/src/module/Ui/templates/layout/navigation/horizontal.phtml index 738bf7f0..638c68ba 100644 --- a/src/module/Ui/templates/layout/navigation/horizontal.phtml +++ b/src/module/Ui/templates/layout/navigation/horizontal.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/partial/active-subject.phtml b/src/module/Ui/templates/layout/navigation/partial/active-subject.phtml index f76d6d3b..3f3464e6 100644 --- a/src/module/Ui/templates/layout/navigation/partial/active-subject.phtml +++ b/src/module/Ui/templates/layout/navigation/partial/active-subject.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/partial/breadcrumbs.phtml b/src/module/Ui/templates/layout/navigation/partial/breadcrumbs.phtml index c62fcb15..45f8cbad 100644 --- a/src/module/Ui/templates/layout/navigation/partial/breadcrumbs.phtml +++ b/src/module/Ui/templates/layout/navigation/partial/breadcrumbs.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/partial/nested-dropdown-navigation-list.phtml b/src/module/Ui/templates/layout/navigation/partial/nested-dropdown-navigation-list.phtml index 798a5506..43a77a18 100644 --- a/src/module/Ui/templates/layout/navigation/partial/nested-dropdown-navigation-list.phtml +++ b/src/module/Ui/templates/layout/navigation/partial/nested-dropdown-navigation-list.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/partial/nested-navigation-list-asynchable.phtml b/src/module/Ui/templates/layout/navigation/partial/nested-navigation-list-asynchable.phtml index c2a8bac6..5b852205 100644 --- a/src/module/Ui/templates/layout/navigation/partial/nested-navigation-list-asynchable.phtml +++ b/src/module/Ui/templates/layout/navigation/partial/nested-navigation-list-asynchable.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/partial/nested-navigation-list.phtml b/src/module/Ui/templates/layout/navigation/partial/nested-navigation-list.phtml index 121b7ddc..47ab8fb0 100644 --- a/src/module/Ui/templates/layout/navigation/partial/nested-navigation-list.phtml +++ b/src/module/Ui/templates/layout/navigation/partial/nested-navigation-list.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/side-navigation.phtml b/src/module/Ui/templates/layout/navigation/side-navigation.phtml index dbda727f..6966fa98 100644 --- a/src/module/Ui/templates/layout/navigation/side-navigation.phtml +++ b/src/module/Ui/templates/layout/navigation/side-navigation.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/social.phtml b/src/module/Ui/templates/layout/navigation/social.phtml index 03ccbfe7..cb58c2d0 100644 --- a/src/module/Ui/templates/layout/navigation/social.phtml +++ b/src/module/Ui/templates/layout/navigation/social.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/subject-navigation.phtml b/src/module/Ui/templates/layout/navigation/subject-navigation.phtml index 6ca921ac..5994a322 100644 --- a/src/module/Ui/templates/layout/navigation/subject-navigation.phtml +++ b/src/module/Ui/templates/layout/navigation/subject-navigation.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/navigation/vertical.phtml b/src/module/Ui/templates/layout/navigation/vertical.phtml index 204491b7..3a0132a7 100644 --- a/src/module/Ui/templates/layout/navigation/vertical.phtml +++ b/src/module/Ui/templates/layout/navigation/vertical.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/banner.phtml b/src/module/Ui/templates/layout/partials/banner.phtml index a1bf1da6..569d1873 100644 --- a/src/module/Ui/templates/layout/partials/banner.phtml +++ b/src/module/Ui/templates/layout/partials/banner.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/contexter.phtml b/src/module/Ui/templates/layout/partials/contexter.phtml index 1373f2d2..e46e91e0 100644 --- a/src/module/Ui/templates/layout/partials/contexter.phtml +++ b/src/module/Ui/templates/layout/partials/contexter.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/default-modal.phtml b/src/module/Ui/templates/layout/partials/default-modal.phtml index a0a68ea6..2db9bb4b 100644 --- a/src/module/Ui/templates/layout/partials/default-modal.phtml +++ b/src/module/Ui/templates/layout/partials/default-modal.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/discussions.phtml b/src/module/Ui/templates/layout/partials/discussions.phtml index 747b80cd..0fa42f1d 100644 --- a/src/module/Ui/templates/layout/partials/discussions.phtml +++ b/src/module/Ui/templates/layout/partials/discussions.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/footer.phtml b/src/module/Ui/templates/layout/partials/footer.phtml index c013c95c..c93ce29e 100644 --- a/src/module/Ui/templates/layout/partials/footer.phtml +++ b/src/module/Ui/templates/layout/partials/footer.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/head.phtml b/src/module/Ui/templates/layout/partials/head.phtml index 5569ab86..c664ed18 100644 --- a/src/module/Ui/templates/layout/partials/head.phtml +++ b/src/module/Ui/templates/layout/partials/head.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -27,3 +27,6 @@ headTitle()->setSeparator(' – '); ?> headMeta(); ?> headLink(['rel' => 'icon', 'href' => '/favicon.ico', 'type' => 'image/x-icon']); ?> + diff --git a/src/module/Ui/templates/layout/partials/header.phtml b/src/module/Ui/templates/layout/partials/header.phtml index 8e4fba04..82eabc6b 100644 --- a/src/module/Ui/templates/layout/partials/header.phtml +++ b/src/module/Ui/templates/layout/partials/header.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/horizon.phtml b/src/module/Ui/templates/layout/partials/horizon.phtml index 23d79c3a..ff8db571 100644 --- a/src/module/Ui/templates/layout/partials/horizon.phtml +++ b/src/module/Ui/templates/layout/partials/horizon.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/left-sidebar.phtml b/src/module/Ui/templates/layout/partials/left-sidebar.phtml index 0219edc9..9579f0fd 100644 --- a/src/module/Ui/templates/layout/partials/left-sidebar.phtml +++ b/src/module/Ui/templates/layout/partials/left-sidebar.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/main.phtml b/src/module/Ui/templates/layout/partials/main.phtml index 15c1a7eb..88858144 100644 --- a/src/module/Ui/templates/layout/partials/main.phtml +++ b/src/module/Ui/templates/layout/partials/main.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/mathjax.phtml b/src/module/Ui/templates/layout/partials/mathjax.phtml index c323b168..a840b624 100644 --- a/src/module/Ui/templates/layout/partials/mathjax.phtml +++ b/src/module/Ui/templates/layout/partials/mathjax.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/noscript.phtml b/src/module/Ui/templates/layout/partials/noscript.phtml index c36d9137..e6d9d15d 100644 --- a/src/module/Ui/templates/layout/partials/noscript.phtml +++ b/src/module/Ui/templates/layout/partials/noscript.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/notifications.phtml b/src/module/Ui/templates/layout/partials/notifications.phtml index 33dd40c6..66a00a4c 100644 --- a/src/module/Ui/templates/layout/partials/notifications.phtml +++ b/src/module/Ui/templates/layout/partials/notifications.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/popup.phtml b/src/module/Ui/templates/layout/partials/popup.phtml index 7c2c8f58..9cdae745 100644 --- a/src/module/Ui/templates/layout/partials/popup.phtml +++ b/src/module/Ui/templates/layout/partials/popup.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/right-sidebar.phtml b/src/module/Ui/templates/layout/partials/right-sidebar.phtml index 8913d4b9..cf4a4b58 100644 --- a/src/module/Ui/templates/layout/partials/right-sidebar.phtml +++ b/src/module/Ui/templates/layout/partials/right-sidebar.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/scripts.phtml b/src/module/Ui/templates/layout/partials/scripts.phtml index 3d4c0e3b..82b87c1d 100644 --- a/src/module/Ui/templates/layout/partials/scripts.phtml +++ b/src/module/Ui/templates/layout/partials/scripts.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/search.phtml b/src/module/Ui/templates/layout/partials/search.phtml index 4b4343ed..85c5b1b8 100644 --- a/src/module/Ui/templates/layout/partials/search.phtml +++ b/src/module/Ui/templates/layout/partials/search.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/styles.phtml b/src/module/Ui/templates/layout/partials/styles.phtml index b7ccf6c1..bf97589f 100644 --- a/src/module/Ui/templates/layout/partials/styles.phtml +++ b/src/module/Ui/templates/layout/partials/styles.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/layout/partials/top-bar.phtml b/src/module/Ui/templates/layout/partials/top-bar.phtml index 4961158f..c78553f1 100644 --- a/src/module/Ui/templates/layout/partials/top-bar.phtml +++ b/src/module/Ui/templates/layout/partials/top-bar.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/license/add.phtml b/src/module/Ui/templates/license/add.phtml index 16cd991d..2e91db20 100644 --- a/src/module/Ui/templates/license/add.phtml +++ b/src/module/Ui/templates/license/add.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/license/detail.phtml b/src/module/Ui/templates/license/detail.phtml index 1aafba5d..54435fcb 100644 --- a/src/module/Ui/templates/license/detail.phtml +++ b/src/module/Ui/templates/license/detail.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/license/manage.phtml b/src/module/Ui/templates/license/manage.phtml index b926d201..cc311fb6 100644 --- a/src/module/Ui/templates/license/manage.phtml +++ b/src/module/Ui/templates/license/manage.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/license/update.phtml b/src/module/Ui/templates/license/update.phtml index 76356a58..a8c1ad6e 100644 --- a/src/module/Ui/templates/license/update.phtml +++ b/src/module/Ui/templates/license/update.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/mailman/messages/notification/body.twig b/src/module/Ui/templates/mailman/messages/notification/body.twig index 6d373b53..05b75d35 100644 --- a/src/module/Ui/templates/mailman/messages/notification/body.twig +++ b/src/module/Ui/templates/mailman/messages/notification/body.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/mailman/messages/notification/subject.twig b/src/module/Ui/templates/mailman/messages/notification/subject.twig index 92c87f93..f674fe00 100644 --- a/src/module/Ui/templates/mailman/messages/notification/subject.twig +++ b/src/module/Ui/templates/mailman/messages/notification/subject.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/mailman/messages/register/body.phtml b/src/module/Ui/templates/mailman/messages/register/body.phtml index 9c14c2b6..be09f85a 100644 --- a/src/module/Ui/templates/mailman/messages/register/body.phtml +++ b/src/module/Ui/templates/mailman/messages/register/body.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/mailman/messages/register/subject.phtml b/src/module/Ui/templates/mailman/messages/register/subject.phtml index 613234ca..c77bfdc2 100644 --- a/src/module/Ui/templates/mailman/messages/register/subject.phtml +++ b/src/module/Ui/templates/mailman/messages/register/subject.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/mailman/messages/restore-password/body.phtml b/src/module/Ui/templates/mailman/messages/restore-password/body.phtml index 03abd327..1e1f8da8 100644 --- a/src/module/Ui/templates/mailman/messages/restore-password/body.phtml +++ b/src/module/Ui/templates/mailman/messages/restore-password/body.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/mailman/messages/restore-password/subject.phtml b/src/module/Ui/templates/mailman/messages/restore-password/subject.phtml index 970ede0d..55ac2c87 100644 --- a/src/module/Ui/templates/mailman/messages/restore-password/subject.phtml +++ b/src/module/Ui/templates/mailman/messages/restore-password/subject.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/mailman/messages/welcome/body.phtml b/src/module/Ui/templates/mailman/messages/welcome/body.phtml index 15b87b79..280c5984 100644 --- a/src/module/Ui/templates/mailman/messages/welcome/body.phtml +++ b/src/module/Ui/templates/mailman/messages/welcome/body.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/mailman/messages/welcome/subject.phtml b/src/module/Ui/templates/mailman/messages/welcome/subject.phtml index 5b9336c2..26602d9f 100644 --- a/src/module/Ui/templates/mailman/messages/welcome/subject.phtml +++ b/src/module/Ui/templates/mailman/messages/welcome/subject.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/navigation/container/create.phtml b/src/module/Ui/templates/navigation/container/create.phtml index 86eefb6c..8a9639b6 100644 --- a/src/module/Ui/templates/navigation/container/create.phtml +++ b/src/module/Ui/templates/navigation/container/create.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/navigation/container/get.twig b/src/module/Ui/templates/navigation/container/get.twig index 4225ded4..c50601d3 100644 --- a/src/module/Ui/templates/navigation/container/get.twig +++ b/src/module/Ui/templates/navigation/container/get.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/navigation/containers.phtml b/src/module/Ui/templates/navigation/containers.phtml index 6b770bb3..0d3dad8f 100644 --- a/src/module/Ui/templates/navigation/containers.phtml +++ b/src/module/Ui/templates/navigation/containers.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/navigation/page/partial/tree.twig b/src/module/Ui/templates/navigation/page/partial/tree.twig index a179bb34..82a3c1b8 100644 --- a/src/module/Ui/templates/navigation/page/partial/tree.twig +++ b/src/module/Ui/templates/navigation/page/partial/tree.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/navigation/page/update.twig b/src/module/Ui/templates/navigation/page/update.twig index 2c2ce473..596cebd5 100644 --- a/src/module/Ui/templates/navigation/page/update.twig +++ b/src/module/Ui/templates/navigation/page/update.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/navigation/parameter/create.phtml b/src/module/Ui/templates/navigation/parameter/create.phtml index 97b3afca..27e9b76e 100644 --- a/src/module/Ui/templates/navigation/parameter/create.phtml +++ b/src/module/Ui/templates/navigation/parameter/create.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/navigation/parameter/key/create.phtml b/src/module/Ui/templates/navigation/parameter/key/create.phtml index a76f1300..8772b8bf 100644 --- a/src/module/Ui/templates/navigation/parameter/key/create.phtml +++ b/src/module/Ui/templates/navigation/parameter/key/create.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/navigation/parameter/update.phtml b/src/module/Ui/templates/navigation/parameter/update.phtml index 7cf8a251..f348acfa 100644 --- a/src/module/Ui/templates/navigation/parameter/update.phtml +++ b/src/module/Ui/templates/navigation/parameter/update.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/navigation/parameter/view.twig b/src/module/Ui/templates/navigation/parameter/view.twig index 814e87b7..0b703e4c 100644 --- a/src/module/Ui/templates/navigation/parameter/view.twig +++ b/src/module/Ui/templates/navigation/parameter/view.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/navigation/render/json.phtml b/src/module/Ui/templates/navigation/render/json.phtml index a78cf6cd..e4ae0b62 100644 --- a/src/module/Ui/templates/navigation/render/json.phtml +++ b/src/module/Ui/templates/navigation/render/json.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/navigation/render/list.twig b/src/module/Ui/templates/navigation/render/list.twig index 6ff9aa3b..71f17040 100644 --- a/src/module/Ui/templates/navigation/render/list.twig +++ b/src/module/Ui/templates/navigation/render/list.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/navigation/render/partial/nested-list.twig b/src/module/Ui/templates/navigation/render/partial/nested-list.twig index 7306f500..f6d02632 100644 --- a/src/module/Ui/templates/navigation/render/partial/nested-list.twig +++ b/src/module/Ui/templates/navigation/render/partial/nested-list.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/normalizer/json.phtml b/src/module/Ui/templates/normalizer/json.phtml index 0548bd85..aee8c5de 100644 --- a/src/module/Ui/templates/normalizer/json.phtml +++ b/src/module/Ui/templates/normalizer/json.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/normalizer/ref.phtml b/src/module/Ui/templates/normalizer/ref.phtml index 6b3f3448..e0357305 100644 --- a/src/module/Ui/templates/normalizer/ref.phtml +++ b/src/module/Ui/templates/normalizer/ref.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/normalizer/sitemap-uuid.twig b/src/module/Ui/templates/normalizer/sitemap-uuid.twig index a0e85cf5..0b67aa6b 100644 --- a/src/module/Ui/templates/normalizer/sitemap-uuid.twig +++ b/src/module/Ui/templates/normalizer/sitemap-uuid.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/normalizer/sitemap.twig b/src/module/Ui/templates/normalizer/sitemap.twig index 2dc5bc91..3e572477 100644 --- a/src/module/Ui/templates/normalizer/sitemap.twig +++ b/src/module/Ui/templates/normalizer/sitemap.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/notification.twig b/src/module/Ui/templates/notification/notification.twig index a2a4eab4..bea5fd40 100644 --- a/src/module/Ui/templates/notification/notification.twig +++ b/src/module/Ui/templates/notification/notification.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/notifications.twig b/src/module/Ui/templates/notification/notifications.twig index 64e357f9..5f8c17a1 100644 --- a/src/module/Ui/templates/notification/notifications.twig +++ b/src/module/Ui/templates/notification/notifications.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/subscription/manage.twig b/src/module/Ui/templates/notification/subscription/manage.twig index ceba73e1..62a7bee5 100644 --- a/src/module/Ui/templates/notification/subscription/manage.twig +++ b/src/module/Ui/templates/notification/subscription/manage.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/subscription/opt-in/button.twig b/src/module/Ui/templates/notification/subscription/opt-in/button.twig index a3dcd2a2..a6ffbab8 100644 --- a/src/module/Ui/templates/notification/subscription/opt-in/button.twig +++ b/src/module/Ui/templates/notification/subscription/opt-in/button.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/subscription/opt-in/menu-item.twig b/src/module/Ui/templates/notification/subscription/opt-in/menu-item.twig index 0671a176..d68e3871 100644 --- a/src/module/Ui/templates/notification/subscription/opt-in/menu-item.twig +++ b/src/module/Ui/templates/notification/subscription/opt-in/menu-item.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/subscription/opt-in/sub-menu-item.twig b/src/module/Ui/templates/notification/subscription/opt-in/sub-menu-item.twig index 75e1b86e..76ffb46e 100644 --- a/src/module/Ui/templates/notification/subscription/opt-in/sub-menu-item.twig +++ b/src/module/Ui/templates/notification/subscription/opt-in/sub-menu-item.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/subscription/opt-out/button.twig b/src/module/Ui/templates/notification/subscription/opt-out/button.twig index a4c9f28f..5a135e95 100644 --- a/src/module/Ui/templates/notification/subscription/opt-out/button.twig +++ b/src/module/Ui/templates/notification/subscription/opt-out/button.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/subscription/opt-out/menu-item.twig b/src/module/Ui/templates/notification/subscription/opt-out/menu-item.twig index a032548b..a867806d 100644 --- a/src/module/Ui/templates/notification/subscription/opt-out/menu-item.twig +++ b/src/module/Ui/templates/notification/subscription/opt-out/menu-item.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/subscription/opt-out/sub-menu-item.twig b/src/module/Ui/templates/notification/subscription/opt-out/sub-menu-item.twig index 3a0ea022..dfd77c65 100644 --- a/src/module/Ui/templates/notification/subscription/opt-out/sub-menu-item.twig +++ b/src/module/Ui/templates/notification/subscription/opt-out/sub-menu-item.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/discussion/comment/archive.twig b/src/module/Ui/templates/notification/type/discussion/comment/archive.twig index 69ea758d..6980d203 100644 --- a/src/module/Ui/templates/notification/type/discussion/comment/archive.twig +++ b/src/module/Ui/templates/notification/type/discussion/comment/archive.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/discussion/comment/create.twig b/src/module/Ui/templates/notification/type/discussion/comment/create.twig index 4fe8aa0a..81eb6022 100644 --- a/src/module/Ui/templates/notification/type/discussion/comment/create.twig +++ b/src/module/Ui/templates/notification/type/discussion/comment/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/discussion/create.twig b/src/module/Ui/templates/notification/type/discussion/create.twig index ecaccfef..266aa22a 100644 --- a/src/module/Ui/templates/notification/type/discussion/create.twig +++ b/src/module/Ui/templates/notification/type/discussion/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/discussion/restore.twig b/src/module/Ui/templates/notification/type/discussion/restore.twig index 21b105a2..138b2800 100644 --- a/src/module/Ui/templates/notification/type/discussion/restore.twig +++ b/src/module/Ui/templates/notification/type/discussion/restore.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/entity/link/create.twig b/src/module/Ui/templates/notification/type/entity/link/create.twig index 9393edad..7e13826c 100644 --- a/src/module/Ui/templates/notification/type/entity/link/create.twig +++ b/src/module/Ui/templates/notification/type/entity/link/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/entity/revision/add.twig b/src/module/Ui/templates/notification/type/entity/revision/add.twig index a706f681..89866a6c 100644 --- a/src/module/Ui/templates/notification/type/entity/revision/add.twig +++ b/src/module/Ui/templates/notification/type/entity/revision/add.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/entity/revision/checkout.twig b/src/module/Ui/templates/notification/type/entity/revision/checkout.twig index f870c06b..84d06d2a 100644 --- a/src/module/Ui/templates/notification/type/entity/revision/checkout.twig +++ b/src/module/Ui/templates/notification/type/entity/revision/checkout.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/entity/revision/reject.twig b/src/module/Ui/templates/notification/type/entity/revision/reject.twig index d2dbbbb5..78b7dc9c 100644 --- a/src/module/Ui/templates/notification/type/entity/revision/reject.twig +++ b/src/module/Ui/templates/notification/type/entity/revision/reject.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/taxonomy/term/associate.twig b/src/module/Ui/templates/notification/type/taxonomy/term/associate.twig index 080b0d81..6a257276 100644 --- a/src/module/Ui/templates/notification/type/taxonomy/term/associate.twig +++ b/src/module/Ui/templates/notification/type/taxonomy/term/associate.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/taxonomy/term/dissociate.twig b/src/module/Ui/templates/notification/type/taxonomy/term/dissociate.twig index b7770832..08215dd7 100644 --- a/src/module/Ui/templates/notification/type/taxonomy/term/dissociate.twig +++ b/src/module/Ui/templates/notification/type/taxonomy/term/dissociate.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/taxonomy/term/parent/change.twig b/src/module/Ui/templates/notification/type/taxonomy/term/parent/change.twig index 474693e2..5ef2c452 100644 --- a/src/module/Ui/templates/notification/type/taxonomy/term/parent/change.twig +++ b/src/module/Ui/templates/notification/type/taxonomy/term/parent/change.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/taxonomy/term/update.twig b/src/module/Ui/templates/notification/type/taxonomy/term/update.twig index 210291a9..f18b5158 100644 --- a/src/module/Ui/templates/notification/type/taxonomy/term/update.twig +++ b/src/module/Ui/templates/notification/type/taxonomy/term/update.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/uuid/restore.twig b/src/module/Ui/templates/notification/type/uuid/restore.twig index 27252bea..ce73c7de 100644 --- a/src/module/Ui/templates/notification/type/uuid/restore.twig +++ b/src/module/Ui/templates/notification/type/uuid/restore.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/notification/type/uuid/trash.twig b/src/module/Ui/templates/notification/type/uuid/trash.twig index 939ecabb..9a44a7cd 100644 --- a/src/module/Ui/templates/notification/type/uuid/trash.twig +++ b/src/module/Ui/templates/notification/type/uuid/trash.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/page/create.twig b/src/module/Ui/templates/page/create.twig index 78d501fc..95f92862 100644 --- a/src/module/Ui/templates/page/create.twig +++ b/src/module/Ui/templates/page/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/page/pages.twig b/src/module/Ui/templates/page/pages.twig index 11e40a7e..da1bb6ae 100644 --- a/src/module/Ui/templates/page/pages.twig +++ b/src/module/Ui/templates/page/pages.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/page/partials/actions.twig b/src/module/Ui/templates/page/partials/actions.twig index efeb7c94..94b8283e 100644 --- a/src/module/Ui/templates/page/partials/actions.twig +++ b/src/module/Ui/templates/page/partials/actions.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/page/partials/controls.twig b/src/module/Ui/templates/page/partials/controls.twig index b3f415b1..c6c9032f 100644 --- a/src/module/Ui/templates/page/partials/controls.twig +++ b/src/module/Ui/templates/page/partials/controls.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/page/partials/head.twig b/src/module/Ui/templates/page/partials/head.twig index 97feb6df..c4042eee 100644 --- a/src/module/Ui/templates/page/partials/head.twig +++ b/src/module/Ui/templates/page/partials/head.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/page/revision/create-ory.twig b/src/module/Ui/templates/page/revision/create-ory.twig index 79723d31..06309236 100644 --- a/src/module/Ui/templates/page/revision/create-ory.twig +++ b/src/module/Ui/templates/page/revision/create-ory.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/page/revision/create.twig b/src/module/Ui/templates/page/revision/create.twig index 3f5c7ede..280b4064 100644 --- a/src/module/Ui/templates/page/revision/create.twig +++ b/src/module/Ui/templates/page/revision/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/page/revision/view.twig b/src/module/Ui/templates/page/revision/view.twig index 8cdd0616..4003fcf4 100644 --- a/src/module/Ui/templates/page/revision/view.twig +++ b/src/module/Ui/templates/page/revision/view.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/page/revisions.twig b/src/module/Ui/templates/page/revisions.twig index 40e4cfc7..bdc9806f 100644 --- a/src/module/Ui/templates/page/revisions.twig +++ b/src/module/Ui/templates/page/revisions.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/page/update.twig b/src/module/Ui/templates/page/update.twig index 17a8a536..174d8fed 100644 --- a/src/module/Ui/templates/page/update.twig +++ b/src/module/Ui/templates/page/update.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/related-content/add-category.twig b/src/module/Ui/templates/related-content/add-category.twig index 239463d2..40122c6a 100644 --- a/src/module/Ui/templates/related-content/add-category.twig +++ b/src/module/Ui/templates/related-content/add-category.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/related-content/add-external.twig b/src/module/Ui/templates/related-content/add-external.twig index 89beece9..69470df6 100644 --- a/src/module/Ui/templates/related-content/add-external.twig +++ b/src/module/Ui/templates/related-content/add-external.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/related-content/add-internal.twig b/src/module/Ui/templates/related-content/add-internal.twig index 57190de7..90a9e85c 100644 --- a/src/module/Ui/templates/related-content/add-internal.twig +++ b/src/module/Ui/templates/related-content/add-internal.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/related-content/manage.twig b/src/module/Ui/templates/related-content/manage.twig index 0606ce2a..5c3d9585 100644 --- a/src/module/Ui/templates/related-content/manage.twig +++ b/src/module/Ui/templates/related-content/manage.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/related-content/view.phtml b/src/module/Ui/templates/related-content/view.phtml index be143974..869170c0 100644 --- a/src/module/Ui/templates/related-content/view.phtml +++ b/src/module/Ui/templates/related-content/view.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/search/form.twig b/src/module/Ui/templates/search/form.twig index a95a9d1f..e6cc738c 100644 --- a/src/module/Ui/templates/search/form.twig +++ b/src/module/Ui/templates/search/form.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/search/results.twig b/src/module/Ui/templates/search/results.twig index 19cc93b8..01009c58 100644 --- a/src/module/Ui/templates/search/results.twig +++ b/src/module/Ui/templates/search/results.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} @@ -24,8 +24,8 @@ {{ pageHeader('Search results'|trans).setSubtitle(query | escape).render() }} {% include 'search/form' %} - - \ No newline at end of file + diff --git a/src/module/Ui/templates/search/search.twig b/src/module/Ui/templates/search/search.twig index fc5592a0..d637738d 100644 --- a/src/module/Ui/templates/search/search.twig +++ b/src/module/Ui/templates/search/search.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/static/de/datenschutz/archive.twig b/src/module/Ui/templates/static/de/datenschutz/archive.twig index 74f7ed44..c266b66b 100644 --- a/src/module/Ui/templates/static/de/datenschutz/archive.twig +++ b/src/module/Ui/templates/static/de/datenschutz/archive.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/static/de/datenschutz/partials/header.twig b/src/module/Ui/templates/static/de/datenschutz/partials/header.twig index 8a421c98..1861cd38 100644 --- a/src/module/Ui/templates/static/de/datenschutz/partials/header.twig +++ b/src/module/Ui/templates/static/de/datenschutz/partials/header.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/static/de/datenschutz/revision-20181017.twig b/src/module/Ui/templates/static/de/datenschutz/revision-20181017.twig index 343d338c..b76dde10 100644 --- a/src/module/Ui/templates/static/de/datenschutz/revision-20181017.twig +++ b/src/module/Ui/templates/static/de/datenschutz/revision-20181017.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/static/de/datenschutz/revision-20181201.twig b/src/module/Ui/templates/static/de/datenschutz/revision-20181201.twig index 95c52714..9d7c4972 100644 --- a/src/module/Ui/templates/static/de/datenschutz/revision-20181201.twig +++ b/src/module/Ui/templates/static/de/datenschutz/revision-20181201.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/static/emptyTemplate.twig b/src/module/Ui/templates/static/emptyTemplate.twig index ad76e59d..bc2a5c76 100644 --- a/src/module/Ui/templates/static/emptyTemplate.twig +++ b/src/module/Ui/templates/static/emptyTemplate.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/static/spenden.phtml b/src/module/Ui/templates/static/spenden.phtml index 663de2a2..69fcf338 100644 --- a/src/module/Ui/templates/static/spenden.phtml +++ b/src/module/Ui/templates/static/spenden.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -102,8 +102,6 @@ echo $this->doctype(); Deine Spende für freie Bildung -
Mit deiner Spende trägst du dazu bei, dass hochwertige - Bildungsmaterialien für alle kostenlos zugänglich sind.
diff --git a/src/module/Ui/templates/subject/entity/trash-bin.phtml b/src/module/Ui/templates/subject/entity/trash-bin.phtml index 6b006d2c..a10b9e46 100644 --- a/src/module/Ui/templates/subject/entity/trash-bin.phtml +++ b/src/module/Ui/templates/subject/entity/trash-bin.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/subject/entity/unrevised.phtml b/src/module/Ui/templates/subject/entity/unrevised.phtml index 682e16be..42d952ea 100644 --- a/src/module/Ui/templates/subject/entity/unrevised.phtml +++ b/src/module/Ui/templates/subject/entity/unrevised.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/subject/home/index.twig b/src/module/Ui/templates/subject/home/index.twig index c467f563..9314988c 100644 --- a/src/module/Ui/templates/subject/home/index.twig +++ b/src/module/Ui/templates/subject/home/index.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/aggregate/siblings.twig b/src/module/Ui/templates/taxonomy/term/aggregate/siblings.twig index 0a3bddd4..c3965941 100644 --- a/src/module/Ui/templates/taxonomy/term/aggregate/siblings.twig +++ b/src/module/Ui/templates/taxonomy/term/aggregate/siblings.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/batch-copy.twig b/src/module/Ui/templates/taxonomy/term/batch-copy.twig index 5b54a09a..4eaf82d5 100644 --- a/src/module/Ui/templates/taxonomy/term/batch-copy.twig +++ b/src/module/Ui/templates/taxonomy/term/batch-copy.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/batch-move.twig b/src/module/Ui/templates/taxonomy/term/batch-move.twig index 7e17abcb..b15b8799 100644 --- a/src/module/Ui/templates/taxonomy/term/batch-move.twig +++ b/src/module/Ui/templates/taxonomy/term/batch-move.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/create.twig b/src/module/Ui/templates/taxonomy/term/create.twig index 674c19f8..66e2c534 100644 --- a/src/module/Ui/templates/taxonomy/term/create.twig +++ b/src/module/Ui/templates/taxonomy/term/create.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/entity/applet.twig b/src/module/Ui/templates/taxonomy/term/entity/applet.twig index fd159174..37638ceb 100644 --- a/src/module/Ui/templates/taxonomy/term/entity/applet.twig +++ b/src/module/Ui/templates/taxonomy/term/entity/applet.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/entity/article.twig b/src/module/Ui/templates/taxonomy/term/entity/article.twig index 233a4876..88d78beb 100644 --- a/src/module/Ui/templates/taxonomy/term/entity/article.twig +++ b/src/module/Ui/templates/taxonomy/term/entity/article.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/entity/course.twig b/src/module/Ui/templates/taxonomy/term/entity/course.twig index 233a4876..88d78beb 100644 --- a/src/module/Ui/templates/taxonomy/term/entity/course.twig +++ b/src/module/Ui/templates/taxonomy/term/entity/course.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/entity/default.twig b/src/module/Ui/templates/taxonomy/term/entity/default.twig index eda969bd..607dabfd 100644 --- a/src/module/Ui/templates/taxonomy/term/entity/default.twig +++ b/src/module/Ui/templates/taxonomy/term/entity/default.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/entity/video.twig b/src/module/Ui/templates/taxonomy/term/entity/video.twig index 233a4876..88d78beb 100644 --- a/src/module/Ui/templates/taxonomy/term/entity/video.twig +++ b/src/module/Ui/templates/taxonomy/term/entity/video.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/order-associated.phtml b/src/module/Ui/templates/taxonomy/term/order-associated.phtml index 8bd3279d..3bc801d6 100644 --- a/src/module/Ui/templates/taxonomy/term/order-associated.phtml +++ b/src/module/Ui/templates/taxonomy/term/order-associated.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/taxonomy/term/organize.twig b/src/module/Ui/templates/taxonomy/term/organize.twig index 27edd113..a35dc566 100644 --- a/src/module/Ui/templates/taxonomy/term/organize.twig +++ b/src/module/Ui/templates/taxonomy/term/organize.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/organize/actions.twig b/src/module/Ui/templates/taxonomy/term/organize/actions.twig index ba44908c..d4090992 100644 --- a/src/module/Ui/templates/taxonomy/term/organize/actions.twig +++ b/src/module/Ui/templates/taxonomy/term/organize/actions.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/organize/partial.twig b/src/module/Ui/templates/taxonomy/term/organize/partial.twig index bbd7d3c4..966e5328 100644 --- a/src/module/Ui/templates/taxonomy/term/organize/partial.twig +++ b/src/module/Ui/templates/taxonomy/term/organize/partial.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/page/curriculum-topic-folder.twig b/src/module/Ui/templates/taxonomy/term/page/curriculum-topic-folder.twig index 250dec18..1f448731 100644 --- a/src/module/Ui/templates/taxonomy/term/page/curriculum-topic-folder.twig +++ b/src/module/Ui/templates/taxonomy/term/page/curriculum-topic-folder.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/page/curriculum-topic.twig b/src/module/Ui/templates/taxonomy/term/page/curriculum-topic.twig index 250dec18..1f448731 100644 --- a/src/module/Ui/templates/taxonomy/term/page/curriculum-topic.twig +++ b/src/module/Ui/templates/taxonomy/term/page/curriculum-topic.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/page/curriculum.twig b/src/module/Ui/templates/taxonomy/term/page/curriculum.twig index 250dec18..1f448731 100644 --- a/src/module/Ui/templates/taxonomy/term/page/curriculum.twig +++ b/src/module/Ui/templates/taxonomy/term/page/curriculum.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/page/default.twig b/src/module/Ui/templates/taxonomy/term/page/default.twig index 9433cec5..5ee00781 100644 --- a/src/module/Ui/templates/taxonomy/term/page/default.twig +++ b/src/module/Ui/templates/taxonomy/term/page/default.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/page/locale.twig b/src/module/Ui/templates/taxonomy/term/page/locale.twig index 250dec18..1f448731 100644 --- a/src/module/Ui/templates/taxonomy/term/page/locale.twig +++ b/src/module/Ui/templates/taxonomy/term/page/locale.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/page/partials/alerts.twig b/src/module/Ui/templates/taxonomy/term/page/partials/alerts.twig index 56bad508..24039fb2 100644 --- a/src/module/Ui/templates/taxonomy/term/page/partials/alerts.twig +++ b/src/module/Ui/templates/taxonomy/term/page/partials/alerts.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/page/partials/curriculum-head.twig b/src/module/Ui/templates/taxonomy/term/page/partials/curriculum-head.twig index 38b739a1..30debc37 100644 --- a/src/module/Ui/templates/taxonomy/term/page/partials/curriculum-head.twig +++ b/src/module/Ui/templates/taxonomy/term/page/partials/curriculum-head.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/page/subject-descendant.twig b/src/module/Ui/templates/taxonomy/term/page/subject-descendant.twig index aea8d03e..b9d5dadf 100644 --- a/src/module/Ui/templates/taxonomy/term/page/subject-descendant.twig +++ b/src/module/Ui/templates/taxonomy/term/page/subject-descendant.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/page/subject.twig b/src/module/Ui/templates/taxonomy/term/page/subject.twig index b664ebf6..15447dc5 100644 --- a/src/module/Ui/templates/taxonomy/term/page/subject.twig +++ b/src/module/Ui/templates/taxonomy/term/page/subject.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/page/topic-folder.twig b/src/module/Ui/templates/taxonomy/term/page/topic-folder.twig index 915622e9..5613cabd 100644 --- a/src/module/Ui/templates/taxonomy/term/page/topic-folder.twig +++ b/src/module/Ui/templates/taxonomy/term/page/topic-folder.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/page/topic.twig b/src/module/Ui/templates/taxonomy/term/page/topic.twig index 7e6305af..5ab7ad66 100644 --- a/src/module/Ui/templates/taxonomy/term/page/topic.twig +++ b/src/module/Ui/templates/taxonomy/term/page/topic.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/curriculum-topic-folder.twig b/src/module/Ui/templates/taxonomy/term/templates/curriculum-topic-folder.twig index 7239e144..be3a47b6 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/curriculum-topic-folder.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/curriculum-topic-folder.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/curriculum-topic.twig b/src/module/Ui/templates/taxonomy/term/templates/curriculum-topic.twig index e459f12f..274ea9e4 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/curriculum-topic.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/curriculum-topic.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/curriculum.twig b/src/module/Ui/templates/taxonomy/term/templates/curriculum.twig index 4b77559d..3e100c2c 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/curriculum.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/curriculum.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/default.twig b/src/module/Ui/templates/taxonomy/term/templates/default.twig index f1af0dda..d54200de 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/default.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/default.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/locale.twig b/src/module/Ui/templates/taxonomy/term/templates/locale.twig index ef0528fb..746a0054 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/locale.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/locale.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/partials/actions.twig b/src/module/Ui/templates/taxonomy/term/templates/partials/actions.twig index 47e4e624..9c079a57 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/partials/actions.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/partials/actions.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/partials/controls.twig b/src/module/Ui/templates/taxonomy/term/templates/partials/controls.twig index 6d955811..c4152b7c 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/partials/controls.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/partials/controls.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/partials/discussion.twig b/src/module/Ui/templates/taxonomy/term/templates/partials/discussion.twig index 5a92b72c..250156c6 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/partials/discussion.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/partials/discussion.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/partials/entities.twig b/src/module/Ui/templates/taxonomy/term/templates/partials/entities.twig index cfdfb589..71ea845f 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/partials/entities.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/partials/entities.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/partials/groups.twig b/src/module/Ui/templates/taxonomy/term/templates/partials/groups.twig index 4dc40fdd..ea7c02f6 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/partials/groups.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/partials/groups.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/partials/head.twig b/src/module/Ui/templates/taxonomy/term/templates/partials/head.twig index 3b26fbeb..6bb29363 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/partials/head.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/partials/head.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/partials/subfolders.twig b/src/module/Ui/templates/taxonomy/term/templates/partials/subfolders.twig index 671e264d..bcdfba98 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/partials/subfolders.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/partials/subfolders.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/partials/subject-actions.twig b/src/module/Ui/templates/taxonomy/term/templates/partials/subject-actions.twig index 22b139f4..1c34f18f 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/partials/subject-actions.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/partials/subject-actions.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/partials/subject-controls.twig b/src/module/Ui/templates/taxonomy/term/templates/partials/subject-controls.twig index 5fe756b3..5b25e67e 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/partials/subject-controls.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/partials/subject-controls.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/subject.twig b/src/module/Ui/templates/taxonomy/term/templates/subject.twig index 1e183325..41a76a4e 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/subject.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/subject.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/topic-folder.twig b/src/module/Ui/templates/taxonomy/term/templates/topic-folder.twig index 7b0abb25..a5460704 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/topic-folder.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/topic-folder.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/templates/topic.twig b/src/module/Ui/templates/taxonomy/term/templates/topic.twig index 33c71b9e..f2bff1f9 100644 --- a/src/module/Ui/templates/taxonomy/term/templates/topic.twig +++ b/src/module/Ui/templates/taxonomy/term/templates/topic.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/taxonomy/term/update.twig b/src/module/Ui/templates/taxonomy/term/update.twig index b514055e..fa08d1a3 100644 --- a/src/module/Ui/templates/taxonomy/term/update.twig +++ b/src/module/Ui/templates/taxonomy/term/update.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/upload/form.phtml b/src/module/Ui/templates/upload/form.phtml index ac2414eb..cdebde7b 100644 --- a/src/module/Ui/templates/upload/form.phtml +++ b/src/module/Ui/templates/upload/form.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/upload/success.phtml b/src/module/Ui/templates/upload/success.phtml index 31ede75a..512027f8 100644 --- a/src/module/Ui/templates/upload/success.phtml +++ b/src/module/Ui/templates/upload/success.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Ui/templates/user/user/profile.twig b/src/module/Ui/templates/user/user/profile.twig index 2ba6c994..09eeaa59 100644 --- a/src/module/Ui/templates/user/user/profile.twig +++ b/src/module/Ui/templates/user/user/profile.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/user/user/register.twig b/src/module/Ui/templates/user/user/register.twig index 51140aaf..d2daa5ee 100644 --- a/src/module/Ui/templates/user/user/register.twig +++ b/src/module/Ui/templates/user/user/register.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} @@ -32,12 +32,6 @@ {% set interestsErrors = formElementErrors(form.get('interests')) %} {% set newsletterOptInErrors = formElementErrors(form.get('newsletterOptIn')) %} - - {% do form.prepare() %} {{ form().openTag(form) }} {{ formHidden(form.get('csrf')) }} @@ -129,13 +123,7 @@ function onSubmit() {

- + {{ formElement(form.get('recaptcha')) }}
{{ form().closeTag(form) }} diff --git a/src/module/Ui/templates/user/user/settings.twig b/src/module/Ui/templates/user/user/settings.twig index 60ea2269..4e12c609 100644 --- a/src/module/Ui/templates/user/user/settings.twig +++ b/src/module/Ui/templates/user/user/settings.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/user/users/partial/users-table.twig b/src/module/Ui/templates/user/users/partial/users-table.twig index 65e3a597..7e403a74 100644 --- a/src/module/Ui/templates/user/users/partial/users-table.twig +++ b/src/module/Ui/templates/user/users/partial/users-table.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/user/users/users.twig b/src/module/Ui/templates/user/users/users.twig index 278a9043..70897ca1 100644 --- a/src/module/Ui/templates/user/users/users.twig +++ b/src/module/Ui/templates/user/users/users.twig @@ -1,7 +1,7 @@ {## # This file is part of Athene2. # - # Copyright (c) 2013-2018 Serlo Education e.V. + # Copyright (c) 2013-2019 Serlo Education e.V. # # Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License @@ -15,7 +15,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - # @copyright Copyright (c) 2013-2018 Serlo Education e.V. + # @copyright Copyright (c) 2013-2019 Serlo Education e.V. # @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 # @link https://github.com/serlo-org/athene2 for the canonical source repository #} diff --git a/src/module/Ui/templates/uuid/recycle-bin.phtml b/src/module/Ui/templates/uuid/recycle-bin.phtml index e271e853..b9655167 100644 --- a/src/module/Ui/templates/uuid/recycle-bin.phtml +++ b/src/module/Ui/templates/uuid/recycle-bin.phtml @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/Module.php b/src/module/User/Module.php index 193525e1..ed8aefb1 100644 --- a/src/module/User/Module.php +++ b/src/module/User/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/config/module.config.php b/src/module/User/config/module.config.php index ac63b608..5bbc4865 100644 --- a/src/module/User/config/module.config.php +++ b/src/module/User/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Assertion/HasNoIdentityAssertion.php b/src/module/User/src/User/Assertion/HasNoIdentityAssertion.php index 1ccaf79f..67c7243d 100644 --- a/src/module/User/src/User/Assertion/HasNoIdentityAssertion.php +++ b/src/module/User/src/User/Assertion/HasNoIdentityAssertion.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Assertion/LoginAssertion.php b/src/module/User/src/User/Assertion/LoginAssertion.php index 45a64f95..c0437104 100644 --- a/src/module/User/src/User/Assertion/LoginAssertion.php +++ b/src/module/User/src/User/Assertion/LoginAssertion.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Controller/AbstractUserController.php b/src/module/User/src/User/Controller/AbstractUserController.php index 84a345f7..40fc6701 100644 --- a/src/module/User/src/User/Controller/AbstractUserController.php +++ b/src/module/User/src/User/Controller/AbstractUserController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Controller/UserController.php b/src/module/User/src/User/Controller/UserController.php index f03fbfd5..c1c871a7 100644 --- a/src/module/User/src/User/Controller/UserController.php +++ b/src/module/User/src/User/Controller/UserController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -130,10 +130,7 @@ public function getForm($name) if (!is_object($this->forms[$name])) { $form = $this->forms[$name]; if ($name === 'register') { - $this->forms[$name] = new $form( - $this->getUserManager()->getObjectManager(), - $this->getServiceLocator()->get('MvcTranslator') - ); + $this->forms[$name] = $this->getServiceLocator()->get($form); } elseif ($name === 'settings') { $this->forms[$name] = new $form($this->getUserManager()->getObjectManager()); } elseif ($name === 'login') { diff --git a/src/module/User/src/User/Controller/UsersController.php b/src/module/User/src/User/Controller/UsersController.php index 5f1127ab..6a10eabc 100644 --- a/src/module/User/src/User/Controller/UsersController.php +++ b/src/module/User/src/User/Controller/UsersController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Entity/Permission.php b/src/module/User/src/User/Entity/Permission.php index ef43b5fa..a6d95533 100644 --- a/src/module/User/src/User/Entity/Permission.php +++ b/src/module/User/src/User/Entity/Permission.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Entity/PermissionKey.php b/src/module/User/src/User/Entity/PermissionKey.php index 3a6dae7c..00cff6ad 100644 --- a/src/module/User/src/User/Entity/PermissionKey.php +++ b/src/module/User/src/User/Entity/PermissionKey.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Entity/Role.php b/src/module/User/src/User/Entity/Role.php index ffe162fb..3895c25b 100644 --- a/src/module/User/src/User/Entity/Role.php +++ b/src/module/User/src/User/Entity/Role.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Entity/User.php b/src/module/User/src/User/Entity/User.php index d8e0f9f9..b7be5c92 100644 --- a/src/module/User/src/User/Entity/User.php +++ b/src/module/User/src/User/Entity/User.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Entity/UserInterface.php b/src/module/User/src/User/Entity/UserInterface.php index c0613d96..bdf0f1e0 100644 --- a/src/module/User/src/User/Entity/UserInterface.php +++ b/src/module/User/src/User/Entity/UserInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Exception/InvalidArgumentException.php b/src/module/User/src/User/Exception/InvalidArgumentException.php index b64ff579..ec5b8da1 100644 --- a/src/module/User/src/User/Exception/InvalidArgumentException.php +++ b/src/module/User/src/User/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Exception/RuntimeException.php b/src/module/User/src/User/Exception/RuntimeException.php index 5a8c8f91..243f541a 100644 --- a/src/module/User/src/User/Exception/RuntimeException.php +++ b/src/module/User/src/User/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Exception/UserNotFoundException.php b/src/module/User/src/User/Exception/UserNotFoundException.php index ab16f5f2..ae87cfa7 100644 --- a/src/module/User/src/User/Exception/UserNotFoundException.php +++ b/src/module/User/src/User/Exception/UserNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Factory/RegisterFormFactory.php b/src/module/User/src/User/Factory/RegisterFormFactory.php index 9dac15ec..663851ef 100644 --- a/src/module/User/src/User/Factory/RegisterFormFactory.php +++ b/src/module/User/src/User/Factory/RegisterFormFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -24,6 +24,7 @@ use Common\Factory\EntityManagerFactoryTrait; use User\Form\Register; +use Zend\Mvc\I18n\Translator; use Zend\ServiceManager\FactoryInterface; use Zend\ServiceManager\ServiceLocatorInterface; @@ -40,6 +41,11 @@ class RegisterFormFactory implements FactoryInterface public function createService(ServiceLocatorInterface $serviceLocator) { $entityManager = $this->getEntityManager($serviceLocator); - return new Register($entityManager); + /** + * @var $translator Translator + */ + $translator = $serviceLocator->get('MvcTranslator'); + $config = $serviceLocator->get('Config'); + return new Register($entityManager, $translator, $config); } } diff --git a/src/module/User/src/User/Factory/UserHelperFactory.php b/src/module/User/src/User/Factory/UserHelperFactory.php index 93146046..dca124ff 100644 --- a/src/module/User/src/User/Factory/UserHelperFactory.php +++ b/src/module/User/src/User/Factory/UserHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Factory/UserManagerFactory.php b/src/module/User/src/User/Factory/UserManagerFactory.php index 5c4670ea..5d97602e 100644 --- a/src/module/User/src/User/Factory/UserManagerFactory.php +++ b/src/module/User/src/User/Factory/UserManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Factory/UserManagerFactoryTrait.php b/src/module/User/src/User/Factory/UserManagerFactoryTrait.php index 90fe3851..0ea9c3f4 100644 --- a/src/module/User/src/User/Factory/UserManagerFactoryTrait.php +++ b/src/module/User/src/User/Factory/UserManagerFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Form/ChangePasswordForm.php b/src/module/User/src/User/Form/ChangePasswordForm.php index 8bc031f5..5ab514d0 100644 --- a/src/module/User/src/User/Form/ChangePasswordForm.php +++ b/src/module/User/src/User/Form/ChangePasswordForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Form/Login.php b/src/module/User/src/User/Form/Login.php index ef5daf43..cd0fc165 100644 --- a/src/module/User/src/User/Form/Login.php +++ b/src/module/User/src/User/Form/Login.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Form/LostPassword.php b/src/module/User/src/User/Form/LostPassword.php index 872077da..66fa1f06 100644 --- a/src/module/User/src/User/Form/LostPassword.php +++ b/src/module/User/src/User/Form/LostPassword.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Form/Register.php b/src/module/User/src/User/Form/Register.php index 4e0f2946..201a727f 100644 --- a/src/module/User/src/User/Form/Register.php +++ b/src/module/User/src/User/Form/Register.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,13 +16,14 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ namespace User\Form; use Common\Form\Element\CsrfToken; +use Common\Form\Element\ReCaptcha; use Doctrine\ORM\EntityManager; use Zend\Form\Element\Checkbox; use Zend\Form\Element\Password; @@ -34,7 +35,7 @@ class Register extends Form { - public function __construct(EntityManager $entityManager, Translator $translator) + public function __construct(EntityManager $entityManager, Translator $translator, $config) { parent::__construct('signUp'); $this->add(new CsrfToken()); @@ -87,5 +88,9 @@ public function __construct(EntityManager $entityManager, Translator $translator )) ->setEmptyOption('') ->setLabel('I am here as…')); + + $recaptcha = (new ReCaptcha($config['recaptcha_options'])) + ->setValue('Sign up'); + $this->add($recaptcha); } } diff --git a/src/module/User/src/User/Form/RegisterFilter.php b/src/module/User/src/User/Form/RegisterFilter.php index 01efe193..455e0af0 100644 --- a/src/module/User/src/User/Form/RegisterFilter.php +++ b/src/module/User/src/User/Form/RegisterFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Form/SelectUserForm.php b/src/module/User/src/User/Form/SelectUserForm.php index 25aa41dd..d733a319 100644 --- a/src/module/User/src/User/Form/SelectUserForm.php +++ b/src/module/User/src/User/Form/SelectUserForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Form/SettingsForm.php b/src/module/User/src/User/Form/SettingsForm.php index 883bc628..8c5dfee6 100644 --- a/src/module/User/src/User/Form/SettingsForm.php +++ b/src/module/User/src/User/Form/SettingsForm.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Hydrator/UserHydrator.php b/src/module/User/src/User/Hydrator/UserHydrator.php index 56545ba3..0605f8ab 100644 --- a/src/module/User/src/User/Hydrator/UserHydrator.php +++ b/src/module/User/src/User/Hydrator/UserHydrator.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Manager/UserManager.php b/src/module/User/src/User/Manager/UserManager.php index 6aa687f8..4bcc469a 100644 --- a/src/module/User/src/User/Manager/UserManager.php +++ b/src/module/User/src/User/Manager/UserManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Manager/UserManagerAwareInterface.php b/src/module/User/src/User/Manager/UserManagerAwareInterface.php index 123afb73..0fbc1a97 100644 --- a/src/module/User/src/User/Manager/UserManagerAwareInterface.php +++ b/src/module/User/src/User/Manager/UserManagerAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Manager/UserManagerAwareTrait.php b/src/module/User/src/User/Manager/UserManagerAwareTrait.php index c38f56f9..c25c580c 100644 --- a/src/module/User/src/User/Manager/UserManagerAwareTrait.php +++ b/src/module/User/src/User/Manager/UserManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Manager/UserManagerInterface.php b/src/module/User/src/User/Manager/UserManagerInterface.php index 1f593da3..93754ba9 100644 --- a/src/module/User/src/User/Manager/UserManagerInterface.php +++ b/src/module/User/src/User/Manager/UserManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/Validator/UniqueUser.php b/src/module/User/src/User/Validator/UniqueUser.php index 87f40959..5057dc0e 100644 --- a/src/module/User/src/User/Validator/UniqueUser.php +++ b/src/module/User/src/User/Validator/UniqueUser.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/User/src/User/View/Helper/UserHelper.php b/src/module/User/src/User/View/Helper/UserHelper.php index f22ce433..53accdde 100644 --- a/src/module/User/src/User/View/Helper/UserHelper.php +++ b/src/module/User/src/User/View/Helper/UserHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/Module.php b/src/module/Uuid/Module.php index ea203472..a0bd1697 100644 --- a/src/module/Uuid/Module.php +++ b/src/module/Uuid/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/config/module.config.php b/src/module/Uuid/config/module.config.php index e892ba94..8b35a899 100644 --- a/src/module/Uuid/config/module.config.php +++ b/src/module/Uuid/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Controller/UuidController.php b/src/module/Uuid/src/Uuid/Controller/UuidController.php index cba87427..c8a306c3 100644 --- a/src/module/Uuid/src/Uuid/Controller/UuidController.php +++ b/src/module/Uuid/src/Uuid/Controller/UuidController.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Entity/Uuid.php b/src/module/Uuid/src/Uuid/Entity/Uuid.php index fff56742..296ac475 100644 --- a/src/module/Uuid/src/Uuid/Entity/Uuid.php +++ b/src/module/Uuid/src/Uuid/Entity/Uuid.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Entity/UuidInterface.php b/src/module/Uuid/src/Uuid/Entity/UuidInterface.php index 5537d188..f46406e0 100644 --- a/src/module/Uuid/src/Uuid/Entity/UuidInterface.php +++ b/src/module/Uuid/src/Uuid/Entity/UuidInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Exception/InvalidArgumentException.php b/src/module/Uuid/src/Uuid/Exception/InvalidArgumentException.php index 60cd71a5..fa1659ad 100644 --- a/src/module/Uuid/src/Uuid/Exception/InvalidArgumentException.php +++ b/src/module/Uuid/src/Uuid/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Exception/NotFoundException.php b/src/module/Uuid/src/Uuid/Exception/NotFoundException.php index c6fdbb73..89d57365 100644 --- a/src/module/Uuid/src/Uuid/Exception/NotFoundException.php +++ b/src/module/Uuid/src/Uuid/Exception/NotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Exception/RuntimeException.php b/src/module/Uuid/src/Uuid/Exception/RuntimeException.php index 4f171c76..ecd96da6 100644 --- a/src/module/Uuid/src/Uuid/Exception/RuntimeException.php +++ b/src/module/Uuid/src/Uuid/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Factory/ModuleOptionsFactory.php b/src/module/Uuid/src/Uuid/Factory/ModuleOptionsFactory.php index 5c52b398..faf81353 100644 --- a/src/module/Uuid/src/Uuid/Factory/ModuleOptionsFactory.php +++ b/src/module/Uuid/src/Uuid/Factory/ModuleOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Factory/UuidHelperFactory.php b/src/module/Uuid/src/Uuid/Factory/UuidHelperFactory.php index 6e5a8630..778b1b0b 100644 --- a/src/module/Uuid/src/Uuid/Factory/UuidHelperFactory.php +++ b/src/module/Uuid/src/Uuid/Factory/UuidHelperFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Factory/UuidManagerFactory.php b/src/module/Uuid/src/Uuid/Factory/UuidManagerFactory.php index de2456e0..cca3b4ff 100644 --- a/src/module/Uuid/src/Uuid/Factory/UuidManagerFactory.php +++ b/src/module/Uuid/src/Uuid/Factory/UuidManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Factory/UuidManagerFactoryTrait.php b/src/module/Uuid/src/Uuid/Factory/UuidManagerFactoryTrait.php index b2cfcdd3..e3a65dc1 100644 --- a/src/module/Uuid/src/Uuid/Factory/UuidManagerFactoryTrait.php +++ b/src/module/Uuid/src/Uuid/Factory/UuidManagerFactoryTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Filter/NotTrashedCollectionFilter.php b/src/module/Uuid/src/Uuid/Filter/NotTrashedCollectionFilter.php index ada5cb94..01a0cbb1 100644 --- a/src/module/Uuid/src/Uuid/Filter/NotTrashedCollectionFilter.php +++ b/src/module/Uuid/src/Uuid/Filter/NotTrashedCollectionFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Manager/UuidManager.php b/src/module/Uuid/src/Uuid/Manager/UuidManager.php index ef1b8b86..05cd9828 100644 --- a/src/module/Uuid/src/Uuid/Manager/UuidManager.php +++ b/src/module/Uuid/src/Uuid/Manager/UuidManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Manager/UuidManagerAwareTrait.php b/src/module/Uuid/src/Uuid/Manager/UuidManagerAwareTrait.php index 92d3f2cc..73bd3df8 100644 --- a/src/module/Uuid/src/Uuid/Manager/UuidManagerAwareTrait.php +++ b/src/module/Uuid/src/Uuid/Manager/UuidManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Manager/UuidManagerInterface.php b/src/module/Uuid/src/Uuid/Manager/UuidManagerInterface.php index 54880c69..e89f8a2e 100644 --- a/src/module/Uuid/src/Uuid/Manager/UuidManagerInterface.php +++ b/src/module/Uuid/src/Uuid/Manager/UuidManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/Options/ModuleOptions.php b/src/module/Uuid/src/Uuid/Options/ModuleOptions.php index 819c28cb..7995dcae 100644 --- a/src/module/Uuid/src/Uuid/Options/ModuleOptions.php +++ b/src/module/Uuid/src/Uuid/Options/ModuleOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/View/Helper/FormHelper.php b/src/module/Uuid/src/Uuid/View/Helper/FormHelper.php index 88bb5966..f3837d12 100644 --- a/src/module/Uuid/src/Uuid/View/Helper/FormHelper.php +++ b/src/module/Uuid/src/Uuid/View/Helper/FormHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Uuid/src/Uuid/View/Helper/UuidHelper.php b/src/module/Uuid/src/Uuid/View/Helper/UuidHelper.php index 24de764d..15dbd7fb 100644 --- a/src/module/Uuid/src/Uuid/View/Helper/UuidHelper.php +++ b/src/module/Uuid/src/Uuid/View/Helper/UuidHelper.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/Module.php b/src/module/Versioning/Module.php index 410c23c1..b51455ae 100644 --- a/src/module/Versioning/Module.php +++ b/src/module/Versioning/Module.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/config/module.config.php b/src/module/Versioning/config/module.config.php index 80d45dd4..0c031ea6 100644 --- a/src/module/Versioning/config/module.config.php +++ b/src/module/Versioning/config/module.config.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/Entity/RepositoryInterface.php b/src/module/Versioning/src/Versioning/Entity/RepositoryInterface.php index 694dc0df..ce73b642 100644 --- a/src/module/Versioning/src/Versioning/Entity/RepositoryInterface.php +++ b/src/module/Versioning/src/Versioning/Entity/RepositoryInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/Entity/RevisionInterface.php b/src/module/Versioning/src/Versioning/Entity/RevisionInterface.php index d51309d8..b228c30e 100644 --- a/src/module/Versioning/src/Versioning/Entity/RevisionInterface.php +++ b/src/module/Versioning/src/Versioning/Entity/RevisionInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/Exception/InvalidArgumentException.php b/src/module/Versioning/src/Versioning/Exception/InvalidArgumentException.php index 1fc4e544..8698aed6 100644 --- a/src/module/Versioning/src/Versioning/Exception/InvalidArgumentException.php +++ b/src/module/Versioning/src/Versioning/Exception/InvalidArgumentException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/Exception/OutOfSynchException.php b/src/module/Versioning/src/Versioning/Exception/OutOfSynchException.php index 2b4e5e25..5cf5c55f 100644 --- a/src/module/Versioning/src/Versioning/Exception/OutOfSynchException.php +++ b/src/module/Versioning/src/Versioning/Exception/OutOfSynchException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/Exception/RevisionNotFoundException.php b/src/module/Versioning/src/Versioning/Exception/RevisionNotFoundException.php index 6f9828bc..b8f1d64b 100644 --- a/src/module/Versioning/src/Versioning/Exception/RevisionNotFoundException.php +++ b/src/module/Versioning/src/Versioning/Exception/RevisionNotFoundException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/Exception/RuntimeException.php b/src/module/Versioning/src/Versioning/Exception/RuntimeException.php index c7150695..2e0312c4 100644 --- a/src/module/Versioning/src/Versioning/Exception/RuntimeException.php +++ b/src/module/Versioning/src/Versioning/Exception/RuntimeException.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/Factory/ModuleOptionsFactory.php b/src/module/Versioning/src/Versioning/Factory/ModuleOptionsFactory.php index ffcdb121..f9c10ea4 100644 --- a/src/module/Versioning/src/Versioning/Factory/ModuleOptionsFactory.php +++ b/src/module/Versioning/src/Versioning/Factory/ModuleOptionsFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/Factory/RepositoryManagerFactory.php b/src/module/Versioning/src/Versioning/Factory/RepositoryManagerFactory.php index 741a515f..f5528a97 100644 --- a/src/module/Versioning/src/Versioning/Factory/RepositoryManagerFactory.php +++ b/src/module/Versioning/src/Versioning/Factory/RepositoryManagerFactory.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/Filter/HasCurrentRevisionCollectionFilter.php b/src/module/Versioning/src/Versioning/Filter/HasCurrentRevisionCollectionFilter.php index 026298a7..8592668f 100644 --- a/src/module/Versioning/src/Versioning/Filter/HasCurrentRevisionCollectionFilter.php +++ b/src/module/Versioning/src/Versioning/Filter/HasCurrentRevisionCollectionFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/Filter/HasHeadCollectionFilter.php b/src/module/Versioning/src/Versioning/Filter/HasHeadCollectionFilter.php index beba3b7f..0fcbf2a5 100644 --- a/src/module/Versioning/src/Versioning/Filter/HasHeadCollectionFilter.php +++ b/src/module/Versioning/src/Versioning/Filter/HasHeadCollectionFilter.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/Options/ModuleOptions.php b/src/module/Versioning/src/Versioning/Options/ModuleOptions.php index 52ce787e..d91ef1c4 100644 --- a/src/module/Versioning/src/Versioning/Options/ModuleOptions.php +++ b/src/module/Versioning/src/Versioning/Options/ModuleOptions.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/RepositoryManager.php b/src/module/Versioning/src/Versioning/RepositoryManager.php index 986f0549..b119faea 100644 --- a/src/module/Versioning/src/Versioning/RepositoryManager.php +++ b/src/module/Versioning/src/Versioning/RepositoryManager.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/RepositoryManagerAwareInterface.php b/src/module/Versioning/src/Versioning/RepositoryManagerAwareInterface.php index 8734ba35..dafd5b23 100644 --- a/src/module/Versioning/src/Versioning/RepositoryManagerAwareInterface.php +++ b/src/module/Versioning/src/Versioning/RepositoryManagerAwareInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/RepositoryManagerAwareTrait.php b/src/module/Versioning/src/Versioning/RepositoryManagerAwareTrait.php index 536df33b..7633f737 100644 --- a/src/module/Versioning/src/Versioning/RepositoryManagerAwareTrait.php +++ b/src/module/Versioning/src/Versioning/RepositoryManagerAwareTrait.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/module/Versioning/src/Versioning/RepositoryManagerInterface.php b/src/module/Versioning/src/Versioning/RepositoryManagerInterface.php index 2f0ff881..ca7b189a 100644 --- a/src/module/Versioning/src/Versioning/RepositoryManagerInterface.php +++ b/src/module/Versioning/src/Versioning/RepositoryManagerInterface.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/public/editor/geogebra-editor.html b/src/public/editor/geogebra-editor.html index c9cca4cf..916a9422 100644 --- a/src/public/editor/geogebra-editor.html +++ b/src/public/editor/geogebra-editor.html @@ -6,7 +6,7 @@
- - \ No newline at end of file + diff --git a/src/public/health.php b/src/public/health.php index 6d911b0d..67f0742a 100644 --- a/src/public/health.php +++ b/src/public/health.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/public/index.php b/src/public/index.php index 420b4835..5ab93e73 100644 --- a/src/public/index.php +++ b/src/public/index.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ diff --git a/src/test/AtheneTest/Bootstrap.php b/src/test/AtheneTest/Bootstrap.php index e6645bbb..df022635 100644 --- a/src/test/AtheneTest/Bootstrap.php +++ b/src/test/AtheneTest/Bootstrap.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,7 +16,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ @@ -36,6 +36,7 @@ class Bootstrap { protected static $serviceManager; + protected static $application; public static function getApplication() diff --git a/src/test/AtheneTest/TestCase/ControllerTestCase.php b/src/test/AtheneTest/TestCase/AbstractControllerTestCase.php similarity index 56% rename from src/test/AtheneTest/TestCase/ControllerTestCase.php rename to src/test/AtheneTest/TestCase/AbstractControllerTestCase.php index f10babdd..c50f5655 100644 --- a/src/test/AtheneTest/TestCase/ControllerTestCase.php +++ b/src/test/AtheneTest/TestCase/AbstractControllerTestCase.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,38 +16,33 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ namespace AtheneTest\TestCase; -abstract class ControllerTestCase extends ObjectManagerTestCase -{ +use Zend\Test\PHPUnit\Controller\AbstractHttpControllerTestCase; +/** + * @TODO please implement me if needed + * + * @package AtheneTest\TestCase + */ +abstract class AbstractControllerTestCase extends AbstractHttpControllerTestCase +{ /** * @var \Zend\Mvc\Controller\AbstractActionController */ protected $controller; - protected function prepareLanguageFromRequest($id, $code) + public function setUp() { - $languageManagerMock = $this->getMock('Language\Manager\LanguageManager'); - $languageServiceMock = $this->getMock('Language\Service\LanguageService'); - - $languageManagerMock->expects($this->atLeastOnce()) - ->method('getLanguageFromRequest') - ->will($this->returnValue($languageServiceMock)); - - $languageServiceMock->expects($this->any()) - ->method('getId') - ->will($this->returnValue($id)); - - $languageServiceMock->expects($this->any()) - ->method('getCode') - ->will($this->returnValue($code)); +// $this->setApplicationConfig( +// include __DIR__ . '/../../../config/application.config.php' +// ); - return $languageManagerMock; + parent::setUp(); } protected function preparePluginManager() @@ -56,7 +51,7 @@ protected function preparePluginManager() return $this->controller->getPluginManager(); } - $pluginManager = $this->getMock('Zend\Mvc\Controller\PluginManager'); + $pluginManager = $this->createMock('Zend\Mvc\Controller\PluginManager'); $this->controller->setPluginManager($pluginManager); return $pluginManager; diff --git a/src/test/AtheneTest/TestCase/Model.php b/src/test/AtheneTest/TestCase/AbstractGetterSetterTestCase.php similarity index 57% rename from src/test/AtheneTest/TestCase/Model.php rename to src/test/AtheneTest/TestCase/AbstractGetterSetterTestCase.php index ae35d070..2f6b321e 100644 --- a/src/test/AtheneTest/TestCase/Model.php +++ b/src/test/AtheneTest/TestCase/AbstractGetterSetterTestCase.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,19 +16,29 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ -namespace AtheneTest\TestCase; -use PHPUnit\Framework\TestCase; +namespace AtheneTest\TestCase; -abstract class Model extends TestCase +/** + * abstract class for auto-testing getter and setter methods. + * + * usage: extend this class, override getData() and call setObject($objectToTest) in your PHPUnit setUp() method; + * + * All get- and set-methods specified via getData() will be tested automatically. + * + * @package AtheneTest\TestCase + */ +abstract class AbstractGetterSetterTestCase extends \PHPUnit_Framework_TestCase { /** - * @return array + * example: for auto testing getTitle() and setTitle($title) return array("title" => "title") + * + * @return array data for get- and set-methods (key: name of get/set-method, value: value) */ abstract protected function getData(); @@ -44,34 +54,34 @@ protected function getObject() } /** - * @param mixed $reference + * @param mixed $objectToTest * @return $this */ - protected function setObject($object) + protected function setObject($objectToTest) { - $this->object = $object; + $this->object = $objectToTest; return $this; } + protected function inject() { - if (! is_array($this->data)) { + if (!is_array($this->data)) { $this->data = $this->getData(); } foreach ($this->data as $key => $value) { $method = 'set' . ucfirst($key); - if (method_exists($this->getObject(), $method)) { - $this->assertSame($this->getObject(), $this->getObject() - ->$method($value)); - } + $this->assertSame($this->getObject(), $this->getObject() + ->$method($value)); } return $this; } + public function testSetter() { - $object = $this->getObject(); + $this->object = $this->getObject(); $this->inject(); } @@ -81,12 +91,10 @@ public function testGetter() $this->inject(); foreach ($this->data as $key => $value) { $method = 'get' . ucfirst($key); - if (method_exists($object, $method)) { - if (is_object($object->$method())) { - $this->assertSame($value, $object->$method(), $method); - } else { - $this->assertEquals($value, $object->$method(), $method); - } + if (is_object($object->$method())) { + $this->assertSame($value, $object->$method(), $method); + } else { + $this->assertEquals($value, $object->$method(), $method); } } } diff --git a/src/test/AtheneTest/TestCase/AbstractManagerTestCase.php b/src/test/AtheneTest/TestCase/AbstractManagerTestCase.php new file mode 100644 index 00000000..1067d219 --- /dev/null +++ b/src/test/AtheneTest/TestCase/AbstractManagerTestCase.php @@ -0,0 +1,208 @@ +createMock(ClassResolverInterface::class); + } + + /** + * Creates a mocked version of Zend\ServiceManager\ServiceManager + */ + final protected function mockServiceLocator() + { + return $this->createMock(ServiceManager::class); + } + + /** + * Creates a mocked version of Doctrine\Common\Persistence\ObjectManager + */ + final protected function mockObjectManager() + { + return $this->createMock(ObjectManager::class); + } + + /** + * Creates a mocked version of ZfcRbac\Service\AuthorizationService + */ + final protected function mockAuthorizationService() + { + return $this->createMock(AuthorizationService::class); + } + + /** + * Creates a mocked version of Zend\EventManager\EventManagerInterface + */ + final protected function mockEventManager() + { + return $this->createMock(EventManagerInterface::class); + } + + /** + * Registers a new expectation for method 'find' on $objectManager + * + * @param \PHPUnit_Framework_MockObject_MockObject $objectManager Mocked ObjectManager + * @param string $repositoryName Name of the repository + * @param mixed $id The identity of the object to find + * @param mixed $expectedReturn Expected return value for method "find" + */ + final protected function prepareFind(\PHPUnit_Framework_MockObject_MockObject $objectManager, $repositoryName, $id, $expectedReturn) + { + $objectManager->expects($this->once()) + ->method('find') + ->with($this->equalTo($repositoryName), $this->equalTo($id)) + ->will($this->returnValue($expectedReturn)); + } + + /** + * Registers a new expectation for method 'resolveClassName' on $classResolver + * + * @param \PHPUnit_Framework_MockObject_MockObject $classResolver Mocked ClassResolver + * @param string $classNameToResolve Name of class to resolve + * @param string $expectedReturn Expected return value for method "resolveClassName" + */ + final protected function prepareResolveClass(\PHPUnit_Framework_MockObject_MockObject $classResolver, $classNameToResolve, $expectedReturn) + { + $classResolver->expects($this->once()) + ->method('resolveClassName') + ->with($this->equalTo($classNameToResolve)) + ->will($this->returnValue($expectedReturn)); + } + + /** + * Registers a new expectation for method 'resolve' on $classResolver + * + * @param \PHPUnit_Framework_MockObject_MockObject $classResolver Mocked ClassResolver + * @param string $classNameToResolve Name of class to resolve + * @param mixed $expectedReturn Expected return value for method "resolve" + */ + final protected function prepareResolve(\PHPUnit_Framework_MockObject_MockObject $classResolver, $classNameToResolve, $expectedReturn) + { + $classResolver->expects($this->once()) + ->method('resolve') + ->with($this->equalTo($classNameToResolve)) + ->will($this->returnValue($expectedReturn)); + } + + /** + * Registers a new expectation for method 'isGranted' on $authorizationService + * + * @param \PHPUnit_Framework_MockObject_MockObject $authorizationService The mocked AuthorizationService + * @param string $permission The permission to check + * @param mixed $context Context of the permission + * @param boolean $expectedReturn Granted or not + */ + final protected function prepareIsGranted(\PHPUnit_Framework_MockObject_MockObject $authorizationService, $permission, $context, $expectedReturn) + { + $authorizationService->expects($this->once()) + ->method('isGranted') + ->with($this->equalTo($permission), $this->equalTo($context)) + ->will($this->returnValue($expectedReturn)); + } + + + /** + * Registers a new expectation for method 'findBy' on a mocked Repository specified via $repository + * + * @param \PHPUnit_Framework_MockObject_MockObject $objectManager Mocked ObjectManager for the Repository + * @param string $repository Name of the Repository + * @param array $criteria Criteria for findBy + * @param mixed $expectedReturn Expected return value for findBy + */ + final protected function prepareFindBy($objectManager, $repository, array $criteria, $expectedReturn) + { + $repo = $this->mockEntityRepository(); + + $objectManager->expects($this->once()) + ->method('getRepository') + ->with($repository) + ->will($this->returnValue($repo)); + + $repo->expects($this->once()) + ->method('findBy') + ->with($criteria) + ->will($this->returnValue($expectedReturn)); + } + + /** + * Registers a new expectation for method 'findOneBy' on a mocked Repository specified via $repository + * + * @param \PHPUnit_Framework_MockObject_MockObject $objectManager Mocked ObjectManager for the Repository + * @param string $repository Name of the Repository + * @param array $criteria Criteria for findOneBy + * @param mixed $expectedReturn Expected return value for findOneBy + */ + final protected function prepareFindOneBy($objectManager, $repository, array $criteria, $expectedReturn) + { + $repo = $this->mockEntityRepository(); + + $objectManager->expects($this->once()) + ->method('getRepository') + ->with($repository) + ->will($this->returnValue($repo)); + + $repo->expects($this->once()) + ->method('findOneBy') + ->with($criteria) + ->will($this->returnValue($expectedReturn)); + } +} diff --git a/src/test/AtheneTest/TestCase/ObjectManagerTestCase.php b/src/test/AtheneTest/TestCase/AbstractObjectManagerTestCase.php similarity index 66% rename from src/test/AtheneTest/TestCase/ObjectManagerTestCase.php rename to src/test/AtheneTest/TestCase/AbstractObjectManagerTestCase.php index d1c14d62..657a54ce 100644 --- a/src/test/AtheneTest/TestCase/ObjectManagerTestCase.php +++ b/src/test/AtheneTest/TestCase/AbstractObjectManagerTestCase.php @@ -2,7 +2,7 @@ /** * This file is part of Athene2. * - * Copyright (c) 2013-2018 Serlo Education e.V. + * Copyright (c) 2013-2019 Serlo Education e.V. * * Licensed under the Apache License, Version 2.0 (the "License") * you may not use this file except in compliance with the License @@ -16,21 +16,29 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * @copyright Copyright (c) 2013-2018 Serlo Education e.V. + * @copyright Copyright (c) 2013-2019 Serlo Education e.V. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/serlo-org/athene2 for the canonical source repository */ namespace AtheneTest\TestCase; -use PHPUnit\Framework\TestCase; - -class ObjectManagerTestCase extends TestCase +abstract class AbstractObjectManagerTestCase extends \PHPUnit_Framework_TestCase { + /** + * Creates a mocked version of Doctrine\ORM\EntityManager + * + * @return \PHPUnit_Framework_MockObject_MockObject + */ final protected function mockEntityManager() { - return $this->getMock('Doctrine\ORM\EntityManager', array(), array(), '', false); + return $this->createMock('Doctrine\ORM\EntityManager'); } + /** + * Creates a mocked version of Doctrine\ORM\EntityRepository + * + * @return \PHPUnit_Framework_MockObject_MockObject + */ final protected function mockEntityRepository() { return $this->getMockBuilder('Doctrine\ORM\EntityRepository') diff --git a/src/test/AtheneTest/TestCase/ManagerTest.php b/src/test/AtheneTest/TestCase/ManagerTest.php deleted file mode 100644 index 7ec67a76..00000000 --- a/src/test/AtheneTest/TestCase/ManagerTest.php +++ /dev/null @@ -1,135 +0,0 @@ -manager; - } - - final public function setManager($manager) - { - $this->manager = $manager; - return $this; - } - - final protected function mockEntity($className, $id) - { - $entity = $this->getMock($className); - $entity->expects($this->any()) - ->method('getId') - ->will($this->returnValue(1)); - return $entity; - } - - final protected function prepareClassResolver(array $config) - { - if ($this->classResolver) { - return $this->classResolver; - } - - $this->classResolver = new ClassResolver($config); - $serviceLocator = $this->prepareServiceLocator(false); - - $this->getManager()->setClassResolver($this->classResolver); - $this->classResolver->setServiceLocator($serviceLocator); - - return $this->classResolver; - } - - final protected function prepareServiceLocator($inject = true) - { - if (! $this->serviceLocator) { - $this->serviceLocator = $this->getMock('Zend\ServiceManager\ServiceManager'); - } - - if ($inject) { - $this->getManager()->setServiceLocator($this->serviceLocator); - } - - return $this->serviceLocator; - } - - final protected function prepareObjectManager($inject = true) - { - if (! $this->objectManager) { - $this->objectManager = $this->mockEntityManager(); - } - if ($inject) { - $this->getManager()->setObjectManager($this->objectManager); - } - return $this->objectManager; - } - - final protected function prepareFind($repositoryName, $key, $return) - { - $objectManager = $this->prepareObjectManager(); - - $objectManager->expects($this->once()) - ->method('find') - ->with($repositoryName, $key) - ->will($this->returnValue($return)); - } - - final protected function prepareFindBy($repositoryName, array $criteria, $return) - { - $objectManager = $this->prepareObjectManager(); - $repository = $this->mockEntityRepository(); - - $objectManager->expects($this->once()) - ->method('getRepository') - ->with($repositoryName) - ->will($this->returnValue($repository)); - - $repository->expects($this->once()) - ->method('findBy') - ->with($criteria) - ->will($this->returnValue($return)); - } - - final protected function prepareFindOneBy($repositoryName, array $criteria, $return) - { - $objectManager = $this->prepareObjectManager(); - $repository = $this->mockEntityRepository(); - - $objectManager->expects($this->once()) - ->method('getRepository') - ->with($repositoryName) - ->will($this->returnValue($repository)); - - $repository->expects($this->once()) - ->method('findOneBy') - ->with($criteria) - ->will($this->returnValue($return)); - } -} diff --git a/src/test/AtheneTest/deprecated.xml b/src/test/AtheneTest/deprecated.xml deleted file mode 100644 index ab03b8ab..00000000 --- a/src/test/AtheneTest/deprecated.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - ../../module/User/test - - - ../../module/LearningResource/test - - - ../../module/Entity/test - - - ../../module/Link/test - - - ../../module/Blog/test - - - ../../module/Language/test - - - ../../module/Uuid/test - - - ../../module/Term/test - - - ../../module/Versioning/test - - - ../../module/Subject/test - - - ../../module/ClassResolver/test - - - ../../module/Common/test - - - ../../module/Token/test - - - ../../module/Page/test - - \ No newline at end of file diff --git a/src/test/math-puzzle/index.html b/src/test/math-puzzle/index.html index 0847aa55..e8707aa1 100644 --- a/src/test/math-puzzle/index.html +++ b/src/test/math-puzzle/index.html @@ -2,24 +2,23 @@ - diff --git a/yarn.lock b/yarn.lock index 60203bf0..7df1a236 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,12 @@ # yarn lockfile v1 +"@babel/runtime@^7.1.5": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.2.0.tgz#b03e42eeddf5898e00646e4c840fa07ba8dcad7f" + dependencies: + regenerator-runtime "^0.12.0" + "@cypress/listr-verbose-renderer@0.4.1": version "0.4.1" resolved "https://registry.yarnpkg.com/@cypress/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#a77492f4b11dcc7c446a34b3e28721afd33c642a" @@ -53,7 +59,7 @@ "@types/events@*": version "1.2.0" - resolved "https://registry.yarnpkg.com/@types/events/-/events-1.2.0.tgz#81a6731ce4df43619e5c8c945383b3e62a89ea86" + resolved "http://registry.npmjs.org/@types/events/-/events-1.2.0.tgz#81a6731ce4df43619e5c8c945383b3e62a89ea86" "@types/glob@^7.0.0": version "7.1.1" @@ -64,8 +70,8 @@ "@types/node" "*" "@types/jquery@*": - version "3.3.22" - resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.3.22.tgz#cde55dc8f83207dffd16205b05f97ce824581735" + version "3.3.23" + resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.3.23.tgz#e681aa2428e819edace9b30c91d987ef302c4e96" dependencies: "@types/sizzle" "*" @@ -86,8 +92,8 @@ resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-2.2.44.tgz#1d4a798e53f35212fd5ad4d04050620171cd5b5e" "@types/node@*", "@types/node@^10.0.0": - version "10.12.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.3.tgz#3918b73ceed484e58367be5acb79d1775239e393" + version "10.12.12" + resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.12.tgz#e15a9d034d9210f00320ef718a50c4a799417c47" "@types/sinon-chai@2.7.29": version "2.7.29" @@ -97,8 +103,8 @@ "@types/sinon" "*" "@types/sinon@*": - version "5.0.5" - resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-5.0.5.tgz#de600fa07eb1ec9d5f55669d5bac46a75fc88115" + version "5.0.7" + resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-5.0.7.tgz#0d9f89dd0c9988c4f1505a92a3a324ee7bdb18a6" "@types/sinon@4.0.0": version "4.0.0" @@ -119,7 +125,7 @@ ajv@^5.1.0: ansi-escapes@^1.0.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" + resolved "http://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" ansi-regex@^2.0.0: version "2.1.1" @@ -233,7 +239,7 @@ caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" -chalk@2.4.1, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.2: +chalk@2.4.1, chalk@^2.0.1, chalk@^2.3.2, chalk@^2.4.1: version "2.4.1" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" dependencies: @@ -243,7 +249,7 @@ chalk@2.4.1, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.2: chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + resolved "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" dependencies: ansi-styles "^2.2.1" escape-string-regexp "^1.0.2" @@ -310,10 +316,6 @@ common-tags@1.4.0: dependencies: babel-runtime "^6.18.0" -compare-versions@3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.4.0.tgz#e0747df5c9cb7f054d6d3dc3e1dbc444f9e92b26" - concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" @@ -327,14 +329,14 @@ concat-stream@1.6.0: typedarray "^0.0.6" core-js@^2.4.0: - version "2.5.7" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" + version "2.6.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.0.tgz#1e30793e9ee5782b307e37ffa22da0eacddd84d4" core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" -cross-spawn@^6.0.0, cross-spawn@^6.0.4: +cross-spawn@^6.0.0, cross-spawn@^6.0.5: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" dependencies: @@ -345,14 +347,14 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.4: which "^1.2.9" cypress-testing-library@^2.0.0: - version "2.3.3" - resolved "https://registry.yarnpkg.com/cypress-testing-library/-/cypress-testing-library-2.3.3.tgz#25926c0a431c101fc92c9d386985f75c83b323a0" + version "2.3.4" + resolved "https://registry.yarnpkg.com/cypress-testing-library/-/cypress-testing-library-2.3.4.tgz#1cd1567191fd863257cf6bfcf83cfd058e3c7b17" dependencies: - dom-testing-library "^3.8.0" + dom-testing-library "^3.12.4" cypress@^3.0.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-3.1.2.tgz#d1adbb48afecad54a84adf25f30536b400aa0f18" + version "3.1.3" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-3.1.3.tgz#f6253e2428c9f76e0541440b959b6282d1757467" dependencies: "@cypress/listr-verbose-renderer" "0.4.1" "@cypress/xvfb" "1.2.3" @@ -372,7 +374,6 @@ cypress@^3.0.0: check-more-types "2.24.0" commander "2.11.0" common-tags "1.4.0" - compare-versions "3.4.0" debug "3.1.0" execa "0.10.0" executable "4.1.1" @@ -438,17 +439,14 @@ diff@^3.1.0: version "3.5.0" resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" -dom-testing-library@^3.8.0: - version "3.12.3" - resolved "https://registry.yarnpkg.com/dom-testing-library/-/dom-testing-library-3.12.3.tgz#16c2fbd5198e175cb5499dabf9c64a893724015e" +dom-testing-library@^3.12.4: + version "3.13.0" + resolved "https://registry.yarnpkg.com/dom-testing-library/-/dom-testing-library-3.13.0.tgz#3d9c48db2bc4629f097571612d138bf2e8c42421" dependencies: + "@babel/runtime" "^7.1.5" "@sheerun/mutationobserver-shim" "^0.3.2" pretty-format "^23.6.0" - wait-for-expect "^1.0.0" - -duplexer@^0.1.1, duplexer@~0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" + wait-for-expect "^1.1.0" ecc-jsbn@~0.1.1: version "0.1.2" @@ -489,19 +487,6 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" -event-stream@~3.3.0: - version "3.3.6" - resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.6.tgz#cac1230890e07e73ec9cacd038f60a5b66173eef" - dependencies: - duplexer "^0.1.1" - flatmap-stream "^0.1.0" - from "^0.1.7" - map-stream "0.0.7" - pause-stream "^0.0.11" - split "^1.0.1" - stream-combiner "^0.2.2" - through "^2.3.8" - execa@0.10.0: version "0.10.0" resolved "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz#ff456a8f53f90f8eccc71a96d11bdfc7f082cb50" @@ -547,7 +532,7 @@ extsprintf@^1.2.0: fast-deep-equal@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" + resolved "http://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" fast-json-stable-stringify@^2.0.0: version "2.0.0" @@ -578,10 +563,6 @@ find-up@^2.0.0: dependencies: locate-path "^2.0.0" -flatmap-stream@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/flatmap-stream/-/flatmap-stream-0.1.1.tgz#d34f39ef3b9aa5a2fc225016bd3adf28ac5ae6ea" - forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -594,10 +575,6 @@ form-data@~2.3.1: combined-stream "^1.0.6" mime-types "^2.1.12" -from@^0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" - fs-extra@4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.1.tgz#7fc0c6c8957f983f57f306a24e5b9ddd8d0dd880" @@ -616,7 +593,7 @@ function-bind@^1.0.2, function-bind@^1.1.1: get-stream@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + resolved "http://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" getos@3.1.0: version "3.1.0" @@ -740,7 +717,7 @@ is-arrayish@^0.2.1: is-builtin-module@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + resolved "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" dependencies: builtin-modules "^1.0.0" @@ -750,7 +727,7 @@ is-callable@^1.1.3, is-callable@^1.1.4: is-ci@1.0.10: version "1.0.10" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" + resolved "http://registry.npmjs.org/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" dependencies: ci-info "^1.0.0" @@ -960,10 +937,6 @@ make-error@^1.1.1: version "1.3.5" resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" -map-stream@0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.0.7.tgz#8a1f07896d82b10926bd3744a2420009f88974a8" - memorystream@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" @@ -986,21 +959,21 @@ minimatch@^3.0.4: minimist@0.0.8: version "0.0.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" minimist@1.2.0, minimist@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + resolved "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" mkdirp@0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" + resolved "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" dependencies: minimist "0.0.8" mkdirp@^0.5.1: version "0.5.1" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + resolved "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" dependencies: minimist "0.0.8" @@ -1030,15 +1003,15 @@ normalize-package-data@^2.3.2: validate-npm-package-license "^3.0.1" npm-run-all@^4.0.0: - version "4.1.3" - resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.3.tgz#49f15b55a66bb4101664ce270cb18e7103f8f185" + version "4.1.5" + resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" dependencies: - ansi-styles "^3.2.0" - chalk "^2.1.0" - cross-spawn "^6.0.4" + ansi-styles "^3.2.1" + chalk "^2.4.1" + cross-spawn "^6.0.5" memorystream "^0.3.1" minimatch "^3.0.4" - ps-tree "^1.1.0" + pidtree "^0.3.0" read-pkg "^3.0.0" shell-quote "^1.6.1" string.prototype.padend "^3.0.0" @@ -1073,11 +1046,11 @@ once@^1.3.0: onetime@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" + resolved "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" ora@^0.2.3: version "0.2.3" - resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" + resolved "http://registry.npmjs.org/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" dependencies: chalk "^1.1.1" cli-cursor "^1.0.2" @@ -1086,11 +1059,11 @@ ora@^0.2.3: os-homedir@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + resolved "http://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" os-tmpdir@~1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + resolved "http://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" p-finally@^1.0.0: version "1.0.0" @@ -1129,7 +1102,7 @@ path-exists@^3.0.0: path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + resolved "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" path-is-inside@^1.0.1: version "1.0.2" @@ -1145,12 +1118,6 @@ path-type@^3.0.0: dependencies: pify "^3.0.0" -pause-stream@^0.0.11: - version "0.0.11" - resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" - dependencies: - through "~2.3" - pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" @@ -1159,9 +1126,13 @@ performance-now@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" +pidtree@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.0.tgz#f6fada10fccc9f99bf50e90d0b23d72c9ebc2e6b" + pify@^2.2.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + resolved "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" pify@^3.0.0: version "3.0.0" @@ -1175,8 +1146,8 @@ pkg-conf@^2.1.0: load-json-file "^4.0.0" prettier@^1.0.0: - version "1.15.1" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.1.tgz#06c67106afb1b40e74b002353b2079cc7e0e67bf" + version "1.15.3" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.3.tgz#1feaac5bdd181237b54dbe65d874e02a1472786a" pretty-format@^23.6.0: version "23.6.0" @@ -1189,12 +1160,6 @@ process-nextick-args@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" -ps-tree@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.1.0.tgz#b421b24140d6203f1ed3c76996b4427b08e8c014" - dependencies: - event-stream "~3.3.0" - punycode@1.3.2: version "1.3.2" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" @@ -1225,7 +1190,7 @@ read-pkg@^3.0.0: readable-stream@^2.2.2: version "2.3.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" + resolved "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" dependencies: core-util-is "~1.0.0" inherits "~2.0.3" @@ -1239,6 +1204,10 @@ regenerator-runtime@^0.11.0: version "0.11.1" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" +regenerator-runtime@^0.12.0: + version "0.12.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz#fa1a71544764c036f8c49b13a08b2594c9f8a0de" + repeating@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" @@ -1334,7 +1303,7 @@ signale@^1.3.0: slice-ansi@0.0.4: version "0.0.4" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + resolved "http://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" source-map-support@^0.5.6: version "0.5.9" @@ -1348,8 +1317,8 @@ source-map@^0.6.0: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" spdx-correct@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.2.tgz#19bb409e91b47b1ad54159243f7312a858db3c2e" + version "3.1.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" dependencies: spdx-expression-parse "^3.0.0" spdx-license-ids "^3.0.0" @@ -1369,12 +1338,6 @@ spdx-license-ids@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz#a59efc09784c2a5bada13cfeaf5c75dd214044d2" -split@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" - dependencies: - through "2" - sshpk@^1.7.0: version "1.15.2" resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.15.2.tgz#c946d6bd9b1a39d0e8635763f5242d6ed6dcb629" @@ -1389,13 +1352,6 @@ sshpk@^1.7.0: safer-buffer "^2.0.2" tweetnacl "~0.14.0" -stream-combiner@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.2.2.tgz#aec8cbac177b56b6f4fa479ced8c1912cee52858" - dependencies: - duplexer "~0.1.1" - through "~2.3.4" - stream-to-observable@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" @@ -1418,13 +1374,13 @@ string.prototype.padend@^3.0.0: string_decoder@~1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + resolved "http://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" dependencies: safe-buffer "~5.1.0" strip-ansi@^3.0.0, strip-ansi@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + resolved "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" dependencies: ansi-regex "^2.0.0" @@ -1434,7 +1390,7 @@ strip-bom@^3.0.0: strip-eof@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + resolved "http://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" supports-color@5.1.0: version "5.1.0" @@ -1460,10 +1416,6 @@ throttleit@~0.0.2: version "0.0.2" resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" -through@2, through@^2.3.8, through@~2.3, through@~2.3.4: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - tmp@0.0.31: version "0.0.31" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" @@ -1472,7 +1424,7 @@ tmp@0.0.31: tough-cookie@~2.3.3: version "2.3.4" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" + resolved "http://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" dependencies: punycode "^1.4.1" @@ -1504,8 +1456,8 @@ typedarray@^0.0.6: resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" typescript@^3.0.0: - version "3.1.6" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.1.6.tgz#b6543a83cfc8c2befb3f4c8fba6896f5b0c9be68" + version "3.2.1" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.2.1.tgz#0b7a04b8cf3868188de914d9568bd030f0c56192" universalify@^0.1.0: version "0.1.2" @@ -1541,9 +1493,9 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -wait-for-expect@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/wait-for-expect/-/wait-for-expect-1.0.1.tgz#73ab346ed56ed2ef66c380a59fd623755ceac0ce" +wait-for-expect@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/wait-for-expect/-/wait-for-expect-1.1.0.tgz#6607375c3f79d32add35cd2c87ce13f351a3d453" which@^1.2.9: version "1.3.1"