clean-code-php icon indicating copy to clipboard operation
clean-code-php copied to clipboard

:bathtub: Clean Code concepts adapted for PHP

Results 29 clean-code-php issues
Sort by recently updated
recently updated
newest added

There is a problem in the fibonacci function. The fibonacci number is not defined for numbers < 0. The current function would run in an endless loop (as far as...

// Bad class MyClass { private const MY_CONSTANT = 5; // public function myFunction(): void { $myVar = self::MY_CONSTANT; } // Good idea? Let's check it out! class MyClass {...