It seems like the GitHub access token used for retrieving details about this repository from
GitHub became invalid. This might prevent certain types of inspections from being run (in
particular,
everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
This class seems to be duplicated in your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate
the same code in three or more different places, we strongly encourage you to
look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.
Loading history...
25
{
26
/**
27
* Change the logging level.
28
*
29
* @Endpoint(name="log:level")
30
*
31
* @param string $arg the subsystem logging identifier
32
* @param string $arg1 the log level, with ‘debug’ the most verbose and ‘critical’ the least verbose
33
*
34
* @return Command
35
*/
36
public function level(string $arg, string $arg1): Command
37
{
38
return new Command(__METHOD__, get_defined_vars());
39
}
40
41
/**
42
* List the logging subsystems.
43
*
44
* @Endpoint(name="log:ls")
45
*
46
* @return Command
47
*/
48
public function ls(): Command
49
{
50
return new Command(__METHOD__, get_defined_vars());
51
}
52
53
/**
54
* Read the event log.
55
*
56
* @Endpoint(name="log:tail")
57
*
58
* @return Command
59
*/
60
public function tail(): Command
61
{
62
return new Command(__METHOD__, get_defined_vars());
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.