Skip to content

Instantly share code, notes, and snippets.

View atherlangga's full-sized avatar

Akbar Taufiq Herlangga atherlangga

  • Gojek
  • Yogyakarta, Indonesia
View GitHub Profile
@bitemyapp
bitemyapp / gist:8739525
Last active May 7, 2021 23:22
Learning Haskell
@mbrowne
mbrowne / Account.php
Last active February 8, 2019 14:39
Wrapper-based DCI in PHP accounting for the object identity problem
<?php
namespace DomainObjects;
class Account
{
protected $balance = 0;
function __construct($initialBalance) {
$this->balance = $initialBalance;
}