소스 검색

Fix namespace collision

ornicar 14 년 전
부모
커밋
a38069288c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/Symfony/Bundle/FrameworkBundle/Client.php

+ 2 - 2
src/Symfony/Bundle/FrameworkBundle/Client.php

@@ -7,7 +7,7 @@ use Symfony\Component\HttpKernel\HttpKernelInterface;
 use Symfony\Component\HttpKernel\Client as BaseClient;
 use Symfony\Component\BrowserKit\History;
 use Symfony\Component\BrowserKit\CookieJar;
-use Symfony\Component\HttpKernel\Profiler\Profiler;
+use Symfony\Component\HttpKernel\Profiler\Profiler as HttpProfiler;
 use Symfony\Component\HttpFoundation\Request;
 use Symfony\Component\HttpFoundation\Response;
 
@@ -67,7 +67,7 @@ class Client extends BaseClient
     /**
      * Gets a profiler for the current Response.
      *
-     * @return Profiler A Profiler instance
+     * @return HttpProfiler A Profiler instance
      */
     public function getProfiler()
     {