Skip to content

Instantly share code, notes, and snippets.

@viniciusalonso
Created July 17, 2019 00:19
Show Gist options
  • Save viniciusalonso/8766af61690b9e3cfb0c549fb36e4995 to your computer and use it in GitHub Desktop.
Save viniciusalonso/8766af61690b9e3cfb0c549fb36e4995 to your computer and use it in GitHub Desktop.
<?php
class Money
{
private $value;
private $currency;
public function __construct($value, $currency)
{
$this->value = $value;
$this->currency = $currency;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment