소스 검색

Update deps

Jordi Boggiano 8 년 전
부모
커밋
d694a3dc36

+ 0 - 0
app/Resources/FOSUserBundle/views/ChangePassword/changePassword_content.html.twig → app/Resources/FOSUserBundle/views/ChangePassword/change_password_content.html.twig


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 175 - 163
composer.lock


+ 6 - 6
src/Packagist/WebBundle/Tests/Controller/WebControllerTest.php

@@ -172,9 +172,9 @@ class WebControllerTest extends WebTestCase
      */
     public function testSearchOrderBysCombinationAction()
     {
-        $userMock = $this->getMock('Packagist\WebBundle\Entity\User');
-        $userMock1 = $this->getMock('Packagist\WebBundle\Entity\User');
-        $userMock2 = $this->getMock('Packagist\WebBundle\Entity\User');
+        $userMock = $this->createMock('Packagist\WebBundle\Entity\User');
+        $userMock1 = $this->createMock('Packagist\WebBundle\Entity\User');
+        $userMock2 = $this->createMock('Packagist\WebBundle\Entity\User');
 
         $userMock->method('getId')->will($this->returnValue(1));
         $userMock1->method('getId')->will($this->returnValue(2));
@@ -367,9 +367,9 @@ class WebControllerTest extends WebTestCase
     protected function commonTestSearchActionOrderBysFavers(
         array $orderBys = array()
     ) {
-        $userMock = $this->getMock('Packagist\WebBundle\Entity\User');
-        $userMock1 = $this->getMock('Packagist\WebBundle\Entity\User');
-        $userMock2 = $this->getMock('Packagist\WebBundle\Entity\User');
+        $userMock = $this->createMock('Packagist\WebBundle\Entity\User');
+        $userMock1 = $this->createMock('Packagist\WebBundle\Entity\User');
+        $userMock2 = $this->createMock('Packagist\WebBundle\Entity\User');
 
         $userMock->method('getId')->will($this->returnValue(1));
         $userMock1->method('getId')->will($this->returnValue(2));

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.