Skip to content

Commit 440f7ca

Browse files
committed
Merge branch '2.3'
* 2.3: bumped Symfony version to 2.3.6 updated VERSION for 2.3.5 updated CHANGELOG for 2.3.5 Set cost type to integer bumped Symfony version to 2.2.9 updated VERSION for 2.2.8 updated CHANGELOG for 2.2.8 bumped the version fixed typo updated VERSION for 2.2.7 update CONTRIBUTORS for 2.2.7 updated CHANGELOG for 2.2.7 bugix: CookieJar returns cookies with domain "domain.com" for domain "foodomain.com" fixed HTML5 form attribute handling XPath query Removed old way of building icu data. Conflicts: src/Symfony/Component/HttpKernel/Kernel.php
2 parents c6ff85e + 54f7d9c commit 440f7ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Encoder/BCryptPasswordEncoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function __construct($cost)
4242
throw new \InvalidArgumentException('Cost must be in the range of 4-31.');
4343
}
4444

45-
$this->cost = sprintf('%02d', $cost);
45+
$this->cost = $cost;
4646
}
4747

4848
/**

0 commit comments

Comments
 (0)