ShippingRates/src/Validator.php
2014-12-08 20:15:36 +03:00

13 lines
220 B
PHP

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