Index: src/wp-admin/includes/media.php
===================================================================
--- src/wp-admin/includes/media.php	(revision 49081)
+++ src/wp-admin/includes/media.php	(working copy)
@@ -176,7 +176,7 @@
  * @since 2.6.0
  *
  * @param string  $html    The image HTML markup to send.
- * @param integer $id      Image attachment ID.
+ * @param int     $id      Image attachment ID.
  * @param string  $caption Image caption.
  * @param string  $title   Image title attribute (not used).
  * @param string  $align   Image CSS alignment property.
@@ -1319,7 +1319,7 @@
  * @since 2.5.0
  *
  * @param string  $html
- * @param integer $attachment_id
+ * @param int     $attachment_id
  * @param array   $attachment
  * @return string
  */
@@ -2275,7 +2275,7 @@
  *
  * @param string  $type
  * @param object  $errors
- * @param integer $id
+ * @param int     $id
  */
 function media_upload_type_form( $type = 'file', $errors = null, $id = null ) {
 
@@ -2349,7 +2349,7 @@
  *
  * @param string  $type
  * @param object  $errors
- * @param integer $id
+ * @param int     $id
  */
 function media_upload_type_url_form( $type = null, $errors = null, $id = null ) {
 	if ( null === $type ) {
Index: src/wp-content/themes/twentyseventeen/inc/template-tags.php
===================================================================
--- src/wp-content/themes/twentyseventeen/inc/template-tags.php	(revision 49081)
+++ src/wp-content/themes/twentyseventeen/inc/template-tags.php	(working copy)
@@ -127,7 +127,7 @@
  * Display a front page section.
  *
  * @param WP_Customize_Partial $partial Partial associated with a selective refresh request.
- * @param integer              $id Front page section to display.
+ * @param int $id Front page section to display.
  */
 function twentyseventeen_front_page_section( $partial = null, $id = 0 ) {
 	if ( is_a( $partial, 'WP_Customize_Partial' ) ) {
Index: src/wp-content/themes/twentythirteen/functions.php
===================================================================
--- src/wp-content/themes/twentythirteen/functions.php	(revision 49081)
+++ src/wp-content/themes/twentythirteen/functions.php	(working copy)
@@ -515,7 +515,7 @@
 	 *
 	 * @since Twenty Thirteen 1.0
 	 *
-	 * @param boolean $echo (optional) Whether to echo the date. Default true.
+	 * @param bool $echo (optional) Whether to echo the date. Default true.
 	 * @return string The HTML-formatted post date.
 	 */
 	function twentythirteen_entry_date( $echo = true ) {
Index: src/wp-includes/class-json.php
===================================================================
--- src/wp-includes/class-json.php	(revision 49081)
+++ src/wp-includes/class-json.php	(working copy)
@@ -950,8 +950,8 @@
      * @deprecated 5.3.0 Use the PHP native JSON extension instead.
      *
      * @param string
-     * @param integer start
-     * @param integer length
+     * @param int start
+     * @param int length
      * @return integer length
      */
     function substr8( $string, $start, $length=false ) 
Index: src/wp-includes/class-requests.php
===================================================================
--- src/wp-includes/class-requests.php	(revision 49081)
+++ src/wp-includes/class-requests.php	(working copy)
@@ -498,7 +498,7 @@
 	 * Get the default options
 	 *
 	 * @see Requests::request() for values returned by this method
-	 * @param boolean $multirequest Is this a multirequest?
+	 * @param bool $multirequest Is this a multirequest?
 	 * @return array Default option values
 	 */
 	protected static function get_default_options($multirequest = false) {
Index: src/wp-includes/class-simplepie.php
===================================================================
--- src/wp-includes/class-simplepie.php	(revision 49081)
+++ src/wp-includes/class-simplepie.php	(working copy)
@@ -1304,7 +1304,7 @@
 	/**
 	 * Set the limit for items returned per-feed with multifeeds
 	 *
-	 * @param integer $limit The maximum number of items to return.
+	 * @param int $limit The maximum number of items to return.
 	 */
 	public function set_item_limit($limit = 0)
 	{
Index: src/wp-includes/class-wp-simplepie-file.php
===================================================================
--- src/wp-includes/class-wp-simplepie-file.php	(revision 49081)
+++ src/wp-includes/class-wp-simplepie-file.php	(working copy)
@@ -23,13 +23,13 @@
 	 * @since 3.2.0 Updated to use a PHP5 constructor.
 	 *
 	 * @param string       $url             Remote file URL.
-	 * @param integer      $timeout         Optional. How long the connection should stay open in seconds.
+	 * @param int          $timeout         Optional. How long the connection should stay open in seconds.
 	 *                                      Default 10.
-	 * @param integer      $redirects       Optional. The number of allowed redirects. Default 5.
+	 * @param int          $redirects       Optional. The number of allowed redirects. Default 5.
 	 * @param string|array $headers         Optional. Array or string of headers to send with the request.
 	 *                                      Default null.
 	 * @param string       $useragent       Optional. User-agent value sent. Default null.
-	 * @param boolean      $force_fsockopen Optional. Whether to force opening internet or unix domain socket
+	 * @param bool      $force_fsockopen Optional. Whether to force opening internet or unix domain socket
 	 *                                      connection or not. Default false.
 	 */
 	public function __construct( $url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false ) {
Index: src/wp-includes/class-wp-simplepie-sanitize-kses.php
===================================================================
--- src/wp-includes/class-wp-simplepie-sanitize-kses.php	(revision 49081)
+++ src/wp-includes/class-wp-simplepie-sanitize-kses.php	(working copy)
@@ -27,7 +27,7 @@
 	 * @since 3.5.0
 	 *
 	 * @param mixed   $data The data that needs to be sanitized.
-	 * @param integer $type The type of data that it's supposed to be.
+	 * @param int $type The type of data that it's supposed to be.
 	 * @param string  $base Optional. The `xml:base` value to use when converting relative
 	 *                      URLs to absolute ones. Default empty.
 	 * @return mixed Sanitized data.
Index: src/wp-includes/class-wp-widget.php
===================================================================
--- src/wp-includes/class-wp-widget.php	(revision 49081)
+++ src/wp-includes/class-wp-widget.php	(working copy)
@@ -544,7 +544,7 @@
 	 *
 	 * @since 2.8.0
 	 *
-	 * @param integer $number Optional. The unique order number of this widget instance
+	 * @param int $number Optional. The unique order number of this widget instance
 	 *                        compared to other instances of the same class. Default -1.
 	 */
 	public function _register_one( $number = -1 ) {
Index: src/wp-includes/class-wp-xmlrpc-server.php
===================================================================
--- src/wp-includes/class-wp-xmlrpc-server.php	(revision 49081)
+++ src/wp-includes/class-wp-xmlrpc-server.php	(working copy)
@@ -5573,7 +5573,7 @@
 	 *
 	 * @since 2.8.0
 	 *
-	 * @param integer $post_ID   Post ID.
+	 * @param int $post_ID   Post ID.
 	 * @param array   $enclosure Enclosure data.
 	 */
 	public function add_enclosure_if_new( $post_ID, $enclosure ) {
Index: src/wp-includes/pomo/streams.php
===================================================================
--- src/wp-includes/pomo/streams.php	(revision 49081)
+++ src/wp-includes/pomo/streams.php	(working copy)
@@ -62,7 +62,7 @@
 		/**
 		 * Reads an array of 32-bit Integers from the Stream
 		 *
-		 * @param integer $count How many elements should be read
+		 * @param int $count How many elements should be read
 		 * @return mixed Array of integers or false if there isn't
 		 *  enough data or on error
 		 */
Index: src/wp-includes/pomo/translations.php
===================================================================
--- src/wp-includes/pomo/translations.php	(revision 49081)
+++ src/wp-includes/pomo/translations.php	(working copy)
@@ -116,7 +116,7 @@
 		 * This function should be overridden by the subclasses. For example MO/PO can derive the logic
 		 * from their headers.
 		 *
-		 * @param integer $count number of items
+		 * @param int $count number of items
 		 */
 		function select_plural_form( $count ) {
 			return 1 == $count ? 0 : 1;
Index: src/wp-includes/Requests/Exception.php
===================================================================
--- src/wp-includes/Requests/Exception.php	(revision 49081)
+++ src/wp-includes/Requests/Exception.php	(working copy)
@@ -31,7 +31,7 @@
 	 * @param string $message Exception message
 	 * @param string $type Exception type
 	 * @param mixed $data Associated data
-	 * @param integer $code Exception numerical code, if applicable
+	 * @param int $code Exception numerical code, if applicable
 	 */
 	public function __construct($message, $type, $data = null, $code = 0) {
 		parent::__construct($message, $code);
Index: src/wp-includes/Requests/Response.php
===================================================================
--- src/wp-includes/Requests/Response.php	(revision 49081)
+++ src/wp-includes/Requests/Response.php	(working copy)
@@ -105,7 +105,7 @@
 	 *
 	 * @throws Requests_Exception If `$allow_redirects` is false, and code is 3xx (`response.no_redirects`)
 	 * @throws Requests_Exception_HTTP On non-successful status code. Exception class corresponds to code (e.g. {@see Requests_Exception_HTTP_404})
-	 * @param boolean $allow_redirects Set to false to throw on a 3xx as well
+	 * @param bool $allow_redirects Set to false to throw on a 3xx as well
 	 */
 	public function throw_for_status($allow_redirects = true) {
 		if ($this->is_redirect()) {
Index: src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php
===================================================================
--- src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php	(revision 49081)
+++ src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php	(working copy)
@@ -1371,7 +1371,7 @@
 	 * @since 4.9.0 Added the `$validate` parameter.
 	 *
 	 * @param string  $template Page template filename.
-	 * @param integer $post_id  Post ID.
+	 * @param int     $post_id  Post ID.
 	 * @param bool    $validate Whether to validate that the template selected is valid.
 	 */
 	public function handle_template( $template, $post_id, $validate = false ) {
Index: src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php
===================================================================
--- src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php	(revision 49081)
+++ src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php	(working copy)
@@ -1173,7 +1173,7 @@
 	 *
 	 * @since 4.7.0
 	 *
-	 * @param integer $user_id User ID.
+	 * @param int $user_id User ID.
 	 * @param array   $roles   New user roles.
 	 * @return true|WP_Error True if the current user is allowed to make the role change,
 	 *                       otherwise a WP_Error object.
Index: src/wp-includes/SimplePie/HTTP/Parser.php
===================================================================
--- src/wp-includes/SimplePie/HTTP/Parser.php	(revision 49081)
+++ src/wp-includes/SimplePie/HTTP/Parser.php	(working copy)
@@ -498,8 +498,8 @@
 	/**
 	 * Prepare headers (take care of proxies headers)
 	 *
-	 * @param string  $headers Raw headers
-	 * @param integer $count   Redirection count. Default to 1.
+	 * @param string $headers Raw headers
+	 * @param int $count Redirection count. Default to 1.
 	 *
 	 * @return string
 	 */
Index: src/wp-includes/Text/Diff.php
===================================================================
--- src/wp-includes/Text/Diff.php	(revision 49081)
+++ src/wp-includes/Text/Diff.php	(working copy)
@@ -210,7 +210,7 @@
      * with array_walk().
      *
      * @param string $line  The line to trim.
-     * @param integer $key  The index of the line in the array. Not used.
+     * @param int $key  The index of the line in the array. Not used.
      */
     static function trimNewlines(&$line, $key)
     {
Index: src/wp-includes/widgets/class-wp-widget-custom-html.php
===================================================================
--- src/wp-includes/widgets/class-wp-widget-custom-html.php	(revision 49081)
+++ src/wp-includes/widgets/class-wp-widget-custom-html.php	(working copy)
@@ -58,7 +58,7 @@
 	 *
 	 * @since 4.9.0
 	 *
-	 * @param integer $number Optional. The unique order number of this widget instance
+	 * @param int $number Optional. The unique order number of this widget instance
 	 *                        compared to other instances of the same class. Default -1.
 	 */
 	public function _register_one( $number = -1 ) {
Index: src/wp-includes/widgets/class-wp-widget-media.php
===================================================================
--- src/wp-includes/widgets/class-wp-widget-media.php	(revision 49081)
+++ src/wp-includes/widgets/class-wp-widget-media.php	(working copy)
@@ -96,7 +96,7 @@
 	 *
 	 * @since 4.8.0
 	 *
-	 * @param integer $number Optional. The unique order number of this widget instance
+	 * @param int $number Optional. The unique order number of this widget instance
 	 *                        compared to other instances of the same class. Default -1.
 	 */
 	public function _register_one( $number = -1 ) {
Index: src/wp-includes/widgets/class-wp-widget-text.php
===================================================================
--- src/wp-includes/widgets/class-wp-widget-text.php	(revision 49081)
+++ src/wp-includes/widgets/class-wp-widget-text.php	(working copy)
@@ -45,7 +45,7 @@
 	/**
 	 * Add hooks for enqueueing assets when registering all widget instances of this widget class.
 	 *
-	 * @param integer $number Optional. The unique order number of this widget instance
+	 * @param int $number Optional. The unique order number of this widget instance
 	 *                        compared to other instances of the same class. Default -1.
 	 */
 	public function _register_one( $number = -1 ) {
