refactored bcrypt hashing engine.

This commit is contained in:
Taylor Otwell
2011-10-08 22:41:52 -05:00
parent 92ecae3db9
commit bcb6f189f7
9 changed files with 103 additions and 306 deletions

View File

@@ -135,13 +135,13 @@ class Container {
*
* <code>
* // Resolve the "laravel.router" class from the container
* $input = IoC::container()->core('input');
* $input = IoC::container()->core('router');
*
* // Equivalent resolution using the "resolve" method
* $input = IoC::container()->resolve('laravel.router');
*
* // Pass an array of parameters to the resolver
* $input = IoC::container()->core('input', array('test'));
* $input = IoC::container()->core('router', array('test'));
* </code>
*
* @param string $name