PluginProbe
ElasticPress / 5.3.5
ElasticPress v5.3.5
5.3.5 5.3.4 3.6.5 3.6.6 4.0.0 4.0.1 4.1.0 4.2.0 4.2.1 4.2.2 4.3.0 4.3.1 4.4.0 4.4.1 4.5.0 4.5.1 4.5.2 4.6.0 4.6.1 4.7.0 4.7.1 4.7.2 5.0.0 5.0.1 5.0.2 All 108 releases
← All changes | includes/classes/Indexable/Comment/SyncManager.php +3 -5 4.7.15.3.5 View file →
@@ -7,11 +7,10 @@
7 7 */
8 8
9 9 namespace ElasticPress\Indexable\Comment;
10 10
11 -use ElasticPress\Indexables as Indexables;
12 -use ElasticPress\Elasticsearch as Elasticsearch;
13 -use ElasticPress\SyncManager as SyncManagerAbstract;
11 +use ElasticPress\Elasticsearch;
12 +use ElasticPress\Indexables;
14 13
15 14 if ( ! defined( 'ABSPATH' ) ) {
16 15 exit; // Exit if accessed directly.
17 16 }
@@ -18,9 +17,9 @@
18 17
19 18 /**
20 19 * Sync manager class
21 20 */
22 -class SyncManager extends SyncManagerAbstract {
21 +class SyncManager extends \ElasticPress\SyncManager {
23 22 /**
24 23 * Indexable slug
25 24 *
26 25 * @since 4.7.0
@@ -227,6 +226,5 @@
227 226 }
228 227 }
229 228 }
230 229 }
231 -
232 230 }