Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created May 25, 2017 16:11
Show Gist options
  • Save NandoKstroNet/bcbcf06578bf7bbf27b945058b3f5242 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/bcbcf06578bf7bbf27b945058b3f5242 to your computer and use it in GitHub Desktop.
Classe Soma criada no post Silex e Testes da Code Experts Learning
<?php
namespace App;
class Soma
{
public function fazSoma($num1, $num2): int
{
return 30;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment