OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress
/
vendor
/
aws
/
aws-sdk-php
/
src
/
Api
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:17 AM
rwxr-xr-x
📄
AbstractModel.php
2.04 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
ApiProvider.php
7.71 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
DateTimeResult.php
3.77 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
DocModel.php
3.52 KB
05/19/2025 10:07:17 AM
rw-r--r--
📁
ErrorParser
-
05/19/2025 10:07:17 AM
rwxr-xr-x
📄
ListShape.php
821 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
MapShape.php
1.2 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
Operation.php
3.51 KB
05/19/2025 10:07:17 AM
rw-r--r--
📁
Parser
-
05/19/2025 10:07:17 AM
rwxr-xr-x
📁
Serializer
-
05/19/2025 10:07:17 AM
rwxr-xr-x
📄
Service.php
14.05 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
Shape.php
1.89 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
ShapeMap.php
1.53 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
StructureShape.php
1.72 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
TimestampShape.php
1.49 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
Validator.php
10.38 KB
05/19/2025 10:07:17 AM
rw-r--r--
Editing: ListShape.php
Close
<?php namespace Aws\Api; /** * Represents a list shape. */ class ListShape extends Shape { private $member; public function __construct(array $definition, ShapeMap $shapeMap) { $definition['type'] = 'list'; parent::__construct($definition, $shapeMap); } /** * @return Shape * @throws \RuntimeException if no member is specified */ public function getMember() { if (!$this->member) { if (!isset($this->definition['member'])) { throw new \RuntimeException('No member attribute specified'); } $this->member = Shape::create( $this->definition['member'], $this->shapeMap ); } return $this->member; } }