- Issue created by @lostcarpark
- Merge request !8Move VerifyEmailRepository class and interface into Service directory → (Merged) created by Unnamed author
- 🇮🇪Ireland lostcarpark
Thanks for working on this, @ankit_k.
Tests are failing because
VerifyEmailRepository
referencesVerifyEmailInterface
, which was in the same namespace, so didn't need ause
statement. To fix, adduse Drupal\verify_email\VerifyEmailInterface;
to service and its interface.PHPCS is also failing for the following reasons:
In
Verifier
,use Drupal\verify_email\Service\VerifyEmailRepositoryInterface;
is no longer required, because both services are in the same namespace.In
VerifyEmailRepositoryInterface
, the @return docblock needs the full path to the class (again, it wasn't needed before because it was in the same namespace):@return \Drupal\verify_email\VerifyEmailInterface|null
.Again, thanks for your efforts. I think it only needs a couple of minor fixes to get over the line.
- 🇮🇳India ankit_k
@lostcarpark I have applied required changes but Tests are still failing.
- 🇮🇪Ireland lostcarpark
Thank you both for working on this. This looks good and all tests are now passing.
I have reviewed the change, checked the tests pass locally, and carried out a manual test, and I'm happy to move to RTBC.
- 🇮🇪Ireland lostcarpark
Thank you ankit_k and nidhi27.
Change is now merged and issue fixed.