Skip to content

Commit

Permalink
FRW-7400 Upgraded PHPStan to 1.10.*. (#10911)
Browse files Browse the repository at this point in the history
FRW-7400 Update PHPStan to 1.10.*
  • Loading branch information
olhalivitchuk authored May 6, 2024
1 parent a1f28ce commit 6e9eee9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Spryker/Zed/Url/Persistence/Propel/Mapper/UrlMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@

use Generated\Shared\Transfer\UrlCollectionTransfer;
use Generated\Shared\Transfer\UrlTransfer;
use Propel\Runtime\Collection\ObjectCollection;
use Propel\Runtime\Collection\Collection;

class UrlMapper
{
/**
* @param \Propel\Runtime\Collection\ObjectCollection<\Orm\Zed\Url\Persistence\SpyUrl> $urlEntities
* @param \Propel\Runtime\Collection\Collection<\Orm\Zed\Url\Persistence\SpyUrl> $urlEntities
* @param \Generated\Shared\Transfer\UrlCollectionTransfer $urlCollectionTransfer
*
* @return \Generated\Shared\Transfer\UrlCollectionTransfer
*/
public function mapUrlEntitiesToUrlCollectionTransfer(ObjectCollection $urlEntities, UrlCollectionTransfer $urlCollectionTransfer): UrlCollectionTransfer
public function mapUrlEntitiesToUrlCollectionTransfer(Collection $urlEntities, UrlCollectionTransfer $urlCollectionTransfer): UrlCollectionTransfer
{
foreach ($urlEntities as $urlEntity) {
$urlCollectionTransfer->addUrl(
Expand Down

0 comments on commit 6e9eee9

Please sign in to comment.