Warning: session_start(): open(/var/lib/php/sessions/sess_g6khi4j37cu3cb0oot5shrhgsd, 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 L findStaticMethodsNamed(O obj, S method) {
if (obj == null) ret null;
ret findStaticMethodsNamed(_getClass(obj), method);
}
static L findStaticMethodsNamed(Class c, S method) {
new L l;
while (c != null) {
for (Method m : c.getDeclaredMethods())
if ((m.getModifiers() & Method.STATIC) != 0 && m.getName().equals(method)) {
m.setAccessible(true);
l.add(m);
}
c = c.getSuperclass();
}
ret l;
}