PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UnusedFunctionParameterStandard.xml

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UnusedFunctionParameterStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UnusedFunctionParameterStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 601 bytes
 

Contents

Class file image Download
<documentation title="Unused function parameters"> <standard> <![CDATA[ All parameters in a functions signature should be used within the function. ]]> </standard> <code_comparison> <code title="Valid: All the parameters are used."> <![CDATA[ function addThree($a, $b, $c) { return <em>$a + $b + $c</em>; } ]]> </code> <code title="Invalid: One of the parameters is not being used."> <![CDATA[ function addThree($a, $b, $c) { return <em>$a + $b</em>; } ]]> </code> </code_comparison> </documentation>