Skip to content

Commit 27e748c

Browse files
authored
Merge pull request #166 from iMattPro/fixes
Fix code sniffs
2 parents f1af420 + 953b855 commit 27e748c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

routing/page_loader.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ class page_loader extends Loader
2929
/**
3030
* Constructor
3131
*
32-
* @param \phpbb\db\driver\driver_interface $db Database connection
33-
* @param string $pages_table Table name
32+
* @param driver_interface $db Database connection
33+
* @param string $pages_table Table name
3434
* @access public
3535
*/
3636
public function __construct(driver_interface $db, $pages_table)
@@ -53,7 +53,7 @@ public function load($resource, $type = null)
5353
{
5454
$collection = new RouteCollection();
5555

56-
$sql = 'SELECT page_id, page_route
56+
$sql = 'SELECT page_id, page_route
5757
FROM ' . $this->pages_table;
5858
$result = $this->db->sql_query($sql);
5959
while ($row = $this->db->sql_fetchrow($result))

0 commit comments

Comments
 (0)