Completed
Push — master ( 074470...51e9f3 )
by Dominik
19s queued 13s
created
Labels
Severity
1
<?php
2
3
if (defined('ABSPATH')) {
4
    update_option('template', get_option('template') . '/templates');
0 ignored issues
show
Are you sure get_option('template') of type false|mixed can be used in concatenation? ( Ignorable by Annotation )

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

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