Skip to content

Commit

Permalink
Fix diff-sniffer complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdude committed Feb 23, 2021
1 parent c59a214 commit 9acb92f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 0 additions & 3 deletions lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ class ClassMetadataFactory extends AbstractClassMetadataFactory
/** @var mixed[] */
private $embeddablesActiveNesting = [];

/**
* @param EntityManagerInterface $em
*/
public function setEntityManager(EntityManagerInterface $em)
{
$this->em = $em;
Expand Down
10 changes: 8 additions & 2 deletions tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3300Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ interface DDC3300Boss
/** @Entity */
class DDC3300HumanBoss extends DDC3300Person implements DDC3300Boss
{
/** @Column(type="string") */
/**
* @var string
* @Column(type="string")
*/
public $bossCol;

public function __construct($bossCol)
Expand All @@ -93,7 +96,10 @@ interface DDC3300Employee
/** @Entity */
class DDC3300HumanEmployee extends DDC3300Person implements DDC3300Employee
{
/** @Column(type="string") */
/**
* @var string
* @Column(type="string")
*/
public $employeeCol;

public function __construct($employeeCol)
Expand Down

0 comments on commit 9acb92f

Please sign in to comment.