Skip to content

Commit 2c17646

Browse files
committed
reorganize
1 parent 28e876f commit 2c17646

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/SDK/Language/Web.php

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,21 @@ public function getName(): string
1414
return 'Web';
1515
}
1616

17+
public function getStaticAccessOperator(): string
18+
{
19+
return '.';
20+
}
21+
22+
public function getStringQuote(): string
23+
{
24+
return "'";
25+
}
26+
27+
public function getArrayOf(string $elements): string
28+
{
29+
return '[' . $elements . ']';
30+
}
31+
1732
/**
1833
* @return array
1934
*/
@@ -163,21 +178,6 @@ public function getParamExample(array $param): string
163178
};
164179
}
165180

166-
public function getStaticAccessOperator(): string
167-
{
168-
return '.';
169-
}
170-
171-
public function getStringQuote(): string
172-
{
173-
return "'";
174-
}
175-
176-
public function getArrayOf(string $elements): string
177-
{
178-
return '[' . $elements . ']';
179-
}
180-
181181
public function getReadOnlyProperties(array $parameter, string $responseModel, array $spec = []): array
182182
{
183183
$properties = [];

0 commit comments

Comments
 (0)