13 lines
220 B
PHP
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");
|
|
}
|
|
}
|
|
}
|