24 lines
No EOL
350 B
PHP
24 lines
No EOL
350 B
PHP
<?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 );
|
|
}
|
|
|
|
} |