Fix spacing of @package used together with @subpackage
This commit is contained in:
parent
90aa294a6d
commit
5370d0d6c3
@ -12,7 +12,7 @@
|
||||
* User first authenticates using OpenID and based on content of $AUTH_MAP
|
||||
* the login information is passed to phpMyAdmin in session data.
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin
|
||||
* @subpackage Example
|
||||
*/
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
* phpMyAdmin, it is not intended to be perfect code and look, only
|
||||
* shows how you can integrate this functionality in your application.
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin
|
||||
* @subpackage Example
|
||||
*/
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
* phpMyAdmin, it is not intended to be perfect code and look, only
|
||||
* shows how you can integrate this functionality in your application.
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin
|
||||
* @subpackage Example
|
||||
*/
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Set of functions used to run config authentication (ie no authentication).
|
||||
*
|
||||
* @package PhpMyAdmin-Auth
|
||||
* @package PhpMyAdmin-Auth
|
||||
* @subpackage Config
|
||||
*/
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Set of functions used to run cookie based authentication.
|
||||
*
|
||||
* @package PhpMyAdmin-Auth
|
||||
* @package PhpMyAdmin-Auth
|
||||
* @subpackage Cookie
|
||||
*/
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* Set of functions used to run http authentication.
|
||||
* NOTE: Requires PHP loaded as a Apache module.
|
||||
*
|
||||
* @package PhpMyAdmin-Auth
|
||||
* @package PhpMyAdmin-Auth
|
||||
* @subpackage HTTP
|
||||
*/
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Set of functions used to run single signon authentication.
|
||||
*
|
||||
* @package PhpMyAdmin-Auth
|
||||
* @package PhpMyAdmin-Auth
|
||||
* @subpackage Signon
|
||||
*/
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
* This wrapper is not complete and hides a lot of original functionality, but allows for easy usage
|
||||
* of the drizzle PHP extension.
|
||||
*
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @subpackage Drizzle
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
@ -78,7 +78,7 @@ function _dlog($end = false)
|
||||
/**
|
||||
* Wrapper for Drizzle class
|
||||
*
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @subpackage Drizzle
|
||||
*/
|
||||
class PMA_Drizzle extends Drizzle
|
||||
@ -157,7 +157,7 @@ class PMA_Drizzle extends Drizzle
|
||||
* Wrapper around DrizzleCon class
|
||||
*
|
||||
* Its main task is to wrap results with PMA_DrizzleResult class
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @subpackage Drizzle
|
||||
*/
|
||||
class PMA_DrizzleCon
|
||||
@ -245,7 +245,7 @@ class PMA_DrizzleCon
|
||||
*
|
||||
* Allows for reading result rows as an associative array and hides complexity
|
||||
* behind buffering.
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @subpackage Drizzle
|
||||
*/
|
||||
class PMA_DrizzleResult
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
* TODO: This file and drizzle-wrappers.lib.php should be devoid of any segault related hacks.
|
||||
* TODO: Crashing versions of drizzle module and/or libdrizzle should be blacklisted
|
||||
*
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @subpackage Drizzle
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Interface to the classic MySQL extension
|
||||
*
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @subpackage MySQL
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Interface to the improved MySQL extension (MySQLi)
|
||||
*
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @package PhpMyAdmin-DBI
|
||||
* @subpackage MySQLi
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* DocSQL import plugin for phpMyAdmin
|
||||
*
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage DocSQL
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* CSV import plugin for phpMyAdmin using LOAD DATA
|
||||
*
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage LDI
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
*
|
||||
* @todo Pretty much everything
|
||||
* @todo Importing of accented characters seems to fail
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage ODS
|
||||
*/
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* ESRI Shape file import plugin for phpMyAdmin
|
||||
*
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage ESRI_Shape
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* SQL import plugin for phpMyAdmin
|
||||
*
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage SQL
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* XML import plugin for phpMyAdmin
|
||||
*
|
||||
* @todo Improve efficiency
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage XML
|
||||
*/
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
*
|
||||
* The SQL Parser code relies heavily on these functions.
|
||||
*
|
||||
* @package PhpMyAdmin-String
|
||||
* @package PhpMyAdmin-String
|
||||
* @subpackage MB
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
*
|
||||
* The SQL Parser code relies heavily on these functions.
|
||||
*
|
||||
* @package PhpMyAdmin-String
|
||||
* @package PhpMyAdmin-String
|
||||
* @subpackage Native
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
*
|
||||
* The SQL Parser code relies heavily on these functions.
|
||||
*
|
||||
* @package PhpMyAdmin-String
|
||||
* @package PhpMyAdmin-String
|
||||
* @subpackage CType
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
*
|
||||
* The SQL Parser code relies heavily on these functions.
|
||||
*
|
||||
* @package PhpMyAdmin-String
|
||||
* @package PhpMyAdmin-String
|
||||
* @subpackage Native
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Selenium TestCase for privilege related tests
|
||||
*
|
||||
* @package PhpMyAdmin-test
|
||||
* @package PhpMyAdmin-test
|
||||
* @subpackage Selenium
|
||||
*/
|
||||
require_once 'PmaSeleniumTestCase.php';
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Selenium parent class for TestCases
|
||||
*
|
||||
* @package PhpMyAdmin-test
|
||||
* @package PhpMyAdmin-test
|
||||
* @subpackage Selenium
|
||||
*/
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Selenium TestCase for XSS related tests
|
||||
*
|
||||
* @package PhpMyAdmin-test
|
||||
* @package PhpMyAdmin-test
|
||||
* @subpackage Selenium
|
||||
*/
|
||||
require_once 'PmaSeleniumTestCase.php';
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* navigation css file from theme Original
|
||||
*
|
||||
* @package PhpMyAdmin-theme
|
||||
* @package PhpMyAdmin-theme
|
||||
* @subpackage Original
|
||||
*/
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* print css file from theme Original
|
||||
*
|
||||
* @package PhpMyAdmin-theme
|
||||
* @package PhpMyAdmin-theme
|
||||
* @subpackage Original
|
||||
*/
|
||||
?>
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* main css file from theme Original
|
||||
*
|
||||
* @package PhpMyAdmin-theme
|
||||
* @package PhpMyAdmin-theme
|
||||
* @subpackage Original
|
||||
*/
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Theme information
|
||||
*
|
||||
* @package PhpMyAdmin-theme
|
||||
* @package PhpMyAdmin-theme
|
||||
* @subpackage Original
|
||||
*/
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* configures general layout
|
||||
* for detailed layout configuration please refer to the css files
|
||||
*
|
||||
* @package PhpMyAdmin-theme
|
||||
* @package PhpMyAdmin-theme
|
||||
* @subpackage Original
|
||||
*/
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* navigation css file from theme Original
|
||||
*
|
||||
* @package PhpMyAdmin-theme
|
||||
* @package PhpMyAdmin-theme
|
||||
* @subpackage PMAHomme
|
||||
*/
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* print css file from theme Original
|
||||
*
|
||||
* @package PhpMyAdmin-theme
|
||||
* @package PhpMyAdmin-theme
|
||||
* @subpackage PMAHomme
|
||||
*/
|
||||
?>
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* main css file from theme pmahomme
|
||||
*
|
||||
* @package PhpMyAdmin-theme
|
||||
* @package PhpMyAdmin-theme
|
||||
* @subpackage PMAHomme
|
||||
*/
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
/**
|
||||
* Theme information
|
||||
*
|
||||
* @package PhpMyAdmin-theme
|
||||
* @package PhpMyAdmin-theme
|
||||
* @subpackage PMAHomme
|
||||
*/
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* configures general layout
|
||||
* for detailed layout configuration please refer to the css files
|
||||
*
|
||||
* @package PhpMyAdmin-theme
|
||||
* @package PhpMyAdmin-theme
|
||||
* @subpackage PMAHomme
|
||||
*/
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user