Filter by type:
Search
Skip to content
Browse: Home / Classes / Image_Processing_Queue / Image_Processing_Queue::instance()

Image_Processing_Queue::instance()

Singleton


Description


Return

(Image_Processing_Queue|null)


Source

File: classes/library/image-processing-queue/includes/class-image-processing-queue.php

		public static function instance() {
			if ( is_null( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

Expand full source code Collapse full source code View on Trac


User Contributed Notes

You must log in before being able to contribute a note or feedback.