Ver Fonte

[BrowserKit] fixed CS

Fabien Potencier há 14 anos atrás
pai
commit
1a109c8bcd
1 ficheiros alterados com 1 adições e 1 exclusões
  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 : '/';
     }
 
     /**