Make WordPress Core

Ticket #34736: 34736.3.patch

File 34736.3.patch, 1.7 KB (added by kirasong, 9 years ago)

Remove extraneous "@type type" mentions

  • src/wp-includes/media.php

     
    10661066                                'url'        => $image_baseurl . $image['file'],
    10671067                                'descriptor' => 'w',
    10681068                                'value'      => $image['width'],
     1069                                'size'       => array(
     1070                                        'width'  => $image['width'],
     1071                                        'height' => $image['height'],
     1072                                ),
    10691073                        );
    10701074                }
    10711075        }
     
    10781082         * @param array  $sources {
    10791083         *     One or more arrays of source data to include in the 'srcset'.
    10801084         *
    1081          *     @type type array $width {
    1082          *          @type type string $url        The URL of an image source.
    1083          *          @type type string $descriptor The descriptor type used in the image candidate string,
    1084          *                                        either 'w' or 'x'.
    1085          *          @type type int    $value      The source width, if paired with a 'w' descriptor or a
    1086          *                                        pixel density value if paired with an 'x' descriptor.
     1085         *     @type array $width {
     1086         *         @type string $url        The URL of an image source.
     1087         *         @type string $descriptor The descriptor type used in the image candidate string,
     1088         *                                  either 'w' or 'x'.
     1089         *         @type int    $value      The source width if paired with a 'w' descriptor, or a
     1090         *                                  pixel density value if paired with an 'x' descriptor.
     1091         *         @type array  $sizes {
     1092         *             @type int $width  Width of the source image.
     1093         *             @type int $height Height of the source image.
     1094         *         }
    10871095         *     }
    10881096         * }
    10891097         * @param array  $size_array    Array of width and height values in pixels (in that order).