for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright © 2017 Toan Nguyen. All rights reserved.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Gojira\Framework\Encryption\Helper;
use Gojira\Framework\Encryption\Utils;
* Class implements compareString from Zend\Crypt\Utils
class Security
{
* @param string $expected
* @param string $actual
* @return bool
public static function compareStrings($expected, $actual)
return Utils::compareStrings($expected, $actual);
}