@@ -33,7 +33,7 @@ |
||
| 33 | 33 | public function visitSchemaElement(ISchemaElement $element): void |
| 34 | 34 | { |
| 35 | 35 | switch ($element->getSchemaElementKind()) { |
| 36 | - case SchemaElementKind::Function(): |
|
| 36 | + case SchemaElementKind::Function (): |
|
| 37 | 37 | assert($element instanceof IFunction); |
| 38 | 38 | $this->processFunction($element); |
| 39 | 39 | break; |
@@ -68,7 +68,7 @@ |
||
| 68 | 68 | private static function fillVersions() |
| 69 | 69 | { |
| 70 | 70 | if (null == self::$fixedVersion) { |
| 71 | - self::$fixedVersion = [1 => new self(1, 0), 11 => new self(1, 1), 12 => new self(1, 2),2 => new self(2, 0), 3 => new self(3, 0)]; |
|
| 71 | + self::$fixedVersion = [1 => new self(1, 0), 11 => new self(1, 1), 12 => new self(1, 2), 2 => new self(2, 0), 3 => new self(3, 0)]; |
|
| 72 | 72 | } |
| 73 | 73 | } |
| 74 | 74 | |
@@ -29,19 +29,19 @@ |
||
| 29 | 29 | */ |
| 30 | 30 | class ValueKind extends Enum |
| 31 | 31 | { |
| 32 | - protected const None =0; |
|
| 32 | + protected const None = 0; |
|
| 33 | 33 | protected const Binary = 1; |
| 34 | - protected const Boolean =2; |
|
| 35 | - protected const Collection =3; |
|
| 36 | - protected const DateTimeOffset=4; |
|
| 37 | - protected const DateTime =5; |
|
| 38 | - protected const Decimal =6; |
|
| 39 | - protected const Enum =7; |
|
| 40 | - protected const Floating =8; |
|
| 41 | - protected const Guid =9; |
|
| 42 | - protected const Integer =10; |
|
| 43 | - protected const Null =11; |
|
| 44 | - protected const String =12; |
|
| 45 | - protected const Structured =13; |
|
| 46 | - protected const Time =14; |
|
| 34 | + protected const Boolean = 2; |
|
| 35 | + protected const Collection = 3; |
|
| 36 | + protected const DateTimeOffset = 4; |
|
| 37 | + protected const DateTime = 5; |
|
| 38 | + protected const Decimal = 6; |
|
| 39 | + protected const Enum = 7; |
|
| 40 | + protected const Floating = 8; |
|
| 41 | + protected const Guid = 9; |
|
| 42 | + protected const Integer = 10; |
|
| 43 | + protected const Null = 11; |
|
| 44 | + protected const String = 12; |
|
| 45 | + protected const Structured = 13; |
|
| 46 | + protected const Time = 14; |
|
| 47 | 47 | } |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | $regexBase = '/(is)(%s)/m'; |
| 25 | 25 | $regexFull = sprintf($regexBase, implode('$|', array_keys($array))); |
| 26 | 26 | preg_match($regexFull, $name, $match); |
| 27 | - if (count($match)>0 && $match[0] === $name) { |
|
| 27 | + if (count($match) > 0 && $match[0] === $name) { |
|
| 28 | 28 | return $this->{$match[1] . 'Flag'}($array[$match[2]], $arguments[0] ?? null); |
| 29 | 29 | } |
| 30 | 30 | throw new BadMethodCallException(sprintf('Enum %s not found on %s', $name, get_class($this))); |
@@ -17,5 +17,5 @@ |
||
| 17 | 17 | /** |
| 18 | 18 | * @return bool gets a value indicating whether the value of this boolean value is true or false |
| 19 | 19 | */ |
| 20 | - public function getValue(): bool ; |
|
| 20 | + public function getValue(): bool; |
|
| 21 | 21 | } |
@@ -19,5 +19,5 @@ |
||
| 19 | 19 | /** |
| 20 | 20 | * @return DateTime gets the definition of this datetime value |
| 21 | 21 | */ |
| 22 | - public function getValue(): DateTime ; |
|
| 22 | + public function getValue(): DateTime; |
|
| 23 | 23 | } |
@@ -17,5 +17,5 @@ |
||
| 17 | 17 | /** |
| 18 | 18 | * @return float gets the definition of this floating value |
| 19 | 19 | */ |
| 20 | - public function getValue(): float ; |
|
| 20 | + public function getValue(): float; |
|
| 21 | 21 | } |
@@ -17,5 +17,5 @@ |
||
| 17 | 17 | /** |
| 18 | 18 | * @return float gets the definition of this decimal value |
| 19 | 19 | */ |
| 20 | - public function getValue(): float ; |
|
| 20 | + public function getValue(): float; |
|
| 21 | 21 | } |
@@ -17,5 +17,5 @@ |
||
| 17 | 17 | /** |
| 18 | 18 | * @return string[] gets the definition of this binary value |
| 19 | 19 | */ |
| 20 | - public function getValue(): array ; |
|
| 20 | + public function getValue(): array; |
|
| 21 | 21 | } |