1 | <?php |
||
5 | class Util |
||
6 | { |
||
7 | /** |
||
8 | * Copies the members of obj1 that have public getters to obj2 if there exists a public setter in obj2 of the same suffix, it will also copy public variables. |
||
9 | * |
||
10 | * @param object $obj1 |
||
11 | * @param object $obj2 |
||
12 | */ |
||
13 | 36 | public static function copy($obj1, $obj2) |
|
14 | { |
||
15 | 36 | if (!is_object($obj1)) { |
|
16 | throw new \InvalidArgumentException('$obj1 must be an object, not '.gettype($obj1)); |
||
17 | } |
||
18 | 36 | if (!is_object($obj2)) { |
|
19 | throw new \InvalidArgumentException('$obj2 must be an object, not '.gettype($obj2)); |
||
20 | } |
||
21 | 36 | $reflection1 = new \ReflectionObject($obj1); |
|
22 | 36 | $reflection2 = new \ReflectionObject($obj2); |
|
23 | 36 | self::copyMethods([$obj1, $obj2], $reflection1, $reflection2); |
|
24 | 36 | self::copyProperties([$obj1, $obj2], $reflection1, $reflection2); |
|
25 | 36 | } |
|
26 | |||
27 | /** |
||
28 | * @param array[object, object] $payload |
||
29 | * @param \ReflectionObject $reflection1 |
||
30 | * @param \ReflectionObject $reflection2 |
||
31 | */ |
||
32 | 36 | private static function copyProperties(array $payload, \ReflectionObject $reflection1, \ReflectionObject $reflection2) |
|
33 | { |
||
34 | 36 | list($obj1, $obj2) = $payload; |
|
35 | 36 | $publicVars = $reflection1->getProperties(\ReflectionProperty::IS_PUBLIC); |
|
36 | 36 | foreach ($publicVars as $property) { |
|
37 | $propertyName = $property->getName(); |
||
38 | if ($reflection2->hasProperty($propertyName) && $reflection2->getProperty($propertyName)->isPublic()) { |
||
39 | $obj2->$propertyName = $obj1->$propertyName; |
||
40 | } |
||
41 | } |
||
42 | 36 | } |
|
43 | |||
44 | /** |
||
45 | * @param array[object, object] $payload |
||
46 | * @param \ReflectionObject $reflection1 |
||
47 | * @param \ReflectionObject $reflection2 |
||
48 | */ |
||
49 | 36 | private static function copyMethods(array $payload, \ReflectionObject $reflection1, \ReflectionObject $reflection2) |
|
50 | { |
||
51 | 36 | list($obj1, $obj2) = $payload; |
|
52 | 36 | $methods = $reflection1->getMethods(\ReflectionMethod::IS_PUBLIC); |
|
53 | 36 | foreach ($methods as $method) { |
|
54 | 36 | $methodName = $method->name; |
|
55 | 36 | if (0 === strpos($methodName, 'get')) { |
|
56 | 36 | $getMethod = $methodName; |
|
57 | 36 | $setMethod = $methodName; |
|
58 | 36 | $setMethod[0] = 's'; |
|
59 | 36 | self::copyMethod([$obj1, $obj2], $getMethod, $setMethod, $reflection2); |
|
|
|||
60 | } |
||
61 | } |
||
62 | 36 | } |
|
63 | |||
64 | /** |
||
65 | * @param array[object, object] $payload |
||
66 | * @param string $getMethod |
||
67 | * @param string $setMethod |
||
68 | * @param \ReflectionObject $reflection2 |
||
69 | */ |
||
70 | 36 | private static function copyMethod(array $payload, $getMethod, $setMethod, \ReflectionObject $reflection2) |
|
71 | { |
||
72 | 36 | list($obj1, $obj2) = $payload; |
|
73 | 36 | if ($reflection2->hasMethod($setMethod)) { |
|
74 | 36 | $value = $obj1->$getMethod(); |
|
75 | 36 | if (null !== $value) { |
|
76 | 36 | $obj2->$setMethod($value); |
|
77 | } |
||
78 | } |
||
79 | 36 | } |
|
80 | |||
81 | /** |
||
82 | * @param string $varName |
||
83 | * @param int $var |
||
84 | * @param int $pow |
||
85 | */ |
||
86 | 4 | public static function validateIntNull($varName, $var, $pow) |
|
101 | |||
102 | 110 | public static function getMicrotimeStr() |
|
103 | { |
||
104 | 110 | $parts = explode(' ', microtime()); |
|
111 | |||
112 | /** |
||
113 | * @throws \RuntimeException |
||
114 | * |
||
115 | * @return \DateTime |
||
116 | */ |
||
117 | 84 | public static function getMicrotimeDateTime() |
|
126 | |||
127 | 16 | public static function getMicrotimeDecimal() |
|
131 | |||
132 | 32 | public static function getMicrotimeDecimalFormat(\DateTime $dateTime) |
|
139 | |||
140 | 21 | public static function getDateTimeFromDecimalFormat($decimal) |
|
148 | } |
||
149 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: