Segment::assert PHP Method

assert() private static method

Assert value or throw.
private static assert ( array $value, string $msg )
$value array
$msg string
    private static function assert($value, $msg)
    {
        if (!$value) {
            throw new Exception($msg);
        }
    }