From c646aad1e8b7ea60d99fda56710f678e6d5e0ea3 Mon Sep 17 00:00:00 2001 From: Vytautas Stankus Date: Wed, 6 Apr 2016 17:39:53 +0300 Subject: [PATCH] Fixed cs issues --- src/Parser/UriParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parser/UriParser.php b/src/Parser/UriParser.php index e968466..560e5b6 100644 --- a/src/Parser/UriParser.php +++ b/src/Parser/UriParser.php @@ -41,7 +41,7 @@ public function parseUri($path) { $container = $this->options['container']; if (!preg_match( - '/^\/' . preg_quote($container, '/') . '(?:\/(?[a-zA-Z0-9_\-,\/]+))\/f_key(?\/.+)$/', + '/^\/'.preg_quote($container, '/').'(?:\/(?[a-zA-Z0-9_\-,\/]+))\/f_key(?\/.+)$/', $path, $matches )) {