<?php class Calculator { public static function add($a, $b) { return $a + $b; } public static function divide($a, $b) { return $a / $b; } }