-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bleeding edge - check LogicalAnd + LogicalOr for booleans
- Loading branch information
1 parent
f820776
commit ee00093
Showing
6 changed files
with
66 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,8 @@ protected function getRule(): Rule | |
false, | ||
true | ||
) | ||
) | ||
), | ||
true | ||
); | ||
} | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
namespace BooleanInLogicalAnd; | ||
|
||
class HelloWorld | ||
{ | ||
/** @return string|false */ | ||
public function returnsStringOrFalse(){ | ||
return false; | ||
} | ||
public function sayHello(): void | ||
{ | ||
if( | ||
($response = $this->returnsStringOrFalse()) | ||
and ($ip_geolocation_data = json_decode($response, true)) | ||
and ($ip_geolocation_data['status'] !== 'fail') | ||
and (date_default_timezone_set($ip_geolocation_data['timezone'])) | ||
){ | ||
|
||
} | ||
} | ||
} |