Tweaking deprecation message to include class name

This commit is contained in:
Ryan Weaver 2015-11-23 12:07:13 -05:00 committed by Fabien Potencier
parent 2dbb75aef4
commit 07d627de0f
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class BCResourceInterfaceChecker extends SelfCheckingResourceChecker
public function isFresh(ResourceInterface $resource, $timestamp)
{
@trigger_error('Resource checking through ResourceInterface::isFresh() is deprecated since 2.8 and will be removed in 3.0', E_USER_DEPRECATED);
@trigger_error(sprintf('The class "%s" is performing resource checking through ResourceInterface::isFresh(), which is deprecated since 2.8 and will be removed in 3.0', get_class($resource)), E_USER_DEPRECATED);
return parent::isFresh($resource, $timestamp); // For now, $metadata features the isFresh() method, so off we go (quack quack)
}