From 91ef535ae3afdc7410de9cac9a76f3b819a5a43e Mon Sep 17 00:00:00 2001 From: Mike van Riel Date: Fri, 27 Jul 2012 06:56:37 +0200 Subject: [PATCH] #544: Added self and $this to the exceptions where type expansion is not required --- src/phpDocumentor/Reflection/DocBlock.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phpDocumentor/Reflection/DocBlock.php b/src/phpDocumentor/Reflection/DocBlock.php index a3e07a1..941c858 100644 --- a/src/phpDocumentor/Reflection/DocBlock.php +++ b/src/phpDocumentor/Reflection/DocBlock.php @@ -325,7 +325,7 @@ class DocBlock implements \Reflector $ignore_keywords = array( 'string', 'int', 'integer', 'bool', 'boolean', 'float', 'double', 'object', 'mixed', 'array', 'resource', 'void', 'null', - 'callback', 'false', 'true' + 'callback', 'false', 'true', 'self', '$this', 'callable' ); }