File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11<?php
22
3+ declare (strict_types=1 );
4+
35namespace App \Doctrine \ORM \DataFixtures \Faker ;
46
57use 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 [
Original file line number Diff line number Diff 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 ) {
Original file line number Diff line number Diff line change 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];
You can’t perform that action at this time.
0 commit comments