ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "Google_Service_AnalyticsProvisioning.php"
Full Path: /home/zcziejy/ryadselyen/plugins/google-site-kit/includes/Modules/Analytics/Google_Service_AnalyticsProvisioning.php
File size: 1.47 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Class Google\Site_Kit\Modules\Analytics\Google_Service_AnalyticsProvisioning
*
* @package Google\Site_Kit\Modules\Analytics
* @copyright 2021 Google LLC
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link https://sitekit.withgoogle.com
*/
namespace Google\Site_Kit\Modules\Analytics;
use Google\Site_Kit_Dependencies\Google_Service_Analytics;
use Google\Site_Kit_Dependencies\Google_Client;
/**
* Class for Analytics Provisioning service.
*
* @since 1.9.0
* @access private
* @ignore
*/
class Google_Service_AnalyticsProvisioning extends Google_Service_Analytics {
/**
* Constructs the internal representation of the Analytics service.
*
* @since 1.9.0
*
* @param Google_Client $client The client used to deliver requests.
* @param string $rootUrl The root URL used for requests to the service.
*/
public function __construct( Google_Client $client, $rootUrl = null ) { // phpcs:ignore WordPress.NamingConventions.ValidVariableName
parent::__construct( $client, $rootUrl ); // phpcs:ignore WordPress.NamingConventions.ValidVariableName
$this->provisioning = new Proxy_Provisioning(
$this,
$this->serviceName, // phpcs:ignore WordPress.NamingConventions.ValidVariableName
'provisioning',
array(
'methods' => array(
'createAccountTicket' => array(
'path' => 'provisioning/createAccountTicket',
'httpMethod' => 'POST',
'parameters' => array(),
),
),
)
);
}
}