# depicter/1.3.2/modules/wpemerge-app-core/src/Application/ApplicationMixin.php

Depicter — Popup &amp; Slider Builder, version 1.3.2. 33 lines.

- Page: https://pluginprobe.com/plugins/depicter/1.3.2/code/modules/wpemerge-app-core/src/Application/ApplicationMixin.php
- Raw: https://pluginprobe.com/plugins/depicter/1.3.2/raw/modules/wpemerge-app-core/src/Application/ApplicationMixin.php
- Modified: 2022-06-01T06:26:20+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/depicter/1.3.2/code/modules/wpemerge-app-core/src/Application/ApplicationMixin.php#L10-L20`.

```php
<?php
/**
 * @package   WPEmergeAppCore
 * @author    Atanas Angelov <hi@atanas.dev>
 * @copyright 2017-2020 Atanas Angelov
 * @license   https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0
 * @link      https://wpemerge.com/
 */

namespace WPEmergeAppCore\Application;

use WPEmergeAppCore\AppCore\AppCore;

/**
 * Can be applied to your App class via a "@mixin" annotation for better IDE support.
 * This class is not meant to be used in any other capacity.
 *
 * @codeCoverageIgnore
 */
final class ApplicationMixin {
	/**
	 * Prevent class instantiation.
	 */
	private function __construct() {}

	/**
	 * Get the Theme service instance.
	 *
	 * @return AppCore
	 */
	public static function core() {}
}

```
