Prechádzať zdrojové kódy

[BrowserKit] fixed CS

Fabien Potencier 14 rokov pred
rodič
commit
1a109c8bcd

+ 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 : '/';
     }
 
     /**