Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Forked from szyku/resultobjectusage.php
Created June 10, 2019 09:44
Show Gist options
  • Save tsh-code/48bd4e356e4e4a7617fef042bd450269 to your computer and use it in GitHub Desktop.
Save tsh-code/48bd4e356e4e4a7617fef042bd450269 to your computer and use it in GitHub Desktop.
Result Object Usage
<?php
$operation = File::openForRead(join(DIRECTORY_SEPARATOR, [__DIR__, 'credit_cards.txt']));
if ($operation->isSuccessful) {
return CreditCardNumberExtractor::createFromHandler($operation->payload);
}
/* ... */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment