Passed
Push — master ( c12078...950ab2 )
by Doğa
03:01
created

index.php (2 issues)

Labels
Severity
1
<?php
2
3
if (defined('ABSPATH')) {
4
    update_option('template', get_option('template') . '/templates');
0 ignored issues
show
The function update_option was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

4
    /** @scrutinizer ignore-call */ 
5
    update_option('template', get_option('template') . '/templates');
Loading history...
The function get_option was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

4
    update_option('template', /** @scrutinizer ignore-call */ get_option('template') . '/templates');
Loading history...
5
}
6
7
die();
8