@@ -22,7 +22,7 @@ |
||
| 22 | 22 | */ |
| 23 | 23 | public function __construct($precision = null) |
| 24 | 24 | { |
| 25 | - $this->precision = (int)$precision; |
|
| 25 | + $this->precision = (int) $precision; |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | public static function factory($columnDefinition) |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | $result = $this->em->getConnection()->query($query->getQuery()); |
| 72 | 72 | $rawColumns = $result->fetchAll(PDO::FETCH_ASSOC); |
| 73 | 73 | if (count($rawColumns) === 0) { |
| 74 | - throw new Exception('Unknown table ' . $schemaTable); |
|
| 74 | + throw new Exception('Unknown table ' . $schemaTable); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | $cols = array_map(function ($columnDefinition) { |