| @@ -64,7 +64,7 @@ discard block | ||
| 64 | 64 | * | 
| 65 | 65 | * @param string $url URL to transform. | 
| 66 | 66 | * | 
| 67 | - * @return bool|string | |
| 67 | + * @return false|string | |
| 68 | 68 | */ | 
| 69 | 69 | public function getpath( $url ) | 
| 70 | 70 |      { | 
| @@ -610,7 +610,7 @@ discard block | ||
| 610 | 610 | /** | 
| 611 | 611 | * Logs given `$data` for debugging purposes (when debug logging is on). | 
| 612 | 612 | * | 
| 613 | - * @param mixed $data Data to log. | |
| 613 | + * @param string $data Data to log. | |
| 614 | 614 | * | 
| 615 | 615 | * @return void | 
| 616 | 616 | */ | 
| @@ -632,7 +632,7 @@ discard block | ||
| 632 | 632 | * | 
| 633 | 633 | * @param string $filepath Filepath. | 
| 634 | 634 | * | 
| 635 | - * @return bool|string to be minified code or false. | |
| 635 | + * @return false|string to be minified code or false. | |
| 636 | 636 | */ | 
| 637 | 637 | protected function prepare_minify_single( $filepath ) | 
| 638 | 638 |      { | 
| @@ -434,7 +434,7 @@ | ||
| 434 | 434 | * size = total filesize (in bytes) of found files | 
| 435 | 435 | * timestamp = unix timestamp when the scan was last performed/finished. | 
| 436 | 436 | * | 
| 437 | - * @return array | |
| 437 | + * @return integer[] | |
| 438 | 438 | */ | 
| 439 | 439 | protected static function stats_scan() | 
| 440 | 440 |      { | 
| @@ -752,6 +752,9 @@ discard block | ||
| 752 | 752 | return $preload_onload; | 
| 753 | 753 | } | 
| 754 | 754 | |
| 755 | + /** | |
| 756 | + * @param string $key | |
| 757 | + */ | |
| 755 | 758 | public function get($key) | 
| 756 | 759 |      { | 
| 757 | 760 |          if ( ! is_array( $this->config ) ) { | 
| @@ -778,6 +781,9 @@ discard block | ||
| 778 | 781 | return false; | 
| 779 | 782 | } | 
| 780 | 783 | |
| 784 | + /** | |
| 785 | + * @param string $url | |
| 786 | + */ | |
| 781 | 787 |      private function getFutttaFeeds($url) { | 
| 782 | 788 |          if ( $this->settings_screen_do_remote_http ) { | 
| 783 | 789 | $rss = fetch_feed( $url ); | 
| @@ -1,5 +1,8 @@ discard block | ||
| 1 | 1 | <?php | 
| 2 | -if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly. | |
| 2 | +if ( ! defined( 'ABSPATH' ) ) { | |
| 3 | + exit; | |
| 4 | +} | |
| 5 | +// Exit if accessed directly. | |
| 3 | 6 | |
| 4 | 7 | class autoptimizeConfig | 
| 5 | 8 |  { | 
| @@ -791,10 +794,13 @@ discard block | ||
| 791 | 794 | <ul> | 
| 792 | 795 | <?php if ( $maxitems == 0 ) : ?> | 
| 793 | 796 | <li><?php _e( 'No items', 'autoptimize' ); ?></li> | 
| 794 | - <?php else : ?> | |
| 797 | +                <?php else { | |
| 798 | + : ?> | |
| 795 | 799 | <?php foreach ( $rss_items as $item ) : ?> | 
| 796 | 800 | <li> | 
| 797 | - <a href="<?php echo esc_url( $item->get_permalink() ); ?>" | |
| 801 | + <a href="<?php echo esc_url( $item->get_permalink() ); | |
| 802 | +} | |
| 803 | +?>" | |
| 798 | 804 |                                  title="<?php printf( __( 'Posted %s', 'autoptimize' ), $item->get_date('j F Y | g:i a') ); ?>"> | 
| 799 | 805 | <?php echo esc_html( $item->get_title() ); ?> | 
| 800 | 806 | </a> | 
| @@ -437,6 +437,9 @@ | ||
| 437 | 437 | } | 
| 438 | 438 | } | 
| 439 | 439 | |
| 440 | + /** | |
| 441 | + * @return string | |
| 442 | + */ | |
| 440 | 443 | private function get_imgopt_base_url() | 
| 441 | 444 |      { | 
| 442 | 445 | static $imgopt_base_url = null; | 
| @@ -104,7 +104,7 @@ | ||
| 104 | 104 | /** | 
| 105 | 105 | * Doesn't do much in case of HTML (no cache in css/js sense there) | 
| 106 | 106 | * | 
| 107 | - * @return true | |
| 107 | + * @return boolean | |
| 108 | 108 | */ | 
| 109 | 109 | public function cache() | 
| 110 | 110 |      { | 
| @@ -253,7 +253,7 @@ | ||
| 253 | 253 | * | 
| 254 | 254 | * @param bool $doing_tests Allows overriding the optimization of only | 
| 255 | 255 | * deciding once per request (for use in tests). | 
| 256 | - * @return bool | |
| 256 | + * @return boolean|null | |
| 257 | 257 | */ | 
| 258 | 258 | public function should_buffer( $doing_tests = false ) | 
| 259 | 259 |      { | 
| @@ -418,6 +418,10 @@ discard block | ||
| 418 | 418 | } | 
| 419 | 419 | |
| 420 | 420 | // Checks against the white- and blacklists | 
| 421 | + | |
| 422 | + /** | |
| 423 | + * @param string $tag | |
| 424 | + */ | |
| 421 | 425 | private function ismergeable($tag) | 
| 422 | 426 |      { | 
| 423 | 427 |          if ( ! $this->aggregate ) { | 
| @@ -457,6 +461,10 @@ discard block | ||
| 457 | 461 | } | 
| 458 | 462 | |
| 459 | 463 | // Checks agains the blacklist | 
| 464 | + | |
| 465 | + /** | |
| 466 | + * @param string $tag | |
| 467 | + */ | |
| 460 | 468 | private function ismovable($tag) | 
| 461 | 469 |      { | 
| 462 | 470 |          if ( true !== $this->include_inline || apply_filters( 'autoptimize_filter_js_unmovable', true ) ) { | 
| @@ -538,7 +546,7 @@ discard block | ||
| 538 | 546 | * @param string $filepath Filepath. | 
| 539 | 547 | * @param bool $cache_miss Optional. Force a cache miss. Default false. | 
| 540 | 548 | * | 
| 541 | - * @return bool|string Url pointing to the minified js file or false. | |
| 549 | + * @return false|string Url pointing to the minified js file or false. | |
| 542 | 550 | */ | 
| 543 | 551 | public function minify_single( $filepath, $cache_miss = false ) | 
| 544 | 552 |      { | 
| @@ -282,7 +282,7 @@ discard block | ||
| 282 | 282 | * be inlined into a data: URI. Defaults to 4096, passed through | 
| 283 | 283 | * `autoptimize_filter_css_datauri_maxsize` filter. | 
| 284 | 284 | * | 
| 285 | - * @return mixed | |
| 285 | + * @return integer|null | |
| 286 | 286 | */ | 
| 287 | 287 | private function get_datauri_maxsize() | 
| 288 | 288 |      { | 
| @@ -303,6 +303,9 @@ discard block | ||
| 303 | 303 | return $max_size; | 
| 304 | 304 | } | 
| 305 | 305 | |
| 306 | + /** | |
| 307 | + * @param false|string $url | |
| 308 | + */ | |
| 306 | 309 | private function check_datauri_exclude_list( $url ) | 
| 307 | 310 |      { | 
| 308 | 311 | static $exclude_list = null; | 
| @@ -328,6 +331,9 @@ discard block | ||
| 328 | 331 | return $matched; | 
| 329 | 332 | } | 
| 330 | 333 | |
| 334 | + /** | |
| 335 | + * @param false|string $path | |
| 336 | + */ | |
| 331 | 337 | private function build_or_get_datauri_image( $path ) | 
| 332 | 338 |      { | 
| 333 | 339 | /** | 
| @@ -746,6 +752,11 @@ discard block | ||
| 746 | 752 | return true; | 
| 747 | 753 | } | 
| 748 | 754 | |
| 755 | + /** | |
| 756 | + * @param string $code | |
| 757 | + * | |
| 758 | + * @return string | |
| 759 | + */ | |
| 749 | 760 | public function run_minifier_on( $code ) | 
| 750 | 761 |      { | 
| 751 | 762 |          if ( ! $this->alreadyminified ) { | 
| @@ -945,6 +956,9 @@ discard block | ||
| 945 | 956 | return $code; | 
| 946 | 957 | } | 
| 947 | 958 | |
| 959 | + /** | |
| 960 | + * @param string $tag | |
| 961 | + */ | |
| 948 | 962 | private function ismovable( $tag ) | 
| 949 | 963 |      { | 
| 950 | 964 |          if ( ! $this->aggregate ) { | 
| @@ -1005,7 +1019,7 @@ discard block | ||
| 1005 | 1019 | * @param string $filepath Filepath. | 
| 1006 | 1020 | * @param bool $cache_miss Optional. Force a cache miss. Default false. | 
| 1007 | 1021 | * | 
| 1008 | - * @return bool|string Url pointing to the minified css file or false. | |
| 1022 | + * @return false|string Url pointing to the minified css file or false. | |
| 1009 | 1023 | */ | 
| 1010 | 1024 | public function minify_single( $filepath, $cache_miss = false ) | 
| 1011 | 1025 |      { | 
| @@ -14,7 +14,7 @@ discard block | ||
| 14 | 14 | * | 
| 15 | 15 | * @param bool|null $override Allows overriding the decision. | 
| 16 | 16 | * | 
| 17 | - * @return bool | |
| 17 | + * @return boolean|null | |
| 18 | 18 | */ | 
| 19 | 19 | public static function mbstring_available( $override = null ) | 
| 20 | 20 |      { | 
| @@ -36,7 +36,7 @@ discard block | ||
| 36 | 36 | * | 
| 37 | 37 | * @param bool|null $override Allows overriding the decision. | 
| 38 | 38 | * | 
| 39 | - * @return bool | |
| 39 | + * @return boolean|null | |
| 40 | 40 | */ | 
| 41 | 41 | public static function iconv_available( $override = null ) | 
| 42 | 42 |      { | 
| @@ -215,7 +215,7 @@ discard block | ||
| 215 | 215 | * | 
| 216 | 216 | * @param bool $override Allows overriding the decision when needed. | 
| 217 | 217 | * | 
| 218 | - * @return bool | |
| 218 | + * @return boolean|null | |
| 219 | 219 | */ | 
| 220 | 220 | public static function siteurl_not_root( $override = null ) | 
| 221 | 221 |      { |