clean-code-php
clean-code-php copied to clipboard
:bathtub: Clean Code concepts adapted for PHP
Ukrainian translation
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...
PR #208 @TomasVotruba previously addressed #194
// 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 {...