Hooks::register()
Binds and sets up implementations.
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 );
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |