Conditions | 3 |
Paths | 4 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function get_file_url_for_environment( $min_path, $non_min_path ) { |
||
22 | $path = ( Jetpack_Constants::is_defined( 'SCRIPT_DEBUG' ) && Jetpack_Constants::get_constant( 'SCRIPT_DEBUG' ) ) |
||
23 | ? $non_min_path |
||
24 | : $min_path; |
||
25 | return plugins_url( $path, JETPACK__PLUGIN_FILE ); |
||
26 | } |
||
27 | |||
39 |