1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php // phpcs:ignoreFile
namespace AutomateWoo;
defined( 'ABSPATH' ) || exit;
/** * @class Log_Factory * @since 2.9 */ class Log_Factory extends Factory {
static $model = 'AutomateWoo\Log';
/** * @param int $id * @return Log|bool */ static function get( $id ) { return parent::get( $id ); }
}
|