phpdoc formatting issues

This commit is contained in:
Carsten Brandt
2014-04-23 02:55:17 +02:00
parent 12d34849cc
commit 91965fd391
27 changed files with 118 additions and 116 deletions

View File

@@ -35,11 +35,11 @@ class DbTarget extends Target
*
* ~~~
* CREATE TABLE log (
* id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
* level INTEGER,
* category VARCHAR(255),
* log_time INTEGER,
* message TEXT,
* id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
* level INTEGER,
* category VARCHAR(255),
* log_time INTEGER,
* message TEXT,
* INDEX idx_log_level (level),
* INDEX idx_log_category (category)
* )