SeleniumStopOptions   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
wmc 4
lcom 1
cbo 1
dl 0
loc 25
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A setSeleniumStopUrl() 0 4 1
A getSeleniumShutdownUrl() 0 4 1
A setSeleniumStopOptions() 0 4 1
A getSeleniumShutDownOptions() 0 4 1
1
<?php
2
3
namespace BeubiQA\Application\Selenium\Options;
4
5
class SeleniumStopOptions extends SeleniumOptions
6
{
7
    protected $seleniumShutdownUrl = 'http://localhost:%d/selenium-server/driver/';
8
    protected $seleniumShutdownOptions = ['query' => ['cmd' => 'shutDownSeleniumServer']];
9
10
    public function setSeleniumStopUrl($url)
11
    {
12
        $this->seleniumShutdownUrl = $url;
13
    }
14
15
    public function getSeleniumShutdownUrl()
16
    {
17
        return sprintf($this->seleniumShutdownUrl, $this->getSeleniumPort());
18
    }
19
20
    public function setSeleniumStopOptions($options)
21
    {
22
        $this->seleniumShutdownOptions = $options;
23
    }
24
25
    public function getSeleniumShutDownOptions()
26
    {
27
        return $this->seleniumShutdownOptions;
28
    }
29
}
30