Skip to content

Commit

Permalink
[stubs] Add one to many stub to be loaded in demos (#6251)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba authored Aug 23, 2024
1 parent 2891d15 commit c936c7e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions stubs/Doctrine/ORM/Mapping/OneToMany.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

declare(strict_types=1);

namespace Doctrine\ORM\Mapping;

if (class_exists('Doctrine\ORM\Mapping\OneToMany')) {
return;
}

final class OneToMany
{
public function __construct($targetEntity)
{
}
}

0 comments on commit c936c7e

Please sign in to comment.