Skip to content

Instantly share code, notes, and snippets.

View devsdmf's full-sized avatar

Lucas Mendes devsdmf

View GitHub Profile
@devsdmf
devsdmf / test.js
Created May 10, 2019 17:50
Test js
alert("Test!!!!");
<?php
interface DatabaseDriver {
public function save(string $data);
}
abstract class AbstractPersistence {
private $driver;
@devsdmf
devsdmf / adapter-w-strategy.scala
Last active February 13, 2020 20:06
Scala's Adapters and Strategies
// DEFINITIONS
trait DiscountCode {
def getValue: Double
}
trait Adapter[E] {
def updateAndReturnEntity(entity: E, amount: Double): E