Hooks::register()

Binds and sets up implementations.

Contents


Source

File: src/Common/Event_Automator/Hooks.php

	public function register() {
		$this->container->singleton( static::class, $this );

		add_action( 'admin_init', [ $this, 'run_updates' ], 10, 0 );
	}

Top ↑

Changelog

Changelog
Version Description
6.0.0 Introduced.