We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f3fadc commit b3029fdCopy full SHA for b3029fd
system/Database/Exceptions/DataException.php
@@ -1,4 +1,6 @@
1
-<?php namespace CodeIgniter\Database\Exceptions;
+<?php
2
+
3
+namespace CodeIgniter\Database\Exceptions;
4
5
class DataException extends \RuntimeException implements ExceptionInterface
6
{
@@ -51,12 +53,11 @@ public static function forTableNotFound(string $table)
51
53
return new static(lang('Database.tableNotFound', [$table]));
52
54
}
55
-
56
public static function forEmptyInputGiven(string $argument)
57
58
return new static(lang('Database.forEmptyInputGiven', [$argument]));
- }
59
+ }
60
61
public static function forFindColumnHaveMultipleColumns()
62
63
return new static(lang('Database.forFindColumnHaveMultipleColumns'));
0 commit comments