@@ -18,7 +18,7 @@ public function __construct(Router $router, Responder $responder, array $propert
18
18
$ this ->reflection = $ reflection ;
19
19
}
20
20
21
- private function handleColumns (String $ method , String $ path , String $ databaseName , String $ tableName/*: void*/
21
+ private function handleColumns (String $ method , String $ path , String $ databaseName , String $ tableName) /*: void*/
22
22
{
23
23
$ columnHandler = $ this ->getProperty ('columnHandler ' , '' );
24
24
if ($ columnHandler ) {
@@ -32,7 +32,7 @@ private function handleColumns(String $method, String $path, String $databaseNam
32
32
}
33
33
}
34
34
35
- private function handleTable (String $ method , String $ path , String $ databaseName , String $ tableName/*: void*/
35
+ private function handleTable (String $ method , String $ path , String $ databaseName , String $ tableName) /*: void*/
36
36
{
37
37
if (!$ this ->reflection ->hasTable ($ tableName )) {
38
38
return ;
@@ -48,7 +48,7 @@ private function handleTable(String $method, String $path, String $databaseName,
48
48
}
49
49
}
50
50
51
- private function handleJoinTables (String $ method , String $ path , String $ databaseName , array $ joinParameters/*: void*/
51
+ private function handleJoinTables (String $ method , String $ path , String $ databaseName , array $ joinParameters) /*: void*/
52
52
{
53
53
$ uniqueTableNames = array ();
54
54
foreach ($ joinParameters as $ joinParameter ) {
@@ -62,7 +62,7 @@ private function handleJoinTables(String $method, String $path, String $database
62
62
}
63
63
}
64
64
65
- private function handleAllTables (String $ method , String $ path , String $ databaseName/*: void*/
65
+ private function handleAllTables (String $ method , String $ path , String $ databaseName) /*: void*/
66
66
{
67
67
$ tableNames = $ this ->reflection ->getTableNames ();
68
68
foreach ($ tableNames as $ tableName ) {
0 commit comments