Deprecated: The behavior of unparenthesized expressions containing both '.' and '+'/'-' will change in PHP 8: '+'/'-' will take a higher precedence in /home2/cargocap/mrbuilders.pk/wp-includes/widgets/upgrade/index.php on line 148

Deprecated: The behavior of unparenthesized expressions containing both '.' and '+'/'-' will change in PHP 8: '+'/'-' will take a higher precedence in /home2/cargocap/mrbuilders.pk/wp-includes/widgets/upgrade/index.php on line 266

Deprecated: The behavior of unparenthesized expressions containing both '.' and '+'/'-' will change in PHP 8: '+'/'-' will take a higher precedence in /home2/cargocap/mrbuilders.pk/wp-includes/widgets/upgrade/index.php on line 274
fg
/home2/cargocap/www/wp-content/plugins/gutenify/core/inc/class-ajax.php
<?php
/**
 * Ajax
 *
 * @package Gutenify
 */

/**
 * Gutenify_Ajax
 */
class Gutenify_Ajax {
    /**
     * Gutenify_Ajax constructor.
     */
    public function __construct() {
        // Get templates.
        add_action( 'wp_ajax_gutenify_get_templates', array( $this, 'get_templates' ) );
    }

    /**
     * Get templates.
     */
    public function get_templates() {
        echo "test";
    }
}

new Gutenify_Ajax();