PluginProbe
Media Cloud Sync / 1.2.7
Media Cloud Sync v1.2.7
1.4.1 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 All 35 releases
media-cloud-sync / includes / sdk / s3 / Aws / S3 / UseArnRegion / Configuration.php

Configuration.php in Media Cloud Sync 1.2.7, at includes/sdk/s3/Aws/S3/UseArnRegion/Configuration.php

32 lines 799 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Dudlewebs\WPMCS\s3\Aws\S3\UseArnRegion;
4
5 use Dudlewebs\WPMCS\s3\Aws;
6 use Dudlewebs\WPMCS\s3\Aws\S3\UseArnRegion\Exception\ConfigurationException;
7 class Configuration implements ConfigurationInterface
8 {
9 private $useArnRegion;
10 public function __construct($useArnRegion)
11 {
12 $this->useArnRegion = Aws\boolean_value($useArnRegion);
13 if (\is_null($this->useArnRegion)) {
14 throw new ConfigurationException("'use_arn_region' config option" . " must be a boolean value.");
15 }
16 }
17 /**
18 * {@inheritdoc}
19 */
20 public function isUseArnRegion()
21 {
22 return $this->useArnRegion;
23 }
24 /**
25 * {@inheritdoc}
26 */
27 public function toArray()
28 {
29 return ['use_arn_region' => $this->isUseArnRegion()];
30 }
31 }
32