Utilities::get_instance()
Creates singleton instance of class
Return Return
(Uncanny_AutomatorUtilities) $instance
Source Source
File: src/core/class-utilities.php
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
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |