Warning: session_start(): open(/var/lib/php/sessions/sess_e7olvugp4q6i4iu6d5ej798ifa, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51

Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static O[] toArray(Collection c) { ret toObjectArray(c); } static A[] nuLike toArray(Class type, Iterable c) { ret toArray(c, type); } static A[] toArray(Class type, Cl c) { ret toArray(c, type); } static A[] toArray(Cl c, Class type) { A[] a = arrayOfType(l(c), type); if (a.length == 0) ret a; asList(c).toArray(a); ret a; } static A[] toArray(Iterable c, Class type) { var c2 = asList(c); A[] a = arrayOfType(l(c2), type); if (a.length == 0) ret a; c2.toArray(a); ret a; } // array must have correct length and will be filled static A[] toArray(A[] array, Collection c) { if (array == null || c == null) null; asList(c).toArray(array); ret array; }