Skip to content

Commit

Permalink
test fail
Browse files Browse the repository at this point in the history
  • Loading branch information
honzabrecka committed Nov 21, 2023
1 parent 3fd0100 commit 15b599b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest]
php: ['8.0', '8.1', '8.2', '8.3']
sapi: ['php', 'php-cgi']

Expand Down
4 changes: 2 additions & 2 deletions src/transit/handlers/KeywordHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ public function type() {
}

public function representation($obj) {
return (string)$obj;
return (string)'foo';
}

public function resolve($obj) {
return new Keyword($obj);
}

}
}

0 comments on commit 15b599b

Please sign in to comment.