@@ -33,9 +33,8 @@ class MySqlDriver implements Nette\Database\ISupplementalDriver
33
33
public function __construct (Nette \Database \Connection $ connection , array $ options )
34
34
{
35
35
$ this ->connection = $ connection ;
36
- $ charset = isset ($ options ['charset ' ])
37
- ? $ options ['charset ' ]
38
- : (version_compare ($ connection ->getPdo ()->getAttribute (\PDO ::ATTR_SERVER_VERSION ), '5.5.3 ' , '>= ' ) ? 'utf8mb4 ' : 'utf8 ' );
36
+ $ charset = $ options ['charset ' ]
37
+ ?? (version_compare ($ connection ->getPdo ()->getAttribute (\PDO ::ATTR_SERVER_VERSION ), '5.5.3 ' , '>= ' ) ? 'utf8mb4 ' : 'utf8 ' );
39
38
if ($ charset ) {
40
39
$ connection ->query ("SET NAMES ' $ charset' " );
41
40
}
@@ -50,7 +49,7 @@ public function __construct(Nette\Database\Connection $connection, array $option
50
49
*/
51
50
public function convertException (\PDOException $ e )
52
51
{
53
- $ code = isset ( $ e ->errorInfo [1 ]) ? $ e -> errorInfo [ 1 ] : NULL ;
52
+ $ code = $ e ->errorInfo [1 ] ?? NULL ;
54
53
if (in_array ($ code , [1216 , 1217 , 1451 , 1452 , 1701 ], TRUE )) {
55
54
return Nette \Database \ForeignKeyConstraintViolationException::from ($ e );
56
55
@@ -157,7 +156,7 @@ public function getTables()
157
156
foreach ($ this ->connection ->query ('SHOW FULL TABLES ' ) as $ row ) {
158
157
$ tables [] = [
159
158
'name ' => $ row [0 ],
160
- 'view ' => isset ($ row [1 ]) && $ row [ 1 ] === 'VIEW ' ,
159
+ 'view ' => ($ row [1 ] ?? NULL ) === 'VIEW ' ,
161
160
];
162
161
}
163
162
return $ tables ;
0 commit comments