DocBlock QA
Dieser Commit ist enthalten in:
Ursprung
2e379d8647
Commit
6b7353aaf6
9 geänderte Dateien mit 20 neuen und 20 gelöschten Zeilen
|
@ -11,7 +11,7 @@
|
|||
|
||||
/**
|
||||
* Class to represent sql data to be parsed.
|
||||
* Object is intended to be handed over to the parser classes so that they can work on it.
|
||||
* Object is intended to be handled over to the parser classes so that they can work on it.
|
||||
*
|
||||
* @package MySQLDumper
|
||||
* @subpackage SQL-Parser
|
||||
|
@ -26,7 +26,7 @@ class Msd_Sql_Object
|
|||
private $_data = '';
|
||||
|
||||
/**
|
||||
* Holdes a pointer to the actual examined part as offset.
|
||||
* Holds a pointer to the actual examined part as offset.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
|
@ -302,7 +302,7 @@ class Msd_Sql_Object
|
|||
}
|
||||
|
||||
/**
|
||||
* Check if errors occured.
|
||||
* Check if errors occurred.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
|
|
|
@ -21,9 +21,9 @@ class Msd_Sql_Parser_Statement_Alter implements Msd_Sql_Parser_Interface
|
|||
/**
|
||||
* Parse the statement.
|
||||
*
|
||||
* @param Msd_Sql_Object $statement MySQL CREATE statement.
|
||||
* @param Msd_Sql_Object $sql MySQL CREATE statement.
|
||||
*
|
||||
* @return void
|
||||
* @return string
|
||||
*/
|
||||
public function parse(Msd_Sql_Object $sql)
|
||||
{
|
||||
|
|
|
@ -21,9 +21,9 @@ class Msd_Sql_Parser_Statement_Create implements Msd_Sql_Parser_Interface
|
|||
/**
|
||||
* Parse the statement.
|
||||
*
|
||||
* @param Msd_Sql_Object $statement MySQL CREATE statement.
|
||||
* @param Msd_Sql_Object $sql MySQL CREATE statement.
|
||||
*
|
||||
* @return void
|
||||
* @return string
|
||||
*/
|
||||
public function parse(Msd_Sql_Object $sql)
|
||||
{
|
||||
|
|
|
@ -21,9 +21,9 @@ class Msd_Sql_Parser_Statement_Drop implements Msd_Sql_Parser_Interface
|
|||
/**
|
||||
* Parse the statement.
|
||||
*
|
||||
* @param Msd_Sql_Object $statement MySQL DROP statement.
|
||||
* @param Msd_Sql_Object $sql MySQL DROP statement.
|
||||
*
|
||||
* @return void
|
||||
* @return string
|
||||
*/
|
||||
public function parse(Msd_Sql_Object $sql)
|
||||
{
|
||||
|
|
|
@ -21,9 +21,9 @@ class Msd_Sql_Parser_Statement_Insert implements Msd_Sql_Parser_Interface
|
|||
/**
|
||||
* Parse the statement.
|
||||
*
|
||||
* @param Msd_Sql_Object $statement MySQL INSERT statement.
|
||||
* @param Msd_Sql_Object $sql MySQL INSERT statement.
|
||||
*
|
||||
* @return void
|
||||
* @return string
|
||||
*/
|
||||
public function parse(Msd_Sql_Object $sql)
|
||||
{
|
||||
|
|
|
@ -21,9 +21,9 @@ class Msd_Sql_Parser_Statement_Lock implements Msd_Sql_Parser_Interface
|
|||
/**
|
||||
* Parse the statement.
|
||||
*
|
||||
* @param Msd_Sql_Object $statement MySQL LOCK statement.
|
||||
* @param Msd_Sql_Object $sql MySQL LOCK statement.
|
||||
*
|
||||
* @return void
|
||||
* @return string
|
||||
*/
|
||||
public function parse(Msd_Sql_Object $sql)
|
||||
{
|
||||
|
|
|
@ -21,9 +21,9 @@ class Msd_Sql_Parser_Statement_Select implements Msd_Sql_Parser_Interface
|
|||
/**
|
||||
* Parse the statement.
|
||||
*
|
||||
* @param Msd_Sql_Object $statement MySQL comment.
|
||||
* @param Msd_Sql_Object $sql MySQL comment.
|
||||
*
|
||||
* @return void
|
||||
* @return string
|
||||
*/
|
||||
public function parse(Msd_Sql_Object $sql)
|
||||
{
|
||||
|
|
|
@ -21,9 +21,9 @@ class Msd_Sql_Parser_Statement_Set implements Msd_Sql_Parser_Interface
|
|||
/**
|
||||
* Parse the statement.
|
||||
*
|
||||
* @param Msd_Sql_Object $statement MySQL CREATE statement.
|
||||
* @param Msd_Sql_Object $sql MySQL CREATE statement.
|
||||
*
|
||||
* @return void
|
||||
* @return string
|
||||
*/
|
||||
public function parse(Msd_Sql_Object $sql)
|
||||
{
|
||||
|
|
|
@ -21,9 +21,9 @@ class Msd_Sql_Parser_Statement_Unlock implements Msd_Sql_Parser_Interface
|
|||
/**
|
||||
* Parse the statement.
|
||||
*
|
||||
* @param Msd_Sql_Object $statement MySQL UNLOCK statement.
|
||||
* @param Msd_Sql_Object $sql MySQL UNLOCK statement.
|
||||
*
|
||||
* @return void
|
||||
* @return string
|
||||
*/
|
||||
public function parse(Msd_Sql_Object $sql)
|
||||
{
|
||||
|
|
Laden …
In neuem Issue referenzieren