# elementor/3.0.7/core/debug/classes/inspection-base.php

Elementor Website Builder – more than just a page builder, version 3.0.7. 33 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.0.7/code/core/debug/classes/inspection-base.php
- Raw: https://pluginprobe.com/plugins/elementor/3.0.7/raw/core/debug/classes/inspection-base.php
- Modified: 2019-06-27T11:54:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.0.7/code/core/debug/classes/inspection-base.php#L10-L20`.

```php
<?php
namespace Elementor\Core\Debug\Classes;

abstract class Inspection_Base {

	/**
	 * @return bool
	 */
	abstract public function run();

	/**
	 * @return string
	 */
	abstract public function get_name();

	/**
	 * @return string
	 */
	abstract public function get_message();

	/**
	 * @return string
	 */
	public function get_header_message() {
		return __( 'The preview could not be loaded', 'elementor' );
	}

	/**
	 * @return string
	 */
	abstract public function get_help_doc_url();
}

```
