mirror of
https://github.com/jupeter/clean-code-php.git
synced 2025-09-26 05:59:04 +02:00
Wording adjustment
This commit is contained in:
@@ -399,10 +399,10 @@ function createMicrobrewery(string $breweryName = 'Hipster Brew Co.'): void
|
||||
```php
|
||||
$a = '42';
|
||||
$b = 42;
|
||||
Use the simple comparison will convert the string in an int
|
||||
// Use the simple comparison that will convert the string in an int
|
||||
|
||||
if( $a != $b ) {
|
||||
//The expression will always passes
|
||||
// The expression will always pass
|
||||
}
|
||||
|
||||
```
|
||||
|
Reference in New Issue
Block a user