Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Figueroa <amenadiel@gmail.com>2018-02-15 22:16:40 +0300
committerFelipe Figueroa <amenadiel@gmail.com>2018-02-15 22:16:40 +0300
commitb4944af333e89b9aa9d3bb5e975a4787599a40fc (patch)
tree6a3168933e419b8e7e8854a888bb6a508ee43502 /src/controllers/BrowserController.php
parent8c47e1b02e634855c2327c07a2770bd910072d70 (diff)
remove trailing slashes from use statements
Diffstat (limited to 'src/controllers/BrowserController.php')
-rw-r--r--src/controllers/BrowserController.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/controllers/BrowserController.php b/src/controllers/BrowserController.php
index 8a443432..e6ad5856 100644
--- a/src/controllers/BrowserController.php
+++ b/src/controllers/BrowserController.php
@@ -7,14 +7,14 @@
namespace PHPPgAdmin\Controller;
/**
- * Base controller class
+ * Base controller class.
*/
class BrowserController extends BaseController
{
public $controller_name = 'BrowserController';
/**
- * Default method to render the controller according to the action parameter
+ * Default method to render the controller according to the action parameter.
*/
public function render()
{
@@ -27,18 +27,18 @@ class BrowserController extends BaseController
$this->setNoBottomLink(true);
$viewVars = ['icon' => [
- 'blank' => $this->misc->icon('blank'),
- 'I' => $this->misc->icon('I'),
- 'L' => $this->misc->icon('L'),
- 'Lminus' => $this->misc->icon('Lminus'),
- 'Loading' => $this->misc->icon('Loading'),
- 'Lplus' => $this->misc->icon('Lplus'),
+ 'blank' => $this->misc->icon('blank'),
+ 'I' => $this->misc->icon('I'),
+ 'L' => $this->misc->icon('L'),
+ 'Lminus' => $this->misc->icon('Lminus'),
+ 'Loading' => $this->misc->icon('Loading'),
+ 'Lplus' => $this->misc->icon('Lplus'),
'ObjectNotFound' => $this->misc->icon('ObjectNotFound'),
- 'Refresh' => $this->misc->icon('Refresh'),
- 'Servers' => $this->misc->icon('Servers'),
- 'T' => $this->misc->icon('T'),
- 'Tminus' => $this->misc->icon('Tminus'),
- 'Tplus' => $this->misc->icon('Tplus'),
+ 'Refresh' => $this->misc->icon('Refresh'),
+ 'Servers' => $this->misc->icon('Servers'),
+ 'T' => $this->misc->icon('T'),
+ 'Tminus' => $this->misc->icon('Tminus'),
+ 'Tplus' => $this->misc->icon('Tplus'),
]];
echo $this->view->fetch('browser.twig', $viewVars);