Skip to content

Commit b3029fd

Browse files
committed
Database Exception alignment changes
1 parent 1f3fadc commit b3029fd

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

system/Database/Exceptions/DataException.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php namespace CodeIgniter\Database\Exceptions;
1+
<?php
2+
3+
namespace CodeIgniter\Database\Exceptions;
24

35
class DataException extends \RuntimeException implements ExceptionInterface
46
{
@@ -51,12 +53,11 @@ public static function forTableNotFound(string $table)
5153
return new static(lang('Database.tableNotFound', [$table]));
5254
}
5355

54-
5556
public static function forEmptyInputGiven(string $argument)
5657
{
5758
return new static(lang('Database.forEmptyInputGiven', [$argument]));
58-
}
59-
59+
}
60+
6061
public static function forFindColumnHaveMultipleColumns()
6162
{
6263
return new static(lang('Database.forFindColumnHaveMultipleColumns'));

0 commit comments

Comments
 (0)