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
{
@vimkaf
vimkaf / cart.php
Last active August 2, 2024 08:10
<?php
$cart = [
"product_id_3" => 8,
"number_of_quantity_3" => 3,
"price_3" => 30000,
"total_3" => 90000,
"product_id_2" => 6,
"number_of_quantity_2" => 3,
"price_2" => 100,