Skip to content

Instantly share code, notes, and snippets.

View vimkaf's full-sized avatar
🎯
Focusing

Kay Adamolekun vimkaf

🎯
Focusing
  • Kayworld Technologies
  • Nigeria
  • X @vimkaf
View GitHub Profile
@vimkaf
vimkaf / AdapterPattern.php
Last active February 1, 2023 17:13
Understanding Adapter Design Pattern
<?php
interface BankAccounts{
public function createBankAccount();
}
interface PaymentGateways extends BankAccounts
{