# wp-parsely/3.3.2/src/Integrations/class-integration.php

Parse.ly, version 3.3.2. 27 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/3.3.2/code/src/Integrations/class-integration.php
- Raw: https://pluginprobe.com/plugins/wp-parsely/3.3.2/raw/src/Integrations/class-integration.php
- Modified: 2022-05-02T10:45:56+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/wp-parsely/3.3.2/code/src/Integrations/class-integration.php#L10-L20`.

```php
<?php
/**
 * Integrations: Integration interface
 *
 * @package Parsely
 * @since   2.6.0
 */

declare(strict_types=1);

namespace Parsely\Integrations;

/**
 * Integration classes are expected to implement this interface.
 *
 * @since 2.6.0
 */
interface Integration {
	/**
	 * Applies the hooks that integrate the plugin or theme with the Parse.ly
	 * plugin.
	 *
	 * @since 2.6.0
	 */
	public function integrate(): void;
}

```
