Automator_Recipe_Process

Class Automator_Recipe_Process


Source Source

File: src/core/lib/process/class-automator-recipe-process.php

class Automator_Recipe_Process {
	public static $instance;
	/**
	 * @var Automator_Recipe_Process_User
	 */
	public $user;
	/**
	 * @var \Uncanny_Automator_Pro\Automator_Pro_Recipe_Process_Anon
	 */
	public $anon;
	/**
	 * Automator_Recipe_Process constructor.
	 */
	public function __construct() {
		$this->user = new Automator_Recipe_Process_User();
	}
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}
		return self::$instance;
	}
}

Methods Methods