Skip to content

Commit ee2a236

Browse files
committed
composer test
1 parent 0103428 commit ee2a236

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

app/Doctrine/ORM/DataFixtures/Faker/Faker.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace App\Doctrine\ORM\DataFixtures\Faker;
46

57
use App\Doctrine\ORM\Entity\Artist as ArtistEntity;
@@ -32,8 +34,8 @@ public function load(ObjectManager $manager): void
3234
'source' => 'SBD> D> CD-R> EAC> SHN; via Jay Serafin, Brian '
3335
. 'Walker; see info file and pub comments for notes; '
3436
. 'possibly "click track" audible on a couple tracks',
35-
'DSBD > 1C > DAT; Seeded to etree by Dan Stephens',
3637
],
38+
['source' => 'DSBD > 1C > DAT; Seeded to etree by Dan Stephens'],
3739
],
3840
],
3941
[
@@ -68,9 +70,7 @@ public function load(ObjectManager $manager): void
6870
'city' => 'West Valley City',
6971
'state' => 'UT',
7072
'recordings' => [
71-
[
72-
'source' => 'AKG480 > Aerco preamp > SBM-1',
73-
],
73+
['source' => 'AKG480 > Aerco preamp > SBM-1'],
7474
],
7575
],
7676
[

app/Doctrine/ORM/Entity/Performance.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ public function removeRecording(Recording $recording): bool
145145
return $this->recordings->removeElement($recording);
146146
}
147147

148+
/** @param mixed[] $recordings */
148149
public function addRecordings(Collection $recordings): self
149150
{
150151
foreach ($recordings as $recording) {
@@ -155,6 +156,7 @@ public function addRecordings(Collection $recordings): self
155156
return $this;
156157
}
157158

159+
/** @param mixed[] $recordings */
158160
public function removeRecordings(Collection $recordings): self
159161
{
160162
foreach ($recordings as $recording) {

config/doctrine-data-fixtures.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
'objectManager' => EntityManager::class,
3030
'executor' => ORMExecutor::class,
3131
'purger' => ORMPurger::class,
32-
'fixtures' => [
33-
Faker\Faker::class
34-
],
32+
'fixtures' => [Faker\Faker::class],
3533
],
3634
];

0 commit comments

Comments
 (0)