PluginProbe
Media Cloud Sync / 1.2.12
Media Cloud Sync v1.2.12
1.4.0 1.3.12 1.3.11 1.3.10 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.2.0 1.2.10 1.2.11 1.2.12 1.2.13 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 All 34 releases
media-cloud-sync / includes / sdk / google / google / cloud-core / src / CallTrait.php

CallTrait.php in Media Cloud Sync 1.2.12, at includes/sdk/google/google/cloud-core/src/CallTrait.php

36 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Copyright 2016 Google Inc. All Rights Reserved.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18 namespace Dudlewebs\WPMCS\Google\Cloud\Core;
19
20 /**
21 * Provide magic method support for fetching values from results
22 */
23 trait CallTrait
24 {
25 /**
26 * @access private
27 */
28 public function __call($name, array $args)
29 {
30 if (!isset($this->info()[$name])) {
31 trigger_error(sprintf('Call to undefined method %s::%s', __CLASS__, $name), \E_USER_ERROR);
32 }
33 return $this->info()[$name];
34 }
35 }
36