ShippingRates/src/Validator.php

10 lines
188 B
PHP
Raw Normal View History

<?php
namespace pdt256\Shipping;
class Validator {
public static function checkIfNull($value, $name) {
if ($value === null) {
throw new \LogicException("$name is not set");
}
}
}