From 244edbbcacbd7d2202ba2140fa1411fc412b4116 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Tue, 21 May 2024 14:59:54 +0300 Subject: [PATCH] cleanup --- .../Migrations/V8_2_2/AfterUpgrade.php | 45 ------------------- 1 file changed, 45 deletions(-) delete mode 100644 application/Espo/Core/Upgrades/Migrations/V8_2_2/AfterUpgrade.php diff --git a/application/Espo/Core/Upgrades/Migrations/V8_2_2/AfterUpgrade.php b/application/Espo/Core/Upgrades/Migrations/V8_2_2/AfterUpgrade.php deleted file mode 100644 index 8f4e775906..0000000000 --- a/application/Espo/Core/Upgrades/Migrations/V8_2_2/AfterUpgrade.php +++ /dev/null @@ -1,45 +0,0 @@ -. - * - * The interactive user interfaces in modified source and object code versions - * of this program must display Appropriate Legal Notices, as required under - * Section 5 of the GNU Affero General Public License version 3. - * - * In accordance with Section 7(b) of the GNU Affero General Public License version 3, - * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. - ************************************************************************/ - -namespace Espo\Core\Upgrades\Migrations\V8_2_2; - -use Espo\Core\Upgrades\Migration\Script; -use Espo\Core\Utils\Log; - -class AfterUpgrade implements Script -{ - public function __construct( - private Log $log - ) {} - - public function run(): void - { - $this->log->warning('Upgrade script test...'); - } -}