diff --git a/src/opnsense/contrib/google-api-php-client/Google/Auth/AssertionCredentials.php b/src/opnsense/contrib/google-api-php-client/Google/Auth/AssertionCredentials.php index 831d374eb..0e490bc70 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Auth/AssertionCredentials.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Auth/AssertionCredentials.php @@ -68,7 +68,7 @@ class Google_Auth_AssertionCredentials $this->prn = $sub; $this->useCache = $useCache; } - + /** * Generate a unique key to represent this credential. * @return string diff --git a/src/opnsense/contrib/google-api-php-client/Google/Cache/Abstract.php b/src/opnsense/contrib/google-api-php-client/Google/Cache/Abstract.php index ff19f36ac..34eeb93c6 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Cache/Abstract.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Cache/Abstract.php @@ -22,7 +22,7 @@ */ abstract class Google_Cache_Abstract { - + abstract public function __construct(Google_Client $client); /** diff --git a/src/opnsense/contrib/google-api-php-client/Google/Client.php b/src/opnsense/contrib/google-api-php-client/Google/Client.php index aef442f61..a67d967af 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Client.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Client.php @@ -124,12 +124,12 @@ class Google_Client $this->authenticated = true; return $this->getAuth()->authenticate($code); } - + /** - * Loads a service account key and parameters from a JSON + * Loads a service account key and parameters from a JSON * file from the Google Developer Console. Uses that and the - * given array of scopes to return an assertion credential for - * use with refreshTokenWithAssertionCredential. + * given array of scopes to return an assertion credential for + * use with refreshTokenWithAssertionCredential. * * @param string $jsonLocation File location of the project-key.json. * @param array $scopes The scopes to assert. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Config.php b/src/opnsense/contrib/google-api-php-client/Google/Config.php index 357a7fcff..d582d8316 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Config.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Config.php @@ -380,8 +380,8 @@ class Google_Config /** * Set the hd (hosted domain) parameter streamlines the login process for * Google Apps hosted accounts. By including the domain of the user, you - * restrict sign-in to accounts at that domain. - * + * restrict sign-in to accounts at that domain. + * * This should not be used to ensure security on your application - check * the hd values within an id token (@see Google_Auth_LoginTicket) after sign * in to ensure that the user is from the domain you were expecting. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Http/REST.php b/src/opnsense/contrib/google-api-php-client/Google/Http/REST.php index 10b23e5cb..9a3ae661c 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Http/REST.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Http/REST.php @@ -115,7 +115,7 @@ class Google_Http_REST if ($response->getExpectedRaw()) { return $body; } - + $decoded = json_decode($body, true); if ($decoded === null || $decoded === "") { $error = "Invalid json in service response: $body"; diff --git a/src/opnsense/contrib/google-api-php-client/Google/Http/Request.php b/src/opnsense/contrib/google-api-php-client/Google/Http/Request.php index b3113d5b6..378389601 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Http/Request.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Http/Request.php @@ -49,7 +49,7 @@ class Google_Http_Request protected $responseHttpCode; protected $responseHeaders; protected $responseBody; - + protected $expectedClass; protected $expectedRaw = false; @@ -76,7 +76,7 @@ class Google_Http_Request { return $this->baseComponent; } - + /** * Set the base URL that path and query parameters will be added to. * @param $baseComponent string @@ -85,7 +85,7 @@ class Google_Http_Request { $this->baseComponent = $baseComponent; } - + /** * Enable support for gzipped responses with this request. */ @@ -95,7 +95,7 @@ class Google_Http_Request $this->canGzip = true; $this->setUserAgent($this->userAgent); } - + /** * Disable support for gzip responses with this request. */ @@ -110,7 +110,7 @@ class Google_Http_Request $this->canGzip = false; $this->userAgent = str_replace(self::GZIP_UA, "", $this->userAgent); } - + /** * Can this request accept a gzip response? * @return bool @@ -130,7 +130,7 @@ class Google_Http_Request return $this->queryParams; } - /** + /** * Set a new query parameter. * @param $key - string to set, does not need to be URL encoded * @param $value - string to set, does not need to be URL encoded @@ -171,7 +171,7 @@ class Google_Http_Request { return $this->responseBody; } - + /** * Set the class the response to this request should expect. * @@ -181,7 +181,7 @@ class Google_Http_Request { $this->expectedClass = $class; } - + /** * Retrieve the expected class the response should expect. * @return string class name @@ -427,7 +427,7 @@ class Google_Http_Request $str .= "\n"; $str .= $this->getPostBody(); } - + $headers = ''; foreach ($this->batchHeaders as $key => $val) { $headers .= $key . ': ' . $val . "\n"; @@ -438,10 +438,10 @@ class Google_Http_Request return $str; } - + /** * Our own version of parse_str that allows for multiple variables - * with the same name. + * with the same name. * @param $string - the query string to parse */ private function parseQuery($string) @@ -462,10 +462,10 @@ class Google_Http_Request } return $return; } - + /** * A version of build query that allows for multiple - * duplicate keys. + * duplicate keys. * @param $parts array of key value pairs */ private function buildQuery($parts) @@ -482,8 +482,8 @@ class Google_Http_Request } return implode('&', $return); } - - /** + + /** * If we're POSTing and have no body to send, we can send the query * parameters in there, which avoids length issues with longer query * params. diff --git a/src/opnsense/contrib/google-api-php-client/Google/IO/Curl.php b/src/opnsense/contrib/google-api-php-client/Google/IO/Curl.php index 6dcec2646..98ad3c66b 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/IO/Curl.php +++ b/src/opnsense/contrib/google-api-php-client/Google/IO/Curl.php @@ -81,12 +81,12 @@ class Google_IO_Curl extends Google_IO_Abstract if ($request->canGzip()) { curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate'); } - + $options = $this->client->getClassConfig('Google_IO_Curl', 'options'); if (is_array($options)) { $this->setOptions($options); } - + foreach ($this->options as $key => $var) { curl_setopt($curl, $key, $var); } diff --git a/src/opnsense/contrib/google-api-php-client/Google/Model.php b/src/opnsense/contrib/google-api-php-client/Google/Model.php index 5ebe59da2..017145017 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Model.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Model.php @@ -25,7 +25,7 @@ class Google_Model implements ArrayAccess { /** * If you need to specify a NULL JSON value, use Google_Model::NULL_VALUE - * instead - it will be replaced when converting to JSON with a real null. + * instead - it will be replaced when converting to JSON with a real null. */ const NULL_VALUE = "{}gapi-php-null"; protected $internal_gapi_mappings = array(); @@ -175,7 +175,7 @@ class Google_Model implements ArrayAccess } return $value; } - + /** * Check whether the value is the null placeholder and return true null. */ diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/AdExchangeBuyer.php b/src/opnsense/contrib/google-api-php-client/Google/Service/AdExchangeBuyer.php index 223f1f1bb..6649c52a5 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/AdExchangeBuyer.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/AdExchangeBuyer.php @@ -42,7 +42,7 @@ class Google_Service_AdExchangeBuyer extends Google_Service public $directDeals; public $performanceReport; public $pretargetingConfig; - + /** * Constructs the internal representation of the AdExchangeBuyer service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/AdExchangeSeller.php b/src/opnsense/contrib/google-api-php-client/Google/Service/AdExchangeSeller.php index 2be68865c..a5af4baa2 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/AdExchangeSeller.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/AdExchangeSeller.php @@ -48,7 +48,7 @@ class Google_Service_AdExchangeSeller extends Google_Service public $accounts_reports; public $accounts_reports_saved; public $accounts_urlchannels; - + /** * Constructs the internal representation of the AdExchangeSeller service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/AdSense.php b/src/opnsense/contrib/google-api-php-client/Google/Service/AdSense.php index 04b4d3668..c778e3079 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/AdSense.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/AdSense.php @@ -63,7 +63,7 @@ class Google_Service_AdSense extends Google_Service public $reports_saved; public $savedadstyles; public $urlchannels; - + /** * Constructs the internal representation of the AdSense service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/AdSenseHost.php b/src/opnsense/contrib/google-api-php-client/Google/Service/AdSenseHost.php index cf9e353c1..804666941 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/AdSenseHost.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/AdSenseHost.php @@ -44,7 +44,7 @@ class Google_Service_AdSenseHost extends Google_Service public $customchannels; public $reports; public $urlchannels; - + /** * Constructs the internal representation of the AdSenseHost service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Admin.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Admin.php index 05807f2a1..1b12ec055 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Admin.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Admin.php @@ -35,7 +35,7 @@ class Google_Service_Admin extends Google_Service "https://www.googleapis.com/auth/email.migration"; public $mail; - + /** * Constructs the internal representation of the Admin service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Analytics.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Analytics.php index 8e9ea1566..e1fdfccd0 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Analytics.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Analytics.php @@ -72,7 +72,7 @@ class Google_Service_Analytics extends Google_Service public $management_webpropertyUserLinks; public $metadata_columns; public $provisioning; - + /** * Constructs the internal representation of the Analytics service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/AndroidEnterprise.php b/src/opnsense/contrib/google-api-php-client/Google/Service/AndroidEnterprise.php index a0fb94386..cdd2d441f 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/AndroidEnterprise.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/AndroidEnterprise.php @@ -46,7 +46,7 @@ class Google_Service_AndroidEnterprise extends Google_Service public $permissions; public $products; public $users; - + /** * Constructs the internal representation of the AndroidEnterprise service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/AndroidPublisher.php b/src/opnsense/contrib/google-api-php-client/Google/Service/AndroidPublisher.php index 3e70e8a11..271545365 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/AndroidPublisher.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/AndroidPublisher.php @@ -46,7 +46,7 @@ class Google_Service_AndroidPublisher extends Google_Service public $inappproducts; public $purchases_products; public $purchases_subscriptions; - + /** * Constructs the internal representation of the AndroidPublisher service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/AppState.php b/src/opnsense/contrib/google-api-php-client/Google/Service/AppState.php index 7f3da5d65..cfa3532eb 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/AppState.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/AppState.php @@ -35,7 +35,7 @@ class Google_Service_AppState extends Google_Service "https://www.googleapis.com/auth/appstate"; public $states; - + /** * Constructs the internal representation of the AppState service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Appsactivity.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Appsactivity.php index 45b7fd219..7bc068775 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Appsactivity.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Appsactivity.php @@ -44,7 +44,7 @@ class Google_Service_Appsactivity extends Google_Service "https://www.googleapis.com/auth/drive.readonly"; public $activities; - + /** * Constructs the internal representation of the Appsactivity service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Audit.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Audit.php index 60672ecc3..c5cbd39ec 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Audit.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Audit.php @@ -34,7 +34,7 @@ class Google_Service_Audit extends Google_Service public $activities; - + /** * Constructs the internal representation of the Audit service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Autoscaler.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Autoscaler.php index 8d483329e..933f49e1e 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Autoscaler.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Autoscaler.php @@ -41,7 +41,7 @@ class Google_Service_Autoscaler extends Google_Service public $autoscalers; public $zoneOperations; public $zones; - + /** * Constructs the internal representation of the Autoscaler service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Bigquery.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Bigquery.php index 3c3989107..a5f2ed525 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Bigquery.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Bigquery.php @@ -54,7 +54,7 @@ class Google_Service_Bigquery extends Google_Service public $projects; public $tabledata; public $tables; - + /** * Constructs the internal representation of the Bigquery service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Blogger.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Blogger.php index 8ae06ac35..ea6d9dc83 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Blogger.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Blogger.php @@ -45,7 +45,7 @@ class Google_Service_Blogger extends Google_Service public $postUserInfos; public $posts; public $users; - + /** * Constructs the internal representation of the Blogger service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Books.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Books.php index 5b4387ce1..d14f13d4a 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Books.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Books.php @@ -53,7 +53,7 @@ class Google_Service_Books extends Google_Service public $volumes_mybooks; public $volumes_recommended; public $volumes_useruploaded; - + /** * Constructs the internal representation of the Books service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Calendar.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Calendar.php index bccc5796f..a8b12d2b5 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Calendar.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Calendar.php @@ -45,7 +45,7 @@ class Google_Service_Calendar extends Google_Service public $events; public $freebusy; public $settings; - + /** * Constructs the internal representation of the Calendar service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/CivicInfo.php b/src/opnsense/contrib/google-api-php-client/Google/Service/CivicInfo.php index 961fd30c0..ceff1e0d5 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/CivicInfo.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/CivicInfo.php @@ -35,7 +35,7 @@ class Google_Service_CivicInfo extends Google_Service public $divisions; public $elections; public $representatives; - + /** * Constructs the internal representation of the CivicInfo service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/CloudMonitoring.php b/src/opnsense/contrib/google-api-php-client/Google/Service/CloudMonitoring.php index 0cb75b11d..ca349a915 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/CloudMonitoring.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/CloudMonitoring.php @@ -37,7 +37,7 @@ class Google_Service_CloudMonitoring extends Google_Service public $metricDescriptors; public $timeseries; public $timeseriesDescriptors; - + /** * Constructs the internal representation of the CloudMonitoring service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Cloudlatencytest.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Cloudlatencytest.php index aef31fe55..eae5be48f 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Cloudlatencytest.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Cloudlatencytest.php @@ -35,7 +35,7 @@ class Google_Service_Cloudlatencytest extends Google_Service "https://www.googleapis.com/auth/monitoring.readonly"; public $statscollection; - + /** * Constructs the internal representation of the Cloudlatencytest service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Compute.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Compute.php index c61e25481..64cb71eb3 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Compute.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Compute.php @@ -76,7 +76,7 @@ class Google_Service_Compute extends Google_Service public $urlMaps; public $zoneOperations; public $zones; - + /** * Constructs the internal representation of the Compute service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Container.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Container.php index 5be0c7409..d0baef47a 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Container.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Container.php @@ -39,7 +39,7 @@ class Google_Service_Container extends Google_Service public $projects_operations; public $projects_zones_clusters; public $projects_zones_operations; - + /** * Constructs the internal representation of the Container service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Coordinate.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Coordinate.php index 44b572dd5..cf8149b32 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Coordinate.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Coordinate.php @@ -43,7 +43,7 @@ class Google_Service_Coordinate extends Google_Service public $schedule; public $team; public $worker; - + /** * Constructs the internal representation of the Coordinate service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Customsearch.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Customsearch.php index 362330a93..52373742d 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Customsearch.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Customsearch.php @@ -33,7 +33,7 @@ class Google_Service_Customsearch extends Google_Service public $cse; - + /** * Constructs the internal representation of the Customsearch service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Dataflow.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Dataflow.php index 04383be95..7c972dfbd 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Dataflow.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Dataflow.php @@ -33,7 +33,7 @@ class Google_Service_Dataflow extends Google_Service - + /** * Constructs the internal representation of the Dataflow service. @@ -49,7 +49,3 @@ class Google_Service_Dataflow extends Google_Service } } - - - - diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Datastore.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Datastore.php index e627d9d0e..c47735d99 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Datastore.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Datastore.php @@ -41,7 +41,7 @@ class Google_Service_Datastore extends Google_Service "https://www.googleapis.com/auth/userinfo.email"; public $datasets; - + /** * Constructs the internal representation of the Datastore service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Deploymentmanager.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Deploymentmanager.php index 554fe0e13..05cb3c123 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Deploymentmanager.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Deploymentmanager.php @@ -46,7 +46,7 @@ class Google_Service_Deploymentmanager extends Google_Service public $operations; public $resources; public $types; - + /** * Constructs the internal representation of the Deploymentmanager service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Dfareporting.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Dfareporting.php index 7658c2d45..ae0124d74 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Dfareporting.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Dfareporting.php @@ -87,7 +87,7 @@ class Google_Service_Dfareporting extends Google_Service public $userRolePermissionGroups; public $userRolePermissions; public $userRoles; - + /** * Constructs the internal representation of the Dfareporting service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Directory.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Directory.php index a65d673ac..89576ce5e 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Directory.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Directory.php @@ -105,7 +105,7 @@ class Google_Service_Directory extends Google_Service public $users_aliases; public $users_photos; public $verificationCodes; - + /** * Constructs the internal representation of the Directory service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Dns.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Dns.php index 9ae6717ea..7de23a314 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Dns.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Dns.php @@ -45,7 +45,7 @@ class Google_Service_Dns extends Google_Service public $managedZones; public $projects; public $resourceRecordSets; - + /** * Constructs the internal representation of the Dns service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/DoubleClickBidManager.php b/src/opnsense/contrib/google-api-php-client/Google/Service/DoubleClickBidManager.php index fdb3f1776..982b87f06 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/DoubleClickBidManager.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/DoubleClickBidManager.php @@ -35,7 +35,7 @@ class Google_Service_DoubleClickBidManager extends Google_Service public $lineitems; public $queries; public $reports; - + /** * Constructs the internal representation of the DoubleClickBidManager diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Doubleclicksearch.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Doubleclicksearch.php index 5aa303961..46723d9f4 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Doubleclicksearch.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Doubleclicksearch.php @@ -38,7 +38,7 @@ class Google_Service_Doubleclicksearch extends Google_Service public $conversion; public $reports; public $savedColumns; - + /** * Constructs the internal representation of the Doubleclicksearch service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Drive.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Drive.php index f19ccb5d6..df842d92c 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Drive.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Drive.php @@ -65,7 +65,7 @@ class Google_Service_Drive extends Google_Service public $realtime; public $replies; public $revisions; - + /** * Constructs the internal representation of the Drive service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Fitness.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Fitness.php index 71e75ef7a..4ff751b9a 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Fitness.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Fitness.php @@ -52,7 +52,7 @@ class Google_Service_Fitness extends Google_Service public $users_dataSources; public $users_dataSources_datasets; public $users_sessions; - + /** * Constructs the internal representation of the Fitness service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Fusiontables.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Fusiontables.php index 4ee1497ab..0aedbbd00 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Fusiontables.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Fusiontables.php @@ -43,7 +43,7 @@ class Google_Service_Fusiontables extends Google_Service public $table; public $task; public $template; - + /** * Constructs the internal representation of the Fusiontables service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Games.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Games.php index 1d467ca6e..10b488885 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Games.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Games.php @@ -55,7 +55,7 @@ class Google_Service_Games extends Google_Service public $scores; public $snapshots; public $turnBasedMatches; - + /** * Constructs the internal representation of the Games service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/GamesConfiguration.php b/src/opnsense/contrib/google-api-php-client/Google/Service/GamesConfiguration.php index a0a1811f0..85e8096ea 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/GamesConfiguration.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/GamesConfiguration.php @@ -37,7 +37,7 @@ class Google_Service_GamesConfiguration extends Google_Service public $achievementConfigurations; public $imageConfigurations; public $leaderboardConfigurations; - + /** * Constructs the internal representation of the GamesConfiguration service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/GamesManagement.php b/src/opnsense/contrib/google-api-php-client/Google/Service/GamesManagement.php index 44ed37b87..f8f3df327 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/GamesManagement.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/GamesManagement.php @@ -45,7 +45,7 @@ class Google_Service_GamesManagement extends Google_Service public $rooms; public $scores; public $turnBasedMatches; - + /** * Constructs the internal representation of the GamesManagement service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Genomics.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Genomics.php index 917c2bdd7..2325eb5e9 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Genomics.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Genomics.php @@ -57,7 +57,7 @@ class Google_Service_Genomics extends Google_Service public $referencesets; public $variants; public $variantsets; - + /** * Constructs the internal representation of the Genomics service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Gmail.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Gmail.php index ac7eedf46..0d22de19d 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Gmail.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Gmail.php @@ -50,7 +50,7 @@ class Google_Service_Gmail extends Google_Service public $users_messages; public $users_messages_attachments; public $users_threads; - + /** * Constructs the internal representation of the Gmail service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/GroupsMigration.php b/src/opnsense/contrib/google-api-php-client/Google/Service/GroupsMigration.php index 6aea31cfa..486dba516 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/GroupsMigration.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/GroupsMigration.php @@ -35,7 +35,7 @@ class Google_Service_GroupsMigration extends Google_Service "https://www.googleapis.com/auth/apps.groups.migration"; public $archive; - + /** * Constructs the internal representation of the GroupsMigration service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Groupssettings.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Groupssettings.php index c8c3dfed5..383629191 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Groupssettings.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Groupssettings.php @@ -35,7 +35,7 @@ class Google_Service_Groupssettings extends Google_Service "https://www.googleapis.com/auth/apps.groups.settings"; public $groups; - + /** * Constructs the internal representation of the Groupssettings service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/IdentityToolkit.php b/src/opnsense/contrib/google-api-php-client/Google/Service/IdentityToolkit.php index 9d39016a1..ff1660fad 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/IdentityToolkit.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/IdentityToolkit.php @@ -33,7 +33,7 @@ class Google_Service_IdentityToolkit extends Google_Service public $relyingparty; - + /** * Constructs the internal representation of the IdentityToolkit service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Licensing.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Licensing.php index 701967237..ad5ba66a4 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Licensing.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Licensing.php @@ -35,7 +35,7 @@ class Google_Service_Licensing extends Google_Service "https://www.googleapis.com/auth/apps.licensing"; public $licenseAssignments; - + /** * Constructs the internal representation of the Licensing service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Manager.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Manager.php index 98c3eb5d3..ce848a1ca 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Manager.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Manager.php @@ -52,7 +52,7 @@ class Google_Service_Manager extends Google_Service public $deployments; public $templates; - + /** * Constructs the internal representation of the Manager service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/MapsEngine.php b/src/opnsense/contrib/google-api-php-client/Google/Service/MapsEngine.php index 728b10d89..1de230981 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/MapsEngine.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/MapsEngine.php @@ -61,7 +61,7 @@ class Google_Service_MapsEngine extends Google_Service public $tables_files; public $tables_parents; public $tables_permissions; - + /** * Constructs the internal representation of the MapsEngine service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Mirror.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Mirror.php index d49b0564e..275c4fef3 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Mirror.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Mirror.php @@ -44,7 +44,7 @@ class Google_Service_Mirror extends Google_Service public $subscriptions; public $timeline; public $timeline_attachments; - + /** * Constructs the internal representation of the Mirror service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Pagespeedonline.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Pagespeedonline.php index 89d20e962..37b21e63d 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Pagespeedonline.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Pagespeedonline.php @@ -34,7 +34,7 @@ class Google_Service_Pagespeedonline extends Google_Service public $pagespeedapi; - + /** * Constructs the internal representation of the Pagespeedonline service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Plus.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Plus.php index e28783b74..0fea41b3b 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Plus.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Plus.php @@ -47,7 +47,7 @@ class Google_Service_Plus extends Google_Service public $comments; public $moments; public $people; - + /** * Constructs the internal representation of the Plus service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/PlusDomains.php b/src/opnsense/contrib/google-api-php-client/Google/Service/PlusDomains.php index ad5955044..cf550cc93 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/PlusDomains.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/PlusDomains.php @@ -67,7 +67,7 @@ class Google_Service_PlusDomains extends Google_Service public $comments; public $media; public $people; - + /** * Constructs the internal representation of the PlusDomains service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Prediction.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Prediction.php index 2e77ad2e4..b62db97bd 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Prediction.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Prediction.php @@ -46,7 +46,7 @@ class Google_Service_Prediction extends Google_Service public $hostedmodels; public $trainedmodels; - + /** * Constructs the internal representation of the Prediction service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Pubsub.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Pubsub.php index f37f8970e..a3c893561 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Pubsub.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Pubsub.php @@ -39,7 +39,7 @@ class Google_Service_Pubsub extends Google_Service public $subscriptions; public $topics; - + /** * Constructs the internal representation of the Pubsub service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/QPXExpress.php b/src/opnsense/contrib/google-api-php-client/Google/Service/QPXExpress.php index b38fd13c4..261593921 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/QPXExpress.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/QPXExpress.php @@ -34,7 +34,7 @@ class Google_Service_QPXExpress extends Google_Service public $trips; - + /** * Constructs the internal representation of the QPXExpress service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Replicapool.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Replicapool.php index b51680bcb..9d26d5726 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Replicapool.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Replicapool.php @@ -43,7 +43,7 @@ class Google_Service_Replicapool extends Google_Service public $instanceGroupManagers; public $zoneOperations; - + /** * Constructs the internal representation of the Replicapool service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Replicapoolupdater.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Replicapoolupdater.php index e763a4a95..7a7e04d71 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Replicapoolupdater.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Replicapoolupdater.php @@ -43,7 +43,7 @@ class Google_Service_Replicapoolupdater extends Google_Service public $rollingUpdates; public $zoneOperations; - + /** * Constructs the internal representation of the Replicapoolupdater service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Reports.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Reports.php index a459861d2..07e68de55 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Reports.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Reports.php @@ -42,7 +42,7 @@ class Google_Service_Reports extends Google_Service public $channels; public $customerUsageReports; public $userUsageReport; - + /** * Constructs the internal representation of the Reports service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Reseller.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Reseller.php index 653720e32..cfc4377c2 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Reseller.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Reseller.php @@ -39,7 +39,7 @@ class Google_Service_Reseller extends Google_Service public $customers; public $subscriptions; - + /** * Constructs the internal representation of the Reseller service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Resourceviews.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Resourceviews.php index 10eb4b115..166486ee7 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Resourceviews.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Resourceviews.php @@ -49,7 +49,7 @@ class Google_Service_Resourceviews extends Google_Service public $zoneOperations; public $zoneViews; - + /** * Constructs the internal representation of the Resourceviews service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/SQLAdmin.php b/src/opnsense/contrib/google-api-php-client/Google/Service/SQLAdmin.php index 3585349e9..99d3ff689 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/SQLAdmin.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/SQLAdmin.php @@ -45,7 +45,7 @@ class Google_Service_SQLAdmin extends Google_Service public $sslCerts; public $tiers; public $users; - + /** * Constructs the internal representation of the SQLAdmin service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/ShoppingContent.php b/src/opnsense/contrib/google-api-php-client/Google/Service/ShoppingContent.php index c3957ce6f..d817f47a9 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/ShoppingContent.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/ShoppingContent.php @@ -44,7 +44,7 @@ class Google_Service_ShoppingContent extends Google_Service public $inventory; public $products; public $productstatuses; - + /** * Constructs the internal representation of the ShoppingContent service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/SiteVerification.php b/src/opnsense/contrib/google-api-php-client/Google/Service/SiteVerification.php index 3ba2f2d7b..6eb7b9eb2 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/SiteVerification.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/SiteVerification.php @@ -38,7 +38,7 @@ class Google_Service_SiteVerification extends Google_Service "https://www.googleapis.com/auth/siteverification.verify_only"; public $webResource; - + /** * Constructs the internal representation of the SiteVerification service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Spectrum.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Spectrum.php index 24fcd2460..e41bfce36 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Spectrum.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Spectrum.php @@ -33,7 +33,7 @@ class Google_Service_Spectrum extends Google_Service public $paws; - + /** * Constructs the internal representation of the Spectrum service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Storage.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Storage.php index 96f9c8bfb..1dbebb64a 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Storage.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Storage.php @@ -49,7 +49,7 @@ class Google_Service_Storage extends Google_Service public $defaultObjectAccessControls; public $objectAccessControls; public $objects; - + /** * Constructs the internal representation of the Storage service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/TagManager.php b/src/opnsense/contrib/google-api-php-client/Google/Service/TagManager.php index d09db631f..c5b76d0ac 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/TagManager.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/TagManager.php @@ -61,7 +61,7 @@ class Google_Service_TagManager extends Google_Service public $accounts_containers_variables; public $accounts_containers_versions; public $accounts_permissions; - + /** * Constructs the internal representation of the TagManager service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Taskqueue.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Taskqueue.php index 84fb3ca41..cfe9c41ce 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Taskqueue.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Taskqueue.php @@ -39,7 +39,7 @@ class Google_Service_Taskqueue extends Google_Service public $taskqueues; public $tasks; - + /** * Constructs the internal representation of the Taskqueue service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Tasks.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Tasks.php index 48c04d8a9..00d03acb5 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Tasks.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Tasks.php @@ -39,7 +39,7 @@ class Google_Service_Tasks extends Google_Service public $tasklists; public $tasks; - + /** * Constructs the internal representation of the Tasks service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Translate.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Translate.php index 67d0ed256..a25365d69 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Translate.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Translate.php @@ -35,7 +35,7 @@ class Google_Service_Translate extends Google_Service public $detections; public $languages; public $translations; - + /** * Constructs the internal representation of the Translate service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Urlshortener.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Urlshortener.php index 083b13dd2..69a5ca84d 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Urlshortener.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Urlshortener.php @@ -35,7 +35,7 @@ class Google_Service_Urlshortener extends Google_Service "https://www.googleapis.com/auth/urlshortener"; public $url; - + /** * Constructs the internal representation of the Urlshortener service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Webfonts.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Webfonts.php index 4bf7bb207..4553eb948 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Webfonts.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Webfonts.php @@ -33,7 +33,7 @@ class Google_Service_Webfonts extends Google_Service public $webfonts; - + /** * Constructs the internal representation of the Webfonts service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/Webmasters.php b/src/opnsense/contrib/google-api-php-client/Google/Service/Webmasters.php index 8e6f015b8..43f0082aa 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/Webmasters.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/Webmasters.php @@ -41,7 +41,7 @@ class Google_Service_Webmasters extends Google_Service public $sites; public $urlcrawlerrorscounts; public $urlcrawlerrorssamples; - + /** * Constructs the internal representation of the Webmasters service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/YouTube.php b/src/opnsense/contrib/google-api-php-client/Google/Service/YouTube.php index e4c22de08..e4a48ce88 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/YouTube.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/YouTube.php @@ -66,7 +66,7 @@ class Google_Service_YouTube extends Google_Service public $videoCategories; public $videos; public $watermarks; - + /** * Constructs the internal representation of the YouTube service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Service/YouTubeAnalytics.php b/src/opnsense/contrib/google-api-php-client/Google/Service/YouTubeAnalytics.php index 3dc918178..439c88e6a 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Service/YouTubeAnalytics.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Service/YouTubeAnalytics.php @@ -51,7 +51,7 @@ class Google_Service_YouTubeAnalytics extends Google_Service public $groupItems; public $groups; public $reports; - + /** * Constructs the internal representation of the YouTubeAnalytics service. diff --git a/src/opnsense/contrib/google-api-php-client/Google/Utils/URITemplate.php b/src/opnsense/contrib/google-api-php-client/Google/Utils/URITemplate.php index f5ee38bb3..99f9bcac7 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Utils/URITemplate.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Utils/URITemplate.php @@ -16,7 +16,7 @@ */ /** - * Implementation of levels 1-3 of the URI Template spec. + * Implementation of levels 1-3 of the URI Template spec. * @see http://tools.ietf.org/html/rfc6570 */ class Google_Utils_URITemplate @@ -26,7 +26,7 @@ class Google_Utils_URITemplate const TYPE_SCALAR = "4"; /** - * @var $operators array + * @var $operators array * These are valid at the start of a template block to * modify the way in which the variables inside are * processed. @@ -64,7 +64,7 @@ class Google_Utils_URITemplate /** * This function finds the first matching {...} block and * executes the replacement. It then calls itself to find - * subsequent blocks, if any. + * subsequent blocks, if any. */ private function resolveNextSection($string, $parameters) { @@ -181,7 +181,7 @@ class Google_Utils_URITemplate ); } } - + public function combine( $key, $parameters, @@ -200,17 +200,17 @@ class Google_Utils_URITemplate if (strpos($key, ":") !== false) { list($key, $length) = explode(":", $key); } - + // Check for explode parameter. if ($key[strlen($key) - 1] == "*") { $explode = true; $key = substr($key, 0, -1); $skip_final_combine = true; } - + // Define the list separator. $list_sep = $explode ? $sep : ","; - + if (isset($parameters[$key])) { $data_type = $this->getDataType($parameters[$key]); switch($data_type) { @@ -267,11 +267,11 @@ class Google_Utils_URITemplate if (!$combine || $skip_final_combine) { return $value; } - + // Else we combine the key name: foo=bar, if value is not the empty string. return $key . ($value != '' || $combine_on_empty ? $combine . $value : ''); } - + /** * Return the type of a passed in value */ @@ -286,7 +286,7 @@ class Google_Utils_URITemplate } return self::TYPE_SCALAR; } - + /** * Utility function that merges multiple combine calls * for multi-key templates. @@ -318,7 +318,7 @@ class Google_Utils_URITemplate } return implode($sep, $ret); } - + /** * Utility function to encode and trim values */ diff --git a/src/opnsense/contrib/google-api-php-client/Google/Verifier/Pem.php b/src/opnsense/contrib/google-api-php-client/Google/Verifier/Pem.php index 3d6e0fd2d..134ead322 100755 --- a/src/opnsense/contrib/google-api-php-client/Google/Verifier/Pem.php +++ b/src/opnsense/contrib/google-api-php-client/Google/Verifier/Pem.php @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - + if (!class_exists('Google_Client')) { require_once dirname(__FILE__) . '/../autoload.php'; } diff --git a/src/opnsense/mvc/app/library/Google/API/Drive.php b/src/opnsense/mvc/app/library/Google/API/Drive.php index 52120cf1a..e64ea86ac 100644 --- a/src/opnsense/mvc/app/library/Google/API/Drive.php +++ b/src/opnsense/mvc/app/library/Google/API/Drive.php @@ -1,4 +1,5 @@ service->files->delete($fileHandle['id']); } -} \ No newline at end of file +}