1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Update ORMInvalidArgumentException.php

Add unused parameters for `invalidAssociation`
This commit is contained in:
flip111 2015-01-13 20:02:31 +01:00 committed by Marco Pivetta
parent 04e4940607
commit 643ae78691

View file

@ -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;