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

Parse.ly, version 3.2.1. 26 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/3.2.1/code/src/Integrations/class-integration.php
- Raw: https://pluginprobe.com/plugins/wp-parsely/3.2.1/raw/src/Integrations/class-integration.php
- Modified: 2021-12-15T06:25:52+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.2.1/code/src/Integrations/class-integration.php#L10-L20`.

```php
<?php
/**
 * Integration interface
 *
 * @package Parsely\Integrations
 * @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 {
	/**
	 * Apply the hooks that integrate the plugin or theme with the Parse.ly plugin.
	 *
	 * @since 2.6.0
	 */
	public function integrate(): void;
}

```
