for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Createnl\ZxcvbnBundle;
use ZxcvbnPhp\Zxcvbn;
class ZxcvbnDecorator extends Zxcvbn
{
/**
* @var Zxcvbn
*/
private $inner;
public function __construct(Zxcvbn $inner)
$this->inner = $inner;
parent::__construct();
}
public function addMatcher(string $className)
return $this->inner->addMatcher($className);
public function passwordStrength($password, array $userInputs = [])
return $this->inner->passwordStrength($password, $userInputs);