Skip to content

Instantly share code, notes, and snippets.

@LucasOliveiraS
Last active August 7, 2018 17:32
Show Gist options
  • Select an option

  • Save LucasOliveiraS/afa664de9011eb831848047788bd45d1 to your computer and use it in GitHub Desktop.

Select an option

Save LucasOliveiraS/afa664de9011eb831848047788bd45d1 to your computer and use it in GitHub Desktop.
Embed on Medium
<?php
Class View {
private $valor;
public function __construct($valor) {
$this->valor = $valor;
}
public function render() {
echo 'Valor do Bitcoin (EUR): ' . $this->valor;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment