Skip to content

Instantly share code, notes, and snippets.

@DarkcoderSe
Created March 23, 2022 14:47
Show Gist options
  • Save DarkcoderSe/170fed8f47e6630a77f418d0791455ab to your computer and use it in GitHub Desktop.
Save DarkcoderSe/170fed8f47e6630a77f418d0791455ab to your computer and use it in GitHub Desktop.
<?php
$passengerCount = 51;
function calculateVehicles($passengers) : void {
echo ceil($passengers / 5);
}
calculateVehicles($passengerCount);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment