Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Rename inheritance param name to its default name ()
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeKESTEMAN committed Aug 25, 2022
1 parent 20c0c61 commit 597b49b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/DataFixtures/Processor/MediaObjectProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function __construct(private readonly string $appEnv)
/**
* {@inheritdoc}
*/
public function preProcess(string $fixtureId, $object): void
public function preProcess(string $id, $object): void
{
if (!$object instanceof MediaObject) {
return;
Expand All @@ -40,7 +40,7 @@ public function preProcess(string $fixtureId, $object): void
/**
* {@inheritdoc}
*/
public function postProcess(string $fixtureId, $object): void
public function postProcess(string $id, $object): void
{
// do nothing
}
Expand Down

0 comments on commit 597b49b

Please sign in to comment.