search: Use self::class instead of __CLASS__ in SearchResultSet
authorTimo Tijhof <krinklemail@gmail.com>
Wed, 8 Aug 2018 00:08:37 +0000 (01:08 +0100)
committerTimo Tijhof <krinklemail@gmail.com>
Wed, 8 Aug 2018 00:08:37 +0000 (01:08 +0100)
For ease of understanding, use the same technique for both
sides of the comparison. Follows-up c2a308075f.

Change-Id: I66475fd4baaa6ab7cd24ad884e9fe01a1cd30d9f

includes/search/SearchResultSet.php

index e82779a..14d5c4b 100644 (file)
@@ -81,7 +81,7 @@ class SearchResultSet implements Countable, IteratorAggregate {
         *  results available.
         */
        public function __construct( $containedSyntax = false, $hasMoreResults = false ) {
-               if ( static::class === __CLASS__ ) {
+               if ( static::class === self::class ) {
                        // This class will eventually be abstract. SearchEngine implementations
                        // already have to extend this class anyways to provide the actual
                        // search results.