14 lines
150 B
PHP
14 lines
150 B
PHP
<?php
|
|
|
|
namespace AutomateWoo\Entity;
|
|
|
|
/**
|
|
* @since 5.1.0
|
|
*/
|
|
interface WorkflowTiming {
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function get_type();
|
|
}
|