Created
May 25, 2017 16:16
-
-
Save NandoKstroNet/dfe6d1fa5f5f5478ba90f1b265ada3e6 to your computer and use it in GitHub Desktop.
Classe Soma final, criada no post Silex e Testes da Code Experts Learning
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 | |
namespace App; | |
class Soma | |
{ | |
public function fazSoma(int $num1, int $num2): int | |
{ | |
return $num1 + $num2; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment