Explorar el Código

dymanic dbo cast

tags/0.1.0
Robin Thoni hace 9 años
padre
commit
13cdac8137
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. 12
    0
      src/Utils/LuDbo.php

+ 12
- 0
src/Utils/LuDbo.php Ver fichero

@@ -10,4 +10,16 @@ abstract class LuDbo implements \JsonSerializable {
10 10
     {
11 11
         return json_encode($this);
12 12
     }
13
+
14
+    /**
15
+     * @param $newClass $newClass
16
+     * @return mixed
17
+     */
18
+    public function castAs($newClass) {
19
+        $obj = new $newClass;
20
+        foreach (get_object_vars($this) as $key => $name) {
21
+            $obj->$key = $name;
22
+        }
23
+        return $obj;
24
+    }
13 25
 }

Loading…
Cancelar
Guardar