Commit 097a6353 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Change style with regard to lists and fix some markup

parent f2b5ed3b
...@@ -27,6 +27,11 @@ fieldset { border: 0; } ...@@ -27,6 +27,11 @@ fieldset { border: 0; }
q:before,q:after { content:''; } q:before,q:after { content:''; }
abbr,acronym { border:0; } abbr,acronym { border:0; }
.body ul li, .body ol li {
padding-left: 35px;
padding-bottom: 4px;
}
.reset div, .reset div,
.reset dl, .reset dl,
.reset dt, .reset dt,
......
...@@ -247,8 +247,8 @@ statement possible natively in the binding type system. ...@@ -247,8 +247,8 @@ statement possible natively in the binding type system.
The parsing necessarily comes with a performance overhead, but only if you really use a list of parameters. The parsing necessarily comes with a performance overhead, but only if you really use a list of parameters.
There are two special binding types that describe a list of integers or strings: There are two special binding types that describe a list of integers or strings:
* \Doctrine\DBAL\Connection::PARAM_INT_ARRAY - ``\Doctrine\DBAL\Connection::PARAM_INT_ARRAY``
* \Doctrine\DBAL\Connection::PARAM_STR_ARRAY - ``\Doctrine\DBAL\Connection::PARAM_STR_ARRAY``
Using one of this constants as a type you can activate the SQLParser inside Doctrine that rewrites Using one of this constants as a type you can activate the SQLParser inside Doctrine that rewrites
the SQL and flattens the specified values into the set of parameters. Consider our previous example: the SQL and flattens the specified values into the set of parameters. Consider our previous example:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment