ShippingRates/src/Validator.php

13 lines
220 B
PHP
Raw Normal View History

<?php
namespace pdt256\Shipping;
2014-12-08 20:15:36 +03:00
class Validator
{
public static function checkIfNull($value, $name)
{
if ($value === null) {
throw new \LogicException("$name is not set");
}
}
}