Last active
January 1, 2021 12:20
-
-
Save tomasfejfar/94e6982e85a1fd9e7d36e4367d942b81 to your computer and use it in GitHub Desktop.
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
<?php | |
/* my day code */ | |
foreach ($minuteOfMyLife as $now => $whereAmI) { | |
if ($whereAmI == 'atHome') { | |
look_after_Honza(); | |
} elseif ($whereAmI == 'atWork') { | |
code(); | |
} else { | |
ride_my_bike(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment