| Total Complexity | 2 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class RecordingPasscode extends Command |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var int |
||
| 19 | */ |
||
| 20 | protected $scoId; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $passcode; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var Permission|mixed |
||
| 29 | */ |
||
| 30 | protected $permission; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param int $scoId |
||
| 34 | * @param string $passcode |
||
| 35 | */ |
||
| 36 | public function __construct($scoId, $passcode) |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | * |
||
| 46 | * @return bool |
||
| 47 | */ |
||
| 48 | protected function process() |
||
| 69 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.