kaivladimirv/sum-calculator

There is no license information available for the latest version (dev-master) of this package.

Класс для расчета суммы двух чисел

dev-master 2021-12-29 10:47 UTC

This package is auto-updated.

Last update: 2025-04-29 01:23:09 UTC


README

Производит суммирование двух чисел.

Examples

<?php
require __DIR__ . '/../vendor/autoload.php';

use OtusPackages\SumCalculator;

$sum = (new SumCalculator())->calc(12, 12);

echo  "Сумма: {$sum}". PHP_EOL;