Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 28... Línea 28...
28
     * Reports the same supported features as the parent, but without SUPPORTS_NATIVE_TTL.
28
     * Reports the same supported features as the parent, but without SUPPORTS_NATIVE_TTL.
29
     *
29
     *
30
     * @param array $configuration Configuration
30
     * @param array $configuration Configuration
31
     * @return int Supported features
31
     * @return int Supported features
32
     */
32
     */
33
    public static function get_supported_features(array $configuration = array()) {
33
    public static function get_supported_features(array $configuration = []) {
34
        return parent::get_supported_features($configuration) - self::SUPPORTS_NATIVE_TTL;
34
        return parent::get_supported_features($configuration) - self::SUPPORTS_NATIVE_TTL;
35
    }
35
    }
36
}
36
}
37
 
-