lib/Selenide/SelenideElement.php
The class SelenideElement has 11 public methods. Consider refactoring SelenideElement to keep number of public methods under 10. Open
Open
class SelenideElement
{
/**
* @var \WebDriver_Element
*/
- Read upRead up
- Exclude checks
TooManyPublicMethods
Since: 0.1
A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.
By default it ignores methods starting with 'get' or 'set'.
Example
Source https://phpmd.org/rules/codesize.html#toomanypublicmethods
Avoid unused parameters such as '$text'. Open
Open
public function selectOption($text)
- Read upRead up
- Exclude checks
UnusedFormalParameter
Since: 0.2
Avoid passing parameters to methods or constructors and then not using those parameters.
Example
class Foo
{
private function bar($howdy)
{
// $howdy is not used
}
}