Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cucumber/messages-php
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v23.0.0
Choose a base ref
...
head repository: cucumber/messages-php
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v24.0.0
Choose a head ref
  • 3 commits
  • 3 files changed
  • 3 contributors

Commits on Nov 3, 2023

  1. Clean up mono repo files (#133)

    - Only a single LICENSE file is needed
    - Maven version updates are handled by Renovate
    - Ruby version updates are handled by Renovate
    mpkorstanje authored Nov 3, 2023
    Copy the full SHA
    9e2e910 View commit details

Commits on Nov 16, 2023

  1. Copy the full SHA
    76828d1 View commit details

Commits on Nov 23, 2023

  1. Copy the full SHA
    31f1d0c View commit details
Showing with 18 additions and 22 deletions.
  1. +1 −1 Dockerfile
  2. +0 −21 LICENSE
  3. +17 −0 src-generated/Exception.php
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#syntax=docker/dockerfile:1.4
#syntax=docker/dockerfile:1.6

# Base image
ARG PHP_VERSION=8.1
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

17 changes: 17 additions & 0 deletions src-generated/Exception.php
Original file line number Diff line number Diff line change
@@ -35,6 +35,11 @@ public function __construct(
* The message of exception that caused this result. E.g. expected: "a" but was: "b"
*/
public readonly ?string $message = null,

/**
* The stringified stack trace of the exception that caused this result
*/
public readonly ?string $stackTrace = null,
) {
}

@@ -47,10 +52,12 @@ public static function fromArray(array $arr): self
{
self::ensureType($arr);
self::ensureMessage($arr);
self::ensureStackTrace($arr);

return new self(
(string) $arr['type'],
isset($arr['message']) ? (string) $arr['message'] : null,
isset($arr['stackTrace']) ? (string) $arr['stackTrace'] : null,
);
}

@@ -76,4 +83,14 @@ private static function ensureMessage(array $arr): void
throw new SchemaViolationException('Property \'message\' was array');
}
}

/**
* @psalm-assert array{stackTrace?: string|int|bool} $arr
*/
private static function ensureStackTrace(array $arr): void
{
if (array_key_exists('stackTrace', $arr) && is_array($arr['stackTrace'])) {
throw new SchemaViolationException('Property \'stackTrace\' was array');
}
}
}