| 1 | <?php |
||
| 16 | abstract class AbstractMemberCommand extends SilverStripeCommand |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Get a member by the provided email address, output an error message if not found |
||
| 20 | * |
||
| 21 | * @param InputInterface $input |
||
| 22 | * @param OutputInterface $output |
||
| 23 | * @return Member|false |
||
| 24 | */ |
||
| 25 | protected function getMember(InputInterface $input, OutputInterface $output) |
||
| 42 | } |
||
| 43 | |||
| 44 |