Make WordPress Core

Ticket #32865: 32865.patch

File 32865.patch, 2.7 KB (added by kraftbj, 8 years ago)
  • src/wp-admin/includes/class-wp-press-this.php

     
    944944         * @access public
    945945         *
    946946         * @param array $data The site's data.
    947          * @returns array Embeds selected to be available.
     947         * @return array Embeds selected to be available.
    948948         */
    949949        public function get_embeds( $data ) {
    950950                $selected_embeds = array();
     
    977977         * @access public
    978978         *
    979979         * @param array $data The site's data.
    980          * @returns array
     980         * @return array
    981981         */
    982982        public function get_images( $data ) {
    983983                $selected_images = array();
     
    10111011         * @access public
    10121012         *
    10131013         * @param array $data The site's data.
    1014          * @returns string Discovered canonical URL, or empty
     1014         * @return string Discovered canonical URL, or empty
    10151015         */
    10161016        public function get_canonical_link( $data ) {
    10171017                $link = '';
     
    10421042         * @access public
    10431043         *
    10441044         * @param array $data The site's data.
    1045          * @returns string Discovered site name, or empty
     1045         * @return string Discovered site name, or empty
    10461046         */
    10471047        public function get_source_site_name( $data ) {
    10481048                $name = '';
     
    10651065         * @access public
    10661066         *
    10671067         * @param array $data The site's data.
    1068          * @returns string Discovered page title, or empty
     1068         * @return string Discovered page title, or empty
    10691069         */
    10701070        public function get_suggested_title( $data ) {
    10711071                $title = '';
     
    10941094         * @access public
    10951095         *
    10961096         * @param array $data The site's data.
    1097          * @returns string Discovered content, or empty
     1097         * @return string Discovered content, or empty
    10981098         */
    10991099        public function get_suggested_content( $data ) {
    11001100                $content = $text = '';
  • src/wp-includes/class-wp-image-editor-gd.php

     
    346346         *
    347347         * @param bool $horz Flip along Horizontal Axis
    348348         * @param bool $vert Flip along Vertical Axis
    349          * @returns true|WP_Error
     349         * @return true|WP_Error
    350350         */
    351351        public function flip( $horz, $vert ) {
    352352                $w = $this->size['width'];
  • src/wp-includes/class-wp-image-editor-imagick.php

     
    413413         *
    414414         * @param bool $horz Flip along Horizontal Axis
    415415         * @param bool $vert Flip along Vertical Axis
    416          * @returns true|WP_Error
     416         * @return true|WP_Error
    417417         */
    418418        public function flip( $horz, $vert ) {
    419419                try {