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; } }
Expand full source code Collapse full source code View on Github
Methods Methods
- __construct — Automator_Recipe_Process constructor.
- get_instance