From 19eaf8b50ff8e429d776346c1549cdcc87a4b9d3 Mon Sep 17 00:00:00 2001 From: JDGrimes Date: Fri, 6 Feb 2015 11:43:16 -0500 Subject: [PATCH] PHPCS Fixes --- .travis.yml | 2 +- wp-http-testcase.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index dc4a8a0..22709d5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,7 +34,7 @@ script: - find . -name '*.php' -exec php -lf {} \; - > if [[ $TRAVIS_PHP_VERSION == 5.3 ]]; then - /tmp/phpcs/scripts/phpcs -ns --standard=WordPress $(find . -name '*.php') + /tmp/phpcs/scripts/phpcs -ns --standard=WordPress-Extra $(find . -name '*.php') else echo 'Not running PHPCS.' fi diff --git a/wp-http-testcase.php b/wp-http-testcase.php index a3dbee2..3b25eff 100644 --- a/wp-http-testcase.php +++ b/wp-http-testcase.php @@ -401,7 +401,7 @@ public static function save_cache() { } } -if ( ! defined( 'WP_HTTP_TC_NO_BACKPAT') ) { +if ( ! defined( 'WP_HTTP_TC_NO_BACKPAT' ) ) { abstract class WP_HTTP_UnitTestCase extends WP_HTTP_TestCase {} }