Making WordPress.org


Ignore:
Timestamp:
02/25/2016 10:49:24 PM (10 years ago)
Author:
obenland
Message:

Plugins Directory: Formatting update.

  • Updates phpdocs throughout the plugin.
  • Breaks out classes into their own files.
  • Some minor namespace-related tweaks.

See #1584.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-autoloader.php

    r2611 r2621  
    55 * An Autoloader which respects WordPress's filename standards.
    66 *
    7  * @package WordPressdotorg_Plugin_Directory
     7 * @package WordPressdotorg\Plugin_Directory\Autoloader
    88 */
    99class Autoloader {
     
    2727        $class = substr( $class, $this->prefix_length + 1 );
    2828        $class = strtolower( $class );
    29         $file = '';
     29        $file  = '';
    3030
    3131        if ( false !== ( $last_ns_pos = strripos( $class, self::NS_SEPARATOR ) ) ) {
     
    4343        }
    4444    }
    45 
    4645}
    4746
Note: See TracChangeset for help on using the changeset viewer.