Fix a potential autoloading failure due to not using a FQN in class_exists()

Fixes #557
This commit is contained in:
Yahnis Elsts 2024-01-20 21:07:24 +02:00
parent 0a8fd4ad3a
commit c1bf33e770
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<?php
namespace YahnisElsts\PluginUpdateChecker\v5p3\Plugin;
if ( !class_exists('Ui', false) ):
if ( !class_exists(Ui::class, false) ):
/**
* Additional UI elements for plugins.
*/