diff --git a/src/Context.php b/src/Context.php index 94b3e265c073b043c732a661723d72d11ea7fcf1..5b594e3476261543f08e049ef54f3a824aa21ebc 100644 --- a/src/Context.php +++ b/src/Context.php @@ -480,9 +480,13 @@ class Context } else { $this->application->io->section("Verify service: {$friendlyName} on {$service->provider->name}"); + + // First verify the service provider. foreach ($service->verifyProvider() as $verify_part => $verify_success) { $return_codes[] = $verify_success? 0: 1; } + + // Then run "verify" on the subscriptions. foreach ($this->getSubscription($type)->verify() as $type => $verify_success) { $return_codes[] = $verify_success? 0: 1; }