Created
December 13, 2025 22:47
-
-
Save mcsee/207cda2d66d6c44257cc81b87c5b61b6 to your computer and use it in GitHub Desktop.
This gist belongs to Clean Code Cookbook http://cleancodecookbook.com By Maximiliano Contieri http://maximilianocontieri.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class UserRepository { | |
| public function find($id){ | |
| $conn = mysqli_connect( | |
| "localhost", // Pull Request comment - Bad indentation | |
| "root", | |
| "password123", | |
| "app" | |
| ); | |
| $query = "Select * FROM users WHERE id = $id"; | |
| // Pull Request comment - SELECT should be uppercase | |
| return mysqli_query($conn, $query); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment