Skip to content

Commit

Permalink
Coding Standards: Fix newlines in wp-includes/date.php.
Browse files Browse the repository at this point in the history
See #47775.

git-svn-id: https://develop.svn.wordpress.org/trunk@45679 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Jul 26, 2019
1 parent 0eaaf84 commit d18b725
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/wp-includes/date.php
@@ -1,14 +1,14 @@
<?php
/**
* Class for generating SQL clauses that filter a primary query according to date.
*
* This file is deprecated, use 'wp-includes/class-wp-date-query.php' instead.
*
* @deprecated 5.3.0
* @package WordPress
*/

_deprecated_file( basename( __FILE__ ), '5.3.0', 'wp-includes/class-wp-date-query.php' );

/** WP_Date_Query class */
require_once( ABSPATH . 'wp-includes/class-wp-date-query.php' );
<?php
/**
* Class for generating SQL clauses that filter a primary query according to date.
*
* This file is deprecated, use 'wp-includes/class-wp-date-query.php' instead.
*
* @deprecated 5.3.0
* @package WordPress
*/

_deprecated_file( basename( __FILE__ ), '5.3.0', 'wp-includes/class-wp-date-query.php' );

/** WP_Date_Query class */
require_once( ABSPATH . 'wp-includes/class-wp-date-query.php' );

0 comments on commit d18b725

Please sign in to comment.