Skip to content

Instantly share code, notes, and snippets.

@szyku
Created April 28, 2019 10:11
Show Gist options
  • Save szyku/baa986f6ac4c1fd5cddd1cd0aade4e5f to your computer and use it in GitHub Desktop.
Save szyku/baa986f6ac4c1fd5cddd1cd0aade4e5f 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