mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 07:40:07 +00:00
Coding Standards: Use strict comparison where static strings are involved.
This reduces the number of `WordPress.PHP.StrictComparisons.LooseComparison` issues in half, from 1897 to 890. Includes minor code layout fixes for better readability. See #49542. git-svn-id: https://develop.svn.wordpress.org/trunk@47808 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -69,7 +69,7 @@ if ( ! $theme->exists() ) {
|
||||
wp_die( __( 'The requested theme does not exist.' ) );
|
||||
}
|
||||
|
||||
if ( $theme->errors() && 'theme_no_stylesheet' == $theme->errors()->get_error_code() ) {
|
||||
if ( $theme->errors() && 'theme_no_stylesheet' === $theme->errors()->get_error_code() ) {
|
||||
wp_die( __( 'The requested theme does not exist.' ) . ' ' . $theme->errors()->get_error_message() );
|
||||
}
|
||||
|
||||
@@ -162,7 +162,7 @@ if ( ! empty( $posted_content ) ) {
|
||||
$f = fopen( $file, 'r' );
|
||||
$content = fread( $f, filesize( $file ) );
|
||||
|
||||
if ( '.php' == substr( $file, strrpos( $file, '.' ) ) ) {
|
||||
if ( '.php' === substr( $file, strrpos( $file, '.' ) ) ) {
|
||||
$functions = wp_doc_link_parse( $content );
|
||||
|
||||
$docs_select = '<select name="docs-list" id="docs-list">';
|
||||
@@ -228,7 +228,7 @@ if ( $file_description != $file_show ) {
|
||||
<select name="theme" id="theme">
|
||||
<?php
|
||||
foreach ( wp_get_themes( array( 'errors' => null ) ) as $a_stylesheet => $a_theme ) {
|
||||
if ( $a_theme->errors() && 'theme_no_stylesheet' == $a_theme->errors()->get_error_code() ) {
|
||||
if ( $a_theme->errors() && 'theme_no_stylesheet' === $a_theme->errors()->get_error_code() ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user