GitHub Access Token became invalid

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.
Completed
Push — master ( 64a210...2d6991 )
by Stan
02:42
created

ReplyKeyboardHide   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 1
cbo 1
dl 0
loc 14
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A setHideKeyboard() 0 4 1
1
<?php
2
3
namespace Teebot\Entity;
4
5
class ReplyKeyboardHide extends AbstractEntity {
6
7
    protected $hide_keyboard = true;
8
9
    protected $selective;
10
11
    /**
12
     * @param boolean $hide_keyboard
13
     */
14
    public function setHideKeyboard($hide_keyboard)
0 ignored issues
show
Unused Code introduced by
The parameter $hide_keyboard is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
15
    {
16
        $this->hide_keyboard = true;
17
    }
18
}
19