@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare (strict_types=1); |
|
| 1 | +<?php declare (strict_types = 1); |
|
| 2 | 2 | /** |
| 3 | 3 | * @license MIT |
| 4 | 4 | * @author Samuel Adeshina <[email protected]> |
@@ -41,13 +41,13 @@ discard block |
||
| 41 | 41 | ->values([ |
| 42 | 42 | 'GETDATE()', |
| 43 | 43 | QB::wrapString($databaseUserId, "'"), |
| 44 | - QB::wrapString((string)$event, "'"), |
|
| 44 | + QB::wrapString((string) $event, "'"), |
|
| 45 | 45 | QB::wrapString($objectSchema, "'"), |
| 46 | 46 | QB::wrapString($object, "'"), |
| 47 | 47 | QB::wrapString(str_replace("'", "\"", $tSql), "'") |
| 48 | 48 | ]); |
| 49 | 49 | |
| 50 | - DBConnectionFactory::getConnection()->query((string)$insertBuilder); |
|
| 50 | + DBConnectionFactory::getConnection()->query((string) $insertBuilder); |
|
| 51 | 51 | } catch (\PDOException $e) { |
| 52 | 52 | echo $e->getMessage(); |
| 53 | 53 | throw new SQLException(sprintf( |