diff --git a/src/AbstractSeatPlugin.php b/src/AbstractSeatPlugin.php index d430d10e..d2241313 100644 --- a/src/AbstractSeatPlugin.php +++ b/src/AbstractSeatPlugin.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -37,6 +37,7 @@ abstract class AbstractSeatPlugin extends ServiceProvider * Return an URI to a CHANGELOG.md file or an API path which will be providing changelog history. * * @example https://raw.githubusercontent.com/eveseat/seat/master/LICENSE + * * @exemple https://api.github.com/repos/eveseat/web/releases * * @return string|null diff --git a/src/Commands/Seat/Admin/Email.php b/src/Commands/Seat/Admin/Email.php index bd032968..67dbb761 100644 --- a/src/Commands/Seat/Admin/Email.php +++ b/src/Commands/Seat/Admin/Email.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Commands/Seat/Version.php b/src/Commands/Seat/Version.php index 9b05c72b..996f5d57 100644 --- a/src/Commands/Seat/Version.php +++ b/src/Commands/Seat/Version.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Config/services.config.php b/src/Config/services.config.php index a4f02b1e..1a9082e7 100644 --- a/src/Config/services.config.php +++ b/src/Config/services.config.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Exceptions/EveImageException.php b/src/Exceptions/EveImageException.php index fa244e95..1642e7ef 100644 --- a/src/Exceptions/EveImageException.php +++ b/src/Exceptions/EveImageException.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Exceptions/FilterException.php b/src/Exceptions/FilterException.php index e849b1f7..8e75471c 100644 --- a/src/Exceptions/FilterException.php +++ b/src/Exceptions/FilterException.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Exceptions/SettingException.php b/src/Exceptions/SettingException.php index 70d7205a..591a85b3 100644 --- a/src/Exceptions/SettingException.php +++ b/src/Exceptions/SettingException.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Helpers/AnalyticsContainer.php b/src/Helpers/AnalyticsContainer.php index 1cd431e4..7fa5ad25 100644 --- a/src/Helpers/AnalyticsContainer.php +++ b/src/Helpers/AnalyticsContainer.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -93,7 +93,7 @@ public function offsetUnset($offset) } /** - * @param $key + * @param $key * @return mixed */ public function __get($key) @@ -103,8 +103,8 @@ public function __get($key) } /** - * @param $key - * @param $val + * @param $key + * @param $val */ public function __set($key, $val) { @@ -113,8 +113,8 @@ public function __set($key, $val) } /** - * @param $key - * @param $val + * @param $key + * @param $val * @return $this */ public function set($key, $val) diff --git a/src/Helpers/helpers.php b/src/Helpers/helpers.php index 83af546d..fd87843b 100644 --- a/src/Helpers/helpers.php +++ b/src/Helpers/helpers.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -44,7 +44,7 @@ function carbon($data = null) * Return the time difference from now in a * format that humans can read. * - * @param $time + * @param $time * @return string */ function human_diff($time) @@ -84,8 +84,8 @@ function img(string $type, string $variation, ?int $id, int $size, array $attr = /** * Return a formatted number. * - * @param $number - * @param $dec + * @param $number + * @param $dec * @return string * * @throws \Seat\Services\Exceptions\SettingException @@ -104,7 +104,7 @@ function number($number, $dec = 2) * Return a shortened number with a suffix. * Depends on php5-intl. * - * @param $number + * @param $number * @return bool|string */ function number_metric($number) @@ -157,7 +157,7 @@ function clean_ccp_html($html, $acceptable_tags = '
') * Attempt to 'thread' evemails based on the separator * that is automatically added using the eve client. * - * @param $message + * @param $message * @return \Illuminate\Support\Collection */ function evemail_threads($message) diff --git a/src/Image/Eve.php b/src/Image/Eve.php index 04df18d4..c3453f85 100644 --- a/src/Image/Eve.php +++ b/src/Image/Eve.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -136,7 +136,7 @@ public function __construct(string $type, string $variation, ?int $id, int $size * Attempt to detect the image type based on the * range in which an integer falls. * - * @param $id + * @param $id * @return string */ public function detect_type($id) @@ -213,7 +213,7 @@ public function html() } /** - * @param $size + * @param $size * @return string */ public function url($size) diff --git a/src/Jobs/Analytics.php b/src/Jobs/Analytics.php index df3bdcfd..3a26d717 100644 --- a/src/Jobs/Analytics.php +++ b/src/Jobs/Analytics.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Models/GlobalSetting.php b/src/Models/GlobalSetting.php index 98a22efb..0fe4849c 100644 --- a/src/Models/GlobalSetting.php +++ b/src/Models/GlobalSetting.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Models/Note.php b/src/Models/Note.php index 5493ba6d..b348420a 100644 --- a/src/Models/Note.php +++ b/src/Models/Note.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Models/Schedule.php b/src/Models/Schedule.php index 9efcd5eb..8a780b6c 100644 --- a/src/Models/Schedule.php +++ b/src/Models/Schedule.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Models/UserSetting.php b/src/Models/UserSetting.php index cdc4ddbf..9a6a28cd 100644 --- a/src/Models/UserSetting.php +++ b/src/Models/UserSetting.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ReportParser/Elements/Element.php b/src/ReportParser/Elements/Element.php index 1cb209f3..e9c1b6bb 100644 --- a/src/ReportParser/Elements/Element.php +++ b/src/ReportParser/Elements/Element.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -47,7 +47,7 @@ public function __construct(array $fields) } /** - * @param $field + * @param $field */ public function add($field) { @@ -55,7 +55,7 @@ public function add($field) } /** - * @param $field + * @param $field */ public function remove($field) { @@ -81,7 +81,7 @@ public function isEmpty(): bool } /** - * @param $name + * @param $name * @return mixed * * @throws \ErrorException diff --git a/src/ReportParser/Elements/Group.php b/src/ReportParser/Elements/Group.php index dda728a1..253fc3e8 100644 --- a/src/ReportParser/Elements/Group.php +++ b/src/ReportParser/Elements/Group.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ReportParser/Exceptions/EmptyReportException.php b/src/ReportParser/Exceptions/EmptyReportException.php index 100c803f..58ec39b8 100644 --- a/src/ReportParser/Exceptions/EmptyReportException.php +++ b/src/ReportParser/Exceptions/EmptyReportException.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ReportParser/Exceptions/InvalidReportElementException.php b/src/ReportParser/Exceptions/InvalidReportElementException.php index 162e9686..93fae489 100644 --- a/src/ReportParser/Exceptions/InvalidReportElementException.php +++ b/src/ReportParser/Exceptions/InvalidReportElementException.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ReportParser/Exceptions/InvalidReportException.php b/src/ReportParser/Exceptions/InvalidReportException.php index 730525b5..2fde5129 100644 --- a/src/ReportParser/Exceptions/InvalidReportException.php +++ b/src/ReportParser/Exceptions/InvalidReportException.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ReportParser/Exceptions/InvalidReportGroupException.php b/src/ReportParser/Exceptions/InvalidReportGroupException.php index cd5f5407..6af50f9f 100644 --- a/src/ReportParser/Exceptions/InvalidReportGroupException.php +++ b/src/ReportParser/Exceptions/InvalidReportGroupException.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ReportParser/Exceptions/MissingReportGroupException.php b/src/ReportParser/Exceptions/MissingReportGroupException.php index 147681c2..89cbd8c5 100644 --- a/src/ReportParser/Exceptions/MissingReportGroupException.php +++ b/src/ReportParser/Exceptions/MissingReportGroupException.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ReportParser/Exceptions/MissingReportHeaderException.php b/src/ReportParser/Exceptions/MissingReportHeaderException.php index 5b2710f6..a7999e4e 100644 --- a/src/ReportParser/Exceptions/MissingReportHeaderException.php +++ b/src/ReportParser/Exceptions/MissingReportHeaderException.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ReportParser/Parsers/MoonReport.php b/src/ReportParser/Parsers/MoonReport.php index 2f9826ce..f692e5de 100644 --- a/src/ReportParser/Parsers/MoonReport.php +++ b/src/ReportParser/Parsers/MoonReport.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ReportParser/ReportParser.php b/src/ReportParser/ReportParser.php index 3fb61a96..017a097e 100644 --- a/src/ReportParser/ReportParser.php +++ b/src/ReportParser/ReportParser.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/ServicesServiceProvider.php b/src/ServicesServiceProvider.php index 4e9746f8..e9450ade 100644 --- a/src/ServicesServiceProvider.php +++ b/src/ServicesServiceProvider.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Settings/Profile.php b/src/Settings/Profile.php index 32b460c2..1b0d5465 100644 --- a/src/Settings/Profile.php +++ b/src/Settings/Profile.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Settings/Seat.php b/src/Settings/Seat.php index c4a5b5b5..7f4904db 100644 --- a/src/Settings/Seat.php +++ b/src/Settings/Seat.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Settings/Settings.php b/src/Settings/Settings.php index 9a32e8e2..b2b9bc3b 100644 --- a/src/Settings/Settings.php +++ b/src/Settings/Settings.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -106,8 +106,8 @@ public static function get($name, $for_id = null) /** * Determine the unique prefix for the key by name. * - * @param $name - * @param $for_id + * @param $name + * @param $for_id * @return string * * @throws \Seat\Services\Exceptions\SettingException @@ -135,7 +135,7 @@ public static function get_key_prefix($name, $for_id = null) * dont have an already logged in session, well then * we make the $for_id null. * - * @param $for_id + * @param $for_id * @return int|null */ public static function get_affected_id($for_id) diff --git a/src/Socialite/EveOnline/Checker/Claim/AzpChecker.php b/src/Socialite/EveOnline/Checker/Claim/AzpChecker.php index 1d543237..e0926949 100644 --- a/src/Socialite/EveOnline/Checker/Claim/AzpChecker.php +++ b/src/Socialite/EveOnline/Checker/Claim/AzpChecker.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Socialite/EveOnline/Checker/Claim/NameChecker.php b/src/Socialite/EveOnline/Checker/Claim/NameChecker.php index 8b009834..e83e6b4a 100644 --- a/src/Socialite/EveOnline/Checker/Claim/NameChecker.php +++ b/src/Socialite/EveOnline/Checker/Claim/NameChecker.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Socialite/EveOnline/Checker/Claim/OwnerChecker.php b/src/Socialite/EveOnline/Checker/Claim/OwnerChecker.php index 629235d2..71048d05 100644 --- a/src/Socialite/EveOnline/Checker/Claim/OwnerChecker.php +++ b/src/Socialite/EveOnline/Checker/Claim/OwnerChecker.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Socialite/EveOnline/Checker/Claim/ScpChecker.php b/src/Socialite/EveOnline/Checker/Claim/ScpChecker.php index 1deabb9e..a1108cf6 100644 --- a/src/Socialite/EveOnline/Checker/Claim/ScpChecker.php +++ b/src/Socialite/EveOnline/Checker/Claim/ScpChecker.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Socialite/EveOnline/Checker/Claim/SubEveCharacterChecker.php b/src/Socialite/EveOnline/Checker/Claim/SubEveCharacterChecker.php index 3a74b75d..2124d3a9 100644 --- a/src/Socialite/EveOnline/Checker/Claim/SubEveCharacterChecker.php +++ b/src/Socialite/EveOnline/Checker/Claim/SubEveCharacterChecker.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Socialite/EveOnline/Checker/Header/TypeChecker.php b/src/Socialite/EveOnline/Checker/Header/TypeChecker.php index 42f57449..5c8e23c6 100644 --- a/src/Socialite/EveOnline/Checker/Header/TypeChecker.php +++ b/src/Socialite/EveOnline/Checker/Header/TypeChecker.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Socialite/EveOnline/EveOnlineExtendSocialite.php b/src/Socialite/EveOnline/EveOnlineExtendSocialite.php index 1d1612fe..15cbeb73 100644 --- a/src/Socialite/EveOnline/EveOnlineExtendSocialite.php +++ b/src/Socialite/EveOnline/EveOnlineExtendSocialite.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Traits/NotableTrait.php b/src/Traits/NotableTrait.php index c690c689..fe7afb80 100644 --- a/src/Traits/NotableTrait.php +++ b/src/Traits/NotableTrait.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/Traits/VersionsManagementTrait.php b/src/Traits/VersionsManagementTrait.php index 1886c1f0..92abc522 100644 --- a/src/Traits/VersionsManagementTrait.php +++ b/src/Traits/VersionsManagementTrait.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2015_10_30_140512_create_eve_notification_types_table.php b/src/database/migrations/2015_10_30_140512_create_eve_notification_types_table.php index 471cf8f2..2e6a7930 100644 --- a/src/database/migrations/2015_10_30_140512_create_eve_notification_types_table.php +++ b/src/database/migrations/2015_10_30_140512_create_eve_notification_types_table.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2015_11_28_053529_create_user_settings_table.php b/src/database/migrations/2015_11_28_053529_create_user_settings_table.php index 3389e2c1..f81de939 100644 --- a/src/database/migrations/2015_11_28_053529_create_user_settings_table.php +++ b/src/database/migrations/2015_11_28_053529_create_user_settings_table.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2015_11_28_071315_create_global_settings_table.php b/src/database/migrations/2015_11_28_071315_create_global_settings_table.php index df0aa8d6..ca14823a 100644 --- a/src/database/migrations/2015_11_28_071315_create_global_settings_table.php +++ b/src/database/migrations/2015_11_28_071315_create_global_settings_table.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2015_12_01_201414_create_schedules_table.php b/src/database/migrations/2015_12_01_201414_create_schedules_table.php index ba0e46e7..65f2e034 100644 --- a/src/database/migrations/2015_12_01_201414_create_schedules_table.php +++ b/src/database/migrations/2015_12_01_201414_create_schedules_table.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2016_11_19_065120_create_notes_table.php b/src/database/migrations/2016_11_19_065120_create_notes_table.php index c8bd6059..fe40014c 100644 --- a/src/database/migrations/2016_11_19_065120_create_notes_table.php +++ b/src/database/migrations/2016_11_19_065120_create_notes_table.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2016_11_29_195441_convert_value_from_string_to_text.php b/src/database/migrations/2016_11_29_195441_convert_value_from_string_to_text.php index 4ead3602..fa8532d3 100644 --- a/src/database/migrations/2016_11_29_195441_convert_value_from_string_to_text.php +++ b/src/database/migrations/2016_11_29_195441_convert_value_from_string_to_text.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2018_05_18_185619_move_settings_to_groups.php b/src/database/migrations/2018_05_18_185619_move_settings_to_groups.php index 1144e672..a8fe69ba 100644 --- a/src/database/migrations/2018_05_18_185619_move_settings_to_groups.php +++ b/src/database/migrations/2018_05_18_185619_move_settings_to_groups.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2018_09_12_181511_create_historical_prices_table.php b/src/database/migrations/2018_09_12_181511_create_historical_prices_table.php index 4ef3415d..3d23d508 100644 --- a/src/database/migrations/2018_09_12_181511_create_historical_prices_table.php +++ b/src/database/migrations/2018_09_12_181511_create_historical_prices_table.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2018_10_05_064533_alter_historical_prices_columns.php b/src/database/migrations/2018_10_05_064533_alter_historical_prices_columns.php index 90e8bc41..7503c6ee 100644 --- a/src/database/migrations/2018_10_05_064533_alter_historical_prices_columns.php +++ b/src/database/migrations/2018_10_05_064533_alter_historical_prices_columns.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2020_04_27_231132_convert_sso_scopes_to_list.php b/src/database/migrations/2020_04_27_231132_convert_sso_scopes_to_list.php index c0cb8ecf..0fdc096a 100644 --- a/src/database/migrations/2020_04_27_231132_convert_sso_scopes_to_list.php +++ b/src/database/migrations/2020_04_27_231132_convert_sso_scopes_to_list.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2020_05_10_101541_drop_historical_prices.php b/src/database/migrations/2020_05_10_101541_drop_historical_prices.php index 73e5ba9d..aa9f13a1 100644 --- a/src/database/migrations/2020_05_10_101541_drop_historical_prices.php +++ b/src/database/migrations/2020_05_10_101541_drop_historical_prices.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database/migrations/2021_01_02_120325_convert_chinese_language_value.php b/src/database/migrations/2021_01_02_120325_convert_chinese_language_value.php index 4a984191..051ae616 100644 --- a/src/database/migrations/2021_01_02_120325_convert_chinese_language_value.php +++ b/src/database/migrations/2021_01_02_120325_convert_chinese_language_value.php @@ -3,7 +3,7 @@ /* * This file is part of SeAT * - * Copyright (C) 2015 to 2022 Leon Jacobs + * Copyright (C) 2015 to present Leon Jacobs * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by