blob: a55d1d22a35b330ed601a7622fd92b8686857394 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace LdapRecord\Support;
4
5use Closure;
6
7class Helpers
8{
9 /**
10 * Return the default value of the given value.
11 *
12 * @param mixed $value
13 *
14 * @return mixed
15 */
16 public static function value($value)
17 {
18 return $value instanceof Closure ? $value() : $value;
19 }
20}