You appear to be a bot. Output may be restricted
Description
Returns the connection manager object.
Usage
$Automattic\Jetpack\Connection\Manager = Jetpack::connection();
Parameters
Returns
Automattic\Jetpack\Connection\Manager
Source
File name: jetpack/class.jetpack.php
Lines:
1 to 10 of 10
public static function connection() { $jetpack = static::init(); // If the connection manager hasn't been instantiated, do that now. if ( ! $jetpack->connection_manager ) { $jetpack->connection_manager = new Connection_Manager( 'jetpack' ); } return $jetpack->connection_manager; }