File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
src/Symfony/Component/Cache/Adapter Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ class PdoAdapter extends AbstractAdapter implements PruneableInterface
25
25
private string $ dsn ;
26
26
private string $ driver ;
27
27
private string $ serverVersion ;
28
- private mixed $ table = 'cache_items ' ;
29
- private mixed $ idCol = 'item_id ' ;
30
- private mixed $ dataCol = 'item_data ' ;
31
- private mixed $ lifetimeCol = 'item_lifetime ' ;
32
- private mixed $ timeCol = 'item_time ' ;
33
- private mixed $ username = '' ;
34
- private mixed $ password = '' ;
35
- private mixed $ connectionOptions = [];
28
+ private string $ table = 'cache_items ' ;
29
+ private string $ idCol = 'item_id ' ;
30
+ private string $ dataCol = 'item_data ' ;
31
+ private string $ lifetimeCol = 'item_lifetime ' ;
32
+ private string $ timeCol = 'item_time ' ;
33
+ private ? string $ username = '' ;
34
+ private ? string $ password = '' ;
35
+ private array $ connectionOptions = [];
36
36
private string $ namespace ;
37
37
38
38
/**
You can’t perform that action at this time.
0 commit comments