Completed
Push — 125-fix/improve-preview ( be8b7d...ab5155 )
by Maria Daniel Deepak
07:24 queued 03:14
created

Loadie

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 9
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php namespace EmailLog\Core;
2
3
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
4
5
/**
6
 * EmailLog Loadie interface.
7
 * The `load()` method of this interface will be called by Email Log.
8
 * Even though Loadie is not an actual word it sound more logical than subscriber.
9
 *
10
 * @since 2.0.0
11
 */
12
interface Loadie {
13
14
	/**
15
	 * This method will be called by Email Log after `wp-loaded` event.
16
	 *
17
	 * @return void
18
	 */
19
	public function load();
20
}
21