summaryrefslogtreecommitdiffstats
path: root/lib/public/Diagnostics/IQueryLogger.php
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2020-04-09 20:39:37 +0200
committerGitHub <noreply@github.com>2020-04-09 20:39:37 +0200
commit008e6d7e849a82fdc3aa20169c4c8bdd0fe506be (patch)
tree6abbe3d8741de956ad787b5e3d55cec85ceb558f /lib/public/Diagnostics/IQueryLogger.php
parent64510932b8bd7d4d1d490f7da7fb9ebcf21e31c2 (diff)
parent3a415e4139d6e28c16b0420ab411e6df5ff6d54a (diff)
downloadnextcloud-server-008e6d7e849a82fdc3aa20169c4c8bdd0fe506be.tar.gz
nextcloud-server-008e6d7e849a82fdc3aa20169c4c8bdd0fe506be.zip
Merge pull request #20391 from nextcloud/refactor/spaces-cleanup
Remove all extra whitespace PSR2 does not like
Diffstat (limited to 'lib/public/Diagnostics/IQueryLogger.php')
-rw-r--r--lib/public/Diagnostics/IQueryLogger.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/public/Diagnostics/IQueryLogger.php b/lib/public/Diagnostics/IQueryLogger.php
index 14628c5688f..5a5656a6bca 100644
--- a/lib/public/Diagnostics/IQueryLogger.php
+++ b/lib/public/Diagnostics/IQueryLogger.php
@@ -35,10 +35,10 @@ use Doctrine\DBAL\Logging\SQLLogger;
*/
interface IQueryLogger extends SQLLogger {
/**
- * Mark the start of a query providing query SQL statement, its parameters and types.
- * This method should be called as close to the DB as possible and after
- * query is finished finalized with stopQuery() method.
- *
+ * Mark the start of a query providing query SQL statement, its parameters and types.
+ * This method should be called as close to the DB as possible and after
+ * query is finished finalized with stopQuery() method.
+ *
* @param string $sql
* @param array|null $params
* @param array|null $types
@@ -49,7 +49,7 @@ interface IQueryLogger extends SQLLogger {
/**
* Mark the end of the current active query. Ending query should store \OCP\Diagnostics\IQuery to
* be returned with getQueries() method.
- *
+ *
* @return mixed
* @since 8.0.0
*/
@@ -58,7 +58,7 @@ interface IQueryLogger extends SQLLogger {
/**
* This method should return all \OCP\Diagnostics\IQuery objects stored using
* startQuery()/stopQuery() methods.
- *
+ *
* @return \OCP\Diagnostics\IQuery[]
* @since 8.0.0
*/
@@ -67,8 +67,8 @@ interface IQueryLogger extends SQLLogger {
/**
* Activate the module for the duration of the request. Deactivated module
* does not create and store \OCP\Diagnostics\IQuery objects.
- * Only activated module should create and store objects to be
- * returned with getQueries() call.
+ * Only activated module should create and store objects to be
+ * returned with getQueries() call.
*
* @since 12.0.0
*/