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
function placeOrder(order) { | |
saveOrderToDatabase(order); | |
const invoiceFile = generateOrderInvoiceFile(order); | |
sendInvoiceEmail(order, invoiceFile); | |
} | |
function saveOrderToDatabase(order){ | |
// The implementation details of how to save an order to the database | |
} |
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
configure: creating cache /Users/gabriel/.phpbrew/cache/config.cache | |
./configure: line 3188: /Users/gabriel/.phpbrew/cache/config.cache: No such file or directory | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for a sed that does not truncate output... /opt/local/bin/gsed | |
checking build system type... x86_64-apple-darwin16.7.0 | |
checking host system type... x86_64-apple-darwin16.7.0 | |
checking target system type... x86_64-apple-darwin16.7.0 | |
checking for cc... cc | |
checking whether the C compiler works... yes |