Last active
August 7, 2018 17:32
-
-
Save LucasOliveiraS/afa664de9011eb831848047788bd45d1 to your computer and use it in GitHub Desktop.
Embed on Medium
This file contains hidden or 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 | |
| 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