Skip to content

Commit c7ba046

Browse files
committed
php-cs-fixer fix
1 parent 8641a64 commit c7ba046

File tree

3 files changed

+27
-54
lines changed

3 files changed

+27
-54
lines changed

tests/Command/DumpConfigurationTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,7 @@ interface: null
278278
generatorTemplates: []
279279

280280

281-
YAML
282-
,
281+
YAML,
283282
$commandTester->getDisplay()
284283
);
285284
}

tests/Command/ExtractCardinalitiesCommandTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1475,7 +1475,6 @@ public function testExtractCardinalities(): void
14751475
"https:\/\/schema.org\/mainEntityOfPage": "unknown"
14761476
}
14771477

1478-
JSON
1479-
, $commandTester->getDisplay());
1478+
JSON, $commandTester->getDisplay());
14801479
}
14811480
}

tests/Command/GenerateCommandTest.php

Lines changed: 25 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ public function getFriends(): Collection
7070
{
7171
return $this->friends;
7272
}
73-
PHP
74-
, $person);
73+
PHP, $person);
7574
}
7675

7776
public function testCustomAttributes(): void
@@ -106,29 +105,24 @@ public function testCustomAttributes(): void
106105
#[MyAttribute]
107106
class Book
108107
{
109-
PHP
110-
, $book);
108+
PHP, $book);
111109

112110
// Attributes given as unordered map.
113111
$this->assertStringContainsString(<<<'PHP'
114112
#[ORM\OneToMany(targetEntity: 'App\Entity\Review', mappedBy: 'book', cascade: ['persist', 'remove'])]
115-
PHP
116-
, $book);
113+
PHP, $book);
117114
$this->assertStringContainsString(<<<'PHP'
118115
#[ORM\OrderBy(name: 'ASC')]
119-
PHP
120-
, $book);
116+
PHP, $book);
121117
// Generated attribute could be merged with next one that is a configured one.
122118
$this->assertStringContainsString(<<<'PHP'
123119
#[ORM\InverseJoinColumn(nullable: false, unique: true, name: 'first_join_column')]
124-
PHP
125-
, $book);
120+
PHP, $book);
126121
// Configured attribute could not be merged with next one and it is treated
127122
// as repeated.
128123
$this->assertStringContainsString(<<<'PHP'
129124
#[ORM\InverseJoinColumn(name: 'second_join_column')]
130-
PHP
131-
, $book);
125+
PHP, $book);
132126
}
133127

134128
public function testFluentMutators(): void
@@ -147,8 +141,7 @@ public function setUrl(?string $url): self
147141
148142
return $this;
149143
}
150-
PHP
151-
, $person);
144+
PHP, $person);
152145

153146
$this->assertStringContainsString(<<<'PHP'
154147
public function addFriend(Person $friend): self
@@ -164,8 +157,7 @@ public function removeFriend(Person $friend): self
164157
165158
return $this;
166159
}
167-
PHP
168-
, $person);
160+
PHP, $person);
169161
}
170162

171163
public function testDoNotGenerateAccessorMethods(): void
@@ -230,8 +222,7 @@ public function testPropertyDefault(): void
230222

231223
$this->assertStringContainsString(<<<'PHP'
232224
private string $availability = 'https://schema.org/InStock';
233-
PHP
234-
, $book);
225+
PHP, $book);
235226
}
236227

237228
public function testReadableWritable(): void
@@ -274,16 +265,14 @@ public function testGeneratedId(): void
274265
#[ORM\GeneratedValue(strategy: 'AUTO')]
275266
#[ORM\Column(type: 'integer')]
276267
private ?int $id = null;
277-
PHP
278-
, $person);
268+
PHP, $person);
279269

280270
$this->assertStringContainsString(<<<'PHP'
281271
public function getId(): ?int
282272
{
283273
return $this->id;
284274
}
285-
PHP
286-
, $person);
275+
PHP, $person);
287276

288277
$this->assertStringNotContainsString('setId(', $person);
289278
}
@@ -304,24 +293,21 @@ public function testNonGeneratedId(): void
304293
#[ORM\Id]
305294
#[ORM\Column(type: 'string')]
306295
private string $id;
307-
PHP
308-
, $person);
296+
PHP, $person);
309297

310298
$this->assertStringContainsString(<<<'PHP'
311299
public function getId(): string
312300
{
313301
return $this->id;
314302
}
315-
PHP
316-
, $person);
303+
PHP, $person);
317304

318305
$this->assertStringContainsString(<<<'PHP'
319306
public function setId(string $id): void
320307
{
321308
$this->id = $id;
322309
}
323-
PHP
324-
, $person);
310+
PHP, $person);
325311
}
326312

327313
public function testGeneratedUuid(): void
@@ -342,16 +328,14 @@ public function testGeneratedUuid(): void
342328
#[ORM\Column(type: 'guid')]
343329
#[Assert\Uuid]
344330
private ?string $id = null;
345-
PHP
346-
, $person);
331+
PHP, $person);
347332

348333
$this->assertStringContainsString(<<<'PHP'
349334
public function getId(): ?string
350335
{
351336
return $this->id;
352337
}
353-
PHP
354-
, $person);
338+
PHP, $person);
355339

356340
$this->assertStringNotContainsString('setId(', $person);
357341
}
@@ -373,25 +357,22 @@ public function testNonGeneratedUuid(): void
373357
#[ORM\Column(type: 'guid')]
374358
#[Assert\Uuid]
375359
private string $id;
376-
PHP
377-
, $person);
360+
PHP, $person);
378361

379362
$this->assertStringContainsString(<<<'PHP'
380363
public function getId(): string
381364
{
382365
return $this->id;
383366
}
384-
PHP
385-
, $person);
367+
PHP, $person);
386368

387369
$this->assertStringContainsString(<<<'PHP'
388370
public function setId(string $id): void
389371
{
390372
$this->id = $id;
391373
}
392374

393-
PHP
394-
, $person);
375+
PHP, $person);
395376
}
396377

397378
public function testDoNotGenerateId(): void
@@ -463,8 +444,7 @@ public function testGeneratedEnum(): void
463444
$this->assertStringContainsString(<<<'PHP'
464445
/** @var string The female gender. */
465446
public const FEMALE = 'https://schema.org/Female';
466-
PHP
467-
, $gender);
447+
PHP, $gender);
468448

469449
$this->assertStringNotContainsString('function setId(', $gender);
470450
}
@@ -490,8 +470,7 @@ public function testSupersededProperties(): void
490470
#[ORM\Column(type: 'text', nullable: true)]
491471
#[ApiProperty(types: ['https://schema.org/award'])]
492472
private ?string $award = null;
493-
PHP
494-
, $creativeWork);
473+
PHP, $creativeWork);
495474

496475
$this->assertStringNotContainsString('protected', $creativeWork);
497476
}
@@ -517,8 +496,7 @@ public function testActivityStreams(): void
517496
#[ORM\Column(type: 'text', nullable: true, name: '`content`')]
518497
#[ApiProperty(types: ['http://www.w3.org/ns/activitystreams#content'])]
519498
private ?string $content = null;
520-
PHP
521-
, $object);
499+
PHP, $object);
522500

523501
$page = file_get_contents("$outputDir/App/Entity/Page.php");
524502

@@ -531,8 +509,7 @@ public function testActivityStreams(): void
531509
#[ORM\Entity]
532510
#[ApiResource(types: ['http://www.w3.org/ns/activitystreams#Page'], routePrefix: 'as')]
533511
class Page extends Object_
534-
PHP
535-
, $page);
512+
PHP, $page);
536513

537514
self::assertFalse($this->fs->exists("$outputDir/App/Entity/Delete.php"));
538515
self::assertFalse($this->fs->exists("$outputDir/App/Entity/Travel.php"));
@@ -556,8 +533,7 @@ public function testGeneratedSimpleArray(): void
556533
#[ORM\Column(type: 'simple_array', nullable: true)]
557534
#[Assert\Unique]
558535
private ?array $shareWith = [];
559-
PHP
560-
, $source);
536+
PHP, $source);
561537

562538
$this->assertStringContainsString(<<<'PHP'
563539
public function setShareWith(?array $shareWith): void
@@ -569,8 +545,7 @@ public function getShareWith(): ?array
569545
{
570546
return $this->shareWith;
571547
}
572-
PHP
573-
, $source);
548+
PHP, $source);
574549
$this->assertStringNotContainsString('function addShareWith', $source);
575550
$this->assertStringNotContainsString('function removeShareWith', $source);
576551
}

0 commit comments

Comments
 (0)