mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Fix CS
This commit is contained in:
parent
96a8bc6c5b
commit
ce08582671
86 changed files with 366 additions and 391 deletions
|
@ -26,7 +26,7 @@ class FilesystemRepositoryTest extends TestCase
|
|||
->expects($this->once())
|
||||
->method('read')
|
||||
->will($this->returnValue(array(
|
||||
array('name' => 'package1', 'version' => '1.0.0-beta', 'type' => 'vendor')
|
||||
array('name' => 'package1', 'version' => '1.0.0-beta', 'type' => 'vendor'),
|
||||
)));
|
||||
$json
|
||||
->expects($this->once())
|
||||
|
@ -94,7 +94,7 @@ class FilesystemRepositoryTest extends TestCase
|
|||
->expects($this->once())
|
||||
->method('write')
|
||||
->with(array(
|
||||
array('name' => 'mypkg', 'type' => 'library', 'version' => '0.1.10', 'version_normalized' => '0.1.10.0')
|
||||
array('name' => 'mypkg', 'type' => 'library', 'version' => '0.1.10', 'version_normalized' => '0.1.10.0'),
|
||||
));
|
||||
|
||||
$repository->addPackage($this->getPackage('mypkg', '0.1.10'));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue