File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
src/Symfony/Component/Cache Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ class PdoAdapter extends AbstractAdapter implements PruneableInterface
27
27
* a Doctrine DBAL Connection or a DSN string that will be used to
28
28
* lazy-connect to the database when the cache is actually used.
29
29
*
30
+ * When a Doctrine DBAL Connection is passed, the cache table is created
31
+ * automatically when possible. Otherwise, use the createTable() method.
32
+ *
30
33
* List of available options:
31
34
* * db_table: The name of the table [default: cache_items]
32
35
* * db_id_col: The column where to store the cache id [default: item_id]
Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ class PdoCache extends AbstractCache implements PruneableInterface
25
25
* a Doctrine DBAL Connection or a DSN string that will be used to
26
26
* lazy-connect to the database when the cache is actually used.
27
27
*
28
+ * When a Doctrine DBAL Connection is passed, the cache table is created
29
+ * automatically when possible. Otherwise, use the createTable() method.
30
+ *
28
31
* List of available options:
29
32
* * db_table: The name of the table [default: cache_items]
30
33
* * db_id_col: The column where to store the cache id [default: item_id]
You can’t perform that action at this time.
0 commit comments