/var/www/html_uk/wp-content/plugins/automatewoo/includes/Queued_Event_Factory.php


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 Queued_Event_Factory
 * @since 2.9
 */
class Queued_Event_Factory extends Factory {

    static 
$model 'AutomateWoo\Queued_Event';

    
/**
     * @param int $id
     * @return Queued_Event|bool
     */
    
static function get$id ) {
        return 
parent::get$id );
    }

}