From dcd701faf9b5663ee6f140956923ffda6243ee40 Mon Sep 17 00:00:00 2001 From: Wim Rijnders Date: Tue, 5 Feb 2013 11:40:01 +0100 Subject: [PATCH] Small fix for PSR guidelines. --- src/GitList/Util/Routing.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GitList/Util/Routing.php b/src/GitList/Util/Routing.php index 7a1a4b1..6f1f434 100644 --- a/src/GitList/Util/Routing.php +++ b/src/GitList/Util/Routing.php @@ -24,7 +24,7 @@ class Routing function ($repo) use ($app, $self) { $repoName = $repo['name'] ; //Windows - if ($self->OSIsWindows()){ + if ($self->isWindows()){ $repoName = str_replace('\\', '\\\\',$repoName); } return $repoName; @@ -41,7 +41,7 @@ class Routing } - public function OSIsWindows() + public function isWindows() { switch(PHP_OS){ case 'WIN32':