소스 검색

[BrowserKit] fixed CS

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