Skip to content

Commit

Permalink
Apply the coding standard.
Browse files Browse the repository at this point in the history
  • Loading branch information
waterada committed Dec 19, 2015
1 parent 9b43216 commit b03107e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/TestSuite/TestCookieEncrypter.php
Expand Up @@ -13,8 +13,8 @@
*/
namespace Cake\TestSuite;

use Cake\Controller\Component\CookieComponent;
use Cake\Controller\ComponentRegistry;
use Cake\Controller\Component\CookieComponent;

/**
* Class TestCookieEncrypter
Expand All @@ -23,11 +23,13 @@
*
* @package Cake\TestSuite
*/
class TestCookieEncrypter extends CookieComponent {
class TestCookieEncrypter extends CookieComponent
{
/**
* TestCookieEncrypter constructor.
*/
public function __construct() {
public function __construct()
{
return parent::__construct(new ComponentRegistry());
}

Expand All @@ -43,4 +45,4 @@ public function encrypt($value, $encrypt)
{
return $this->_encrypt($value, $encrypt);
}
}
}

0 comments on commit b03107e

Please sign in to comment.