We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49e21e1 commit 711a28eCopy full SHA for 711a28e
3 files changed
.github/workflows/security.yml
@@ -4,7 +4,7 @@ on:
4
push:
5
pull_request:
6
schedule:
7
- - cron: '0 0 * * *'
+ - cron: '0 0 * * 0'
8
9
jobs:
10
security:
.github/workflows/tests.yml
tests:
tests/Unit/SimplePrintTypesTest.php
@@ -170,7 +170,9 @@ public static function prettyPrintableTypesDataProvider(): iterable
170
#[DataProvider('prettyPrintableTypesDataProvider')]
171
public function testPrettyPrinting(TypeStatement $stmt, string $expected): void
172
{
173
- $printer = new PrettyPrinter();
+ $printer = new PrettyPrinter(
174
+ wrapUnionType: false,
175
+ );
176
177
self::assertSame($expected, $printer->print($stmt));
178
}
0 commit comments