We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1e9e90 commit 4f0653bCopy full SHA for 4f0653b
tests/Math/Adder.php
@@ -0,0 +1,11 @@
1
+<?php
2
+
3
+namespace MintyPHP\Mocking\Tests\Math;
4
5
+class Adder
6
+{
7
+ public static function add($a, $b):int
8
+ {
9
+ return $a+$b;
10
+ }
11
+}
0 commit comments