Skip to content
Snippets Groups Projects
Commit 5ab7f2db authored by Demian Katz's avatar Demian Katz
Browse files

Flag some intentionally unused parameters.

parent c1b93e2b
Branches
Tags
No related merge requests found
...@@ -505,6 +505,8 @@ class DefaultRecord extends AbstractBase ...@@ -505,6 +505,8 @@ class DefaultRecord extends AbstractBase
* @param string $field Field name * @param string $field Field name
* *
* @return mixed Caption if found, false if none available. * @return mixed Caption if found, false if none available.
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/ */
public function getSnippetCaption($field) public function getSnippetCaption($field)
{ {
...@@ -1387,6 +1389,8 @@ class DefaultRecord extends AbstractBase ...@@ -1387,6 +1389,8 @@ class DefaultRecord extends AbstractBase
* *
* @return mixed An associative array of hierarchy trees on success * @return mixed An associative array of hierarchy trees on success
* (id => title), false if no hierarchies found * (id => title), false if no hierarchies found
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/ */
public function getHierarchyTrees($hierarchyID = false) public function getHierarchyTrees($hierarchyID = false)
{ {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment