Fabien Potencier пре 14 година
родитељ
комит
1a109c8bcd
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/Symfony/Component/BrowserKit/Cookie.php

+ 1 - 1
src/Symfony/Component/BrowserKit/Cookie.php

@@ -234,7 +234,7 @@ class Cookie
      */
     public function getPath()
     {
-        return (null !== $this->path)?$this->path:'/';
+        return null !== $this->path ? $this->path : '/';
     }
 
     /**