From 03474b690d22e8c32ecdb94ae59d4a493881020e Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon Date: Wed, 24 Feb 2016 08:10:11 -0800 Subject: [PATCH] Issue #2673552 by mcjim: Add missing @return documentation for _buildArguments() in ViewExecutable.php --- core/modules/views/src/ViewExecutable.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/modules/views/src/ViewExecutable.php b/core/modules/views/src/ViewExecutable.php index 0363bafab0ba..25aad6228d57 100644 --- a/core/modules/views/src/ViewExecutable.php +++ b/core/modules/views/src/ViewExecutable.php @@ -1019,6 +1019,9 @@ class ViewExecutable implements \Serializable { /** * Builds all the arguments. + * + * @return bool + * TRUE if the arguments were built successfully, FALSE otherwise. */ protected function _buildArguments() { // Initially, we want to build sorts and fields. This can change, though,