Subversion Repositories oidplus

Rev

Rev 1116 | Rev 1221 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1116 Rev 1130
Line 18... Line 18...
18
 */
18
 */
19
 
19
 
20
// Note that there are no translations _L() because if we get an error at this
20
// Note that there are no translations _L() because if we get an error at this
21
// stage, then we have no language plugins anyways.
21
// stage, then we have no language plugins anyways.
22
 
22
 
-
 
23
/**
-
 
24
 * @return array
-
 
25
 */
23
function oidplus_get_missing_dependencies() {
26
function oidplus_get_missing_dependencies(): array {
24
        $missing_dependencies = array();
27
        $missing_dependencies = array();
25
 
28
 
26
        if (!extension_loaded('standard')) {
29
        if (!extension_loaded('standard')) {
27
                $missing_dependencies[] = 'standard';
30
                $missing_dependencies[] = 'standard';
28
        }
31
        }