mirror of
https://github.com/pestphp/pest.git
synced 2026-06-05 02:52:12 +02:00
14 lines
158 B
PHP
14 lines
158 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App;
|
|
|
|
final class Math
|
|
{
|
|
public static function add(int $a, int $b): int
|
|
{
|
|
return $a + $b;
|
|
}
|
|
}
|