Selaa lähdekoodia

[BrowserKit] fixed CS

Fabien Potencier 14 vuotta sitten
vanhempi
commit
1a109c8bcd
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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 : '/';
     }
 
     /**