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...'); - } -}