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 4fd9c29 commit 1efbbbfCopy full SHA for 1efbbbf
2 files changed
src/TableManagerInterface.php
@@ -38,7 +38,7 @@ public function getConnection(): Connection;
38
* Returns a table or view instance
39
*
40
* @template T of ViewInterface
41
- * @psalm-param class-string<T> $tableClass
+ * @param class-string<T> $tableClass
42
* @return T
43
* @throws InvalidTableException
44
*/
src/ViewTrait.php
@@ -20,6 +20,8 @@
20
21
namespace PSX\Sql;
22
23
+use PSX\Sql\Exception\InvalidTableException;
24
+
25
/**
26
* ViewTrait
27
@@ -33,6 +35,7 @@ trait ViewTrait
33
35
34
36
* @param class-string<T> $tableName
37
+ * @throws InvalidTableException
protected function getTable(string $tableName): ViewInterface
{
0 commit comments