summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/modules/sitemaps/sitemap-buffer-fallback.php')
-rw-r--r--plugins/jetpack/modules/sitemaps/sitemap-buffer-fallback.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/jetpack/modules/sitemaps/sitemap-buffer-fallback.php b/plugins/jetpack/modules/sitemaps/sitemap-buffer-fallback.php
index 46758766..7a87aa96 100644
--- a/plugins/jetpack/modules/sitemaps/sitemap-buffer-fallback.php
+++ b/plugins/jetpack/modules/sitemaps/sitemap-buffer-fallback.php
@@ -3,7 +3,7 @@
* The fallback buffer for users with no XML support.
*
* @since 5.3.0
- * @package Jetpack
+ * @package automattic/jetpack
*/
/**
@@ -29,8 +29,8 @@ abstract class Jetpack_Sitemap_Buffer_Fallback extends Jetpack_Sitemap_Buffer {
$this->finder = new Jetpack_Sitemap_Finder();
- $this->item_capacity = max( 1, intval( $item_limit ) );
- $this->byte_capacity = max( 1, intval( $byte_limit ) ) - strlen( $this->contents() );
+ $this->item_capacity = max( 1, (int) $item_limit );
+ $this->byte_capacity = max( 1, (int) $byte_limit ) - strlen( $this->contents() );
}
/**
@@ -98,7 +98,7 @@ abstract class Jetpack_Sitemap_Buffer_Fallback extends Jetpack_Sitemap_Buffer {
/**
* Legacy implementation of array to XML conversion without using DOMDocument.
*
- * @param Array $array
+ * @param array $array
* @return String $result
*/
public function array_to_xml_string( $array, $parent = null, $root = null ) {