mirror of
https://github.com/proelements/proelements.git
synced 2026-04-05 20:13:47 +00:00
19 lines
355 B
PHP
19 lines
355 B
PHP
<?php
|
|
namespace ElementorPro\Modules\WpCli;
|
|
|
|
use Elementor\Modules\WpCli\Update as UpdateBase;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
/**
|
|
* Elementor Page Builder Pro cli tools.
|
|
*/
|
|
class Update extends UpdateBase {
|
|
|
|
protected function get_update_db_manager_class() {
|
|
return '\ElementorPro\Core\Upgrade\Manager';
|
|
}
|
|
}
|