Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created May 25, 2017 16:16
Show Gist options
  • Save NandoKstroNet/dfe6d1fa5f5f5478ba90f1b265ada3e6 to your computer and use it in GitHub Desktop.
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
<?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