From eaa148d9623d2da2f4d52d0b7993227dd64a610f Mon Sep 17 00:00:00 2001 From: Ben Cromwell Date: Fri, 20 May 2016 10:50:56 +0100 Subject: [PATCH] setCharset is a real method and so the doccomment is not required `setCharset` is covered by a concrete implementation in the class and not part of the __call magic method. It therefore doesn't need the @method doccomment declaration. This change prevents IDEs such as PhpStorm from picking it up as an error. --- library/Zend/View/Helper/HeadMeta.php | 1 - 1 file changed, 1 deletion(-) diff --git a/library/Zend/View/Helper/HeadMeta.php b/library/Zend/View/Helper/HeadMeta.php index de58edd5dc..6da93f442a 100644 --- a/library/Zend/View/Helper/HeadMeta.php +++ b/library/Zend/View/Helper/HeadMeta.php @@ -41,7 +41,6 @@ * @method $this prependHttpEquiv($keyValue, $content, $conditionalHttpEquiv) * @method $this prependName($keyValue, $content, $conditionalName) * @method $this prependProperty($property, $content, $modifiers) - * @method $this setCharset($charset) * @method $this setHttpEquiv($keyValue, $content, $modifiers) * @method $this setName($keyValue, $content, $modifiers) * @method $this setProperty($property, $content, $modifiers)