Skip to content

Commit

Permalink
adds lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
schmittjoh committed Jun 8, 2013
1 parent a153677 commit 7fffdb6
Show file tree
Hide file tree
Showing 4 changed files with 2,501 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
vendor
composer.lock
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public function testGet()
->with('baz')
->will($this->returnValue($baz = new \stdClass));

$this->assertEquals($baz, $this->seq->get(2)->get());
$this->assertEquals($baz, $this->seq->get(2)->get());
$this->assertEquals($baz, $this->seq->get(2));
$this->assertEquals($baz, $this->seq->get(2));
}

protected function setUp()
Expand Down
2 changes: 2 additions & 0 deletions Tests/Fixture/Validator/Validator.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,6 @@ public function isValid($value, Constraint $constraint)
{
return true;
}

public function validate($value, Constraint $constraint) { }
}
Loading

0 comments on commit 7fffdb6

Please sign in to comment.