Updated docblock

This commit is contained in:
Alex Bilbie 2014-04-06 22:01:56 +01:00
parent 785d3bd21f
commit d7ddfe6452
2 changed files with 15 additions and 9 deletions

View File

@ -1,9 +1,12 @@
<?php <?php
/** /**
* Created by PhpStorm. * OAuth 2.0 Secure key default algorithm
* User: jderay *
* Date: 3/11/14 * @package php-loep/oauth2-server
* Time: 12:22 PM * @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/php-loep/oauth2-server
*/ */
namespace League\OAuth2\Server\Util\KeyAlgorithm; namespace League\OAuth2\Server\Util\KeyAlgorithm;

View File

@ -1,9 +1,12 @@
<?php <?php
/** /**
* Created by PhpStorm. * OAuth 2.0 Key algorithm interface
* User: jderay *
* Date: 3/11/14 * @package php-loep/oauth2-server
* Time: 12:22 PM * @author Alex Bilbie <hello@alexbilbie.com>
* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages
* @license http://mit-license.org/
* @link http://github.com/php-loep/oauth2-server
*/ */
namespace League\OAuth2\Server\Util\KeyAlgorithm; namespace League\OAuth2\Server\Util\KeyAlgorithm;
@ -12,4 +15,4 @@ namespace League\OAuth2\Server\Util\KeyAlgorithm;
interface KeyAlgorithmInterface interface KeyAlgorithmInterface
{ {
public function make($len = 40); public function make($len = 40);
} }