Update ORMInvalidArgumentException.php
Add unused parameters for `invalidAssociation`
This commit is contained in:
parent
04e4940607
commit
643ae78691
1 changed files with 3 additions and 1 deletions
|
@ -199,10 +199,12 @@ class ORMInvalidArgumentException extends \InvalidArgumentException
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @param \Doctrine\ORM\Mapping\ClassMetadata $targetClass
|
||||||
|
* @param array $assoc
|
||||||
* @param mixed $entry
|
* @param mixed $entry
|
||||||
* @return self
|
* @return self
|
||||||
*/
|
*/
|
||||||
public static function invalidAssociation($entry)
|
public static function invalidAssociation($targetClass, $assoc, $entry)
|
||||||
{
|
{
|
||||||
$ex = new self(gettype($entry) . (is_scalar($entry) ? ' "'.$entry.'"': '') . ' is not an Object.');
|
$ex = new self(gettype($entry) . (is_scalar($entry) ? ' "'.$entry.'"': '') . ' is not an Object.');
|
||||||
$ex->value = $entry;
|
$ex->value = $entry;
|
||||||
|
|
Loading…
Add table
Reference in a new issue