This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alert("Test!!!!"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
interface DatabaseDriver { | |
public function save(string $data); | |
} | |
abstract class AbstractPersistence { | |
private $driver; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DEFINITIONS | |
trait DiscountCode { | |
def getValue: Double | |
} | |
trait Adapter[E] { | |
def updateAndReturnEntity(entity: E, amount: Double): E | |
OlderNewer