-
Notifications
You must be signed in to change notification settings - Fork 5
/
Objects.php
111 lines (101 loc) · 2.07 KB
/
Objects.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
namespace __\Traits;
use __;
trait Objects
{
/**
* Check if give value is array or not.
*
* @usage __::isArray([1, 2, 3]);
* >> true
*
* @param mixed $value
*
* @return bool
*/
public static function isArray($value = null): bool
{
return is_array($value);
}
/**
* Check if give value is function or not.
*
* @usage __::isFunction(function ($a) { return $a + 2; });
* >> true
*
* @param mixed $value
*
* @return bool
*/
public static function isFunction($value = null): bool
{
return is_callable($value);
}
/**
* Check if give value is null or not.
*
* @usage __::isNull(null);
* >> true
*
* @param mixed $value
*
* @return bool
*/
public static function isNull($value = null): bool
{
return is_null($value);
}
/**
* Check if give value is number or not.
*
* @usage __::isNumber(123);
* >> true
*
* @param mixed $value
*
* @return bool
*/
public static function isNumber($value = null): bool
{
return is_numeric($value);
}
/**
* Check if give value is object or not.
*
* @usage __::isObject('fred');
* >> false
*
* @param mixed $value
*
* @return bool
*/
public static function isObject($value = null): bool
{
return is_object($value);
}
/**
* Check if give value is string or not.
*
* @usage __::isString('fred');
* >> true
*
* @param mixed $value
*
* @return bool
*/
public static function isString($value = null): bool
{
return is_string($value);
}
/**
* Check if the object is a collection. A collection is either an array or an object.
*
* @param mixed $value
*
* @return bool
*/
public static function isCollection($value): bool
{
return __::isArray($value) || __::isObject($value);
}
}