embedded-php/core

View on GitHub
src/Gpio/PiPhpGpio.php

Summary

Maintainability
C
1 day
Test Coverage

Showing 8 of 8 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

public function waitForFalling(int $pin, int $timeout): bool {
if (isset($this->pins[$pin]) === false) {
throw new RuntimeException(
sprintf(
'Pin %d is not in input mode',
Severity: Major
Found in src/Gpio/PiPhpGpio.php and 1 other location - About 2 hrs to fix
src/Gpio/PiPhpGpio.php on lines 192..216

Similar blocks of code found in 2 locations. Consider refactoring.
Open

public function waitForRising(int $pin, int $timeout): bool {
if (isset($this->pins[$pin]) === false) {
throw new RuntimeException(
sprintf(
'Pin %d is not in input mode',
Severity: Major
Found in src/Gpio/PiPhpGpio.php and 1 other location - About 2 hrs to fix
src/Gpio/PiPhpGpio.php on lines 166..190

Similar blocks of code found in 2 locations. Consider refactoring.
Open

public function isLow(int $pin): bool {
if (isset($this->pins[$pin]) === false) {
throw new RuntimeException(
sprintf(
'Pin %d is not in input mode',
Severity: Major
Found in src/Gpio/PiPhpGpio.php and 1 other location - About 1 hr to fix
src/Gpio/PiPhpGpio.php on lines 72..92

Similar blocks of code found in 2 locations. Consider refactoring.
Open

public function isHigh(int $pin): bool {
if (isset($this->pins[$pin]) === false) {
throw new RuntimeException(
sprintf(
'Pin %d is not in input mode',
Severity: Major
Found in src/Gpio/PiPhpGpio.php and 1 other location - About 1 hr to fix
src/Gpio/PiPhpGpio.php on lines 94..114

Similar blocks of code found in 2 locations. Consider refactoring.
Open

public function setHigh(int $pin): void {
if (isset($this->pins[$pin]) === false) {
throw new RuntimeException(
sprintf(
'Pin %d is not in output mode',
Severity: Major
Found in src/Gpio/PiPhpGpio.php and 1 other location - About 1 hr to fix
src/Gpio/PiPhpGpio.php on lines 138..158

Similar blocks of code found in 2 locations. Consider refactoring.
Open

public function setLow(int $pin): void {
if (isset($this->pins[$pin]) === false) {
throw new RuntimeException(
sprintf(
'Pin %d is not in output mode',
Severity: Major
Found in src/Gpio/PiPhpGpio.php and 1 other location - About 1 hr to fix
src/Gpio/PiPhpGpio.php on lines 116..136

Similar blocks of code found in 2 locations. Consider refactoring.
Open

public function timeInLow(int $pin, int $timeout): int {
$t0 = microtime(true);
if ($this->waitForFalling($pin, $timeout) === 0) {
return 0;
}
Severity: Minor
Found in src/Gpio/PiPhpGpio.php and 1 other location - About 30 mins to fix
src/Gpio/PiPhpGpio.php on lines 218..229

Similar blocks of code found in 2 locations. Consider refactoring.
Open

public function timeInHigh(int $pin, int $timeout): int {
$t0 = microtime(true);
if ($this->waitForRising($pin, $timeout) === 0) {
return 0;
}
Severity: Minor
Found in src/Gpio/PiPhpGpio.php and 1 other location - About 30 mins to fix
src/Gpio/PiPhpGpio.php on lines 231..242
Category
Status